From ddc69fb94963c8090e60bf9de85fef8a998c6d7f Mon Sep 17 00:00:00 2001 From: Savitha Raghunathan <6026527+savitharaghunathan@users.noreply.github.com> Date: Wed, 14 Sep 2022 12:33:09 -0400 Subject: [PATCH 01/29] Add a link to Konveyor's CoC (#142) Signed-off-by: Divya Sankar --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 0b084e3..a0483e2 100644 --- a/README.md +++ b/README.md @@ -112,3 +112,6 @@ Please perform the following steps. * Anup K. Kalia. Tackle Containerization Advisory for Legacy Applications. (link to the video: https://www.youtube.com/watch?v=VapEooROERw, link to the slides: https://www.slideshare.net/KonveyorIO/tackle-containerization-advisor-tca-for-legacy-applications) * Anup K. Kalia, Raghav Batta, Jin Xiao, Mihir Choudhury and Maja Vukovic. *ACA: Application Containerization Advisory Framework for Modernizing Legacy Applications*. IEEE International Conference on Cloud Computing (Cloud) [Work-in-progress], sept, pages 1--3, 2021. + +## Code of Conduct +Refer to Konveyor's Code of Conduct [here](https://github.com/konveyor/community/blob/main/CODE_OF_CONDUCT.md). From c645cbf0b2101a67c328c3da1e8fee517eda233c Mon Sep 17 00:00:00 2001 From: Michele Merler Date: Wed, 28 Sep 2022 12:42:46 -0400 Subject: [PATCH 02/29] change planning output to be json compatible (#154) * added single tech_summary input for standardization * fixed test/unit/test_assessment.py * added first version of clustering * fixed new .sql dependencies * sync with main repo * fixed .sql * fixed bug in unit tests * fixed tests * fixed test_standardization.py * added CLI service * planning output json compatible * adjusted planning unit test for new output format Co-authored-by: mmerler Co-authored-by: mmerler Co-authored-by: mmerler Signed-off-by: Divya Sankar --- service/planning.py | 31 ++++++++++++------ service/routes.py | 8 ++++- test/unit/test_planning.py | 64 ++++++++++++++++++++++++++++++++++++-- 3 files changed, 90 insertions(+), 13 deletions(-) diff --git a/service/planning.py b/service/planning.py index 5d05a36..b2778cb 100644 --- a/service/planning.py +++ b/service/planning.py @@ -464,13 +464,13 @@ def map_to_docker(self, appL, catalog = 'dockerhub'): """ if len(self.__dockerimage_KG) == 0 or len(self.__osBaseImages) == 0 or len(self.__inverted_dockerimageKG) == 0: - logging.error('service/containerize_planning.py init failed') + logging.error('service/planning.py init failed') return appL if len(self.__openshiftimage_KG) == 0 or len(self.__openshiftosBaseImages) == 0 or len(self.__inverted_openshiftimageKG) == 0: - logging.error('service/containerize_planning.py init failed') + logging.error('service/planning.py init failed') return appL if len(self.__operatorimage_KG) == 0 or len(self.__inverted_operatorimageKG) == 0: - logging.error('service/containerize_planning.py init failed') + logging.error('service/planning.py init failed') return appL containerL = [] @@ -574,7 +574,7 @@ def output_to_ui_planning(self, containerL): # AI Insights pApp['Valid'] = app["valid_planning"] - pApp["Ref Dockers"] = "" + pApp["Ref Dockers"] = [] # mic "" pApp["Confidence"] = 0 pApp['Reason'] = app["planning_reason"] @@ -588,11 +588,17 @@ def output_to_ui_planning(self, containerL): for image in app["scope_images"]: image_name = image - docker_url_dict = {} + # mic docker_url_dict = {} + # mic start + docker_url_dict = {'name': "", 'status': "", 'url': ""} + docker_url_dict['name'] = image_name + # mic end if app['scope_images'][image]['Status']: image_name = image_name + '(' + app['scope_images'][image]['Status'] + ')' - docker_url_dict[image_name] = app["scope_images"][image]["Docker_URL"] - pApp['Ref Dockers'] += str(counter) + ". " + str(docker_url_dict) +'\n' + docker_url_dict['status'] = app['scope_images'][image]['Status'] + # mic docker_url_dict[image_name] = app["scope_images"][image]["Docker_URL"] + docker_url_dict['url'] = app["scope_images"][image]["Docker_URL"] + pApp['Ref Dockers'].append(docker_url_dict) # mic += str(counter) + ". " + str(docker_url_dict) +'\n' counter_list += str(counter) + ',' counter += 1 counter_list = counter_list[:-1] @@ -604,10 +610,17 @@ def output_to_ui_planning(self, containerL): if 'scope_images_win' in app and app['scope_images_win']: counter_list = '' for image in app["scope_images_win"]: + # mic start + docker_url_dict = {'name': "", 'status': "", 'url': ""} + docker_url_dict['name'] = image_name + # mic end image_name = image if app['scope_images_win'][image]['Status']: image_name = image_name + '(' + app['scope_images_win'][image]['Status'] + ')' - pApp['Ref Dockers'] += str(counter) + ". " + image_name +'|'+app["scope_images_win"][image]["Docker_URL"]+'\n' + docker_url_dict['status'] = app['scope_images_win'][image]['Status'] + + docker_url_dict['url'] = app["scope_images"][image]["Docker_URL"] + pApp['Ref Dockers'].append(docker_url_dict) # mic += str(counter) + ". " + image_name +'|'+app["scope_images_win"][image]["Docker_URL"]+'\n' counter_list += str(counter) + ',' counter += 1 counter_list = counter_list[:-1] @@ -632,7 +645,7 @@ def output_to_ui_planning(self, containerL): pApp['Reason'] += '\n ' pApp['Reason'] += 'Reason 400: Not supported by any container image: ' + ', '.join(filter(None, win_not_supported)) app["valid_planning"] = False - pApp['Ref Dockers'] = pApp['Ref Dockers'][:-1] + # mic pApp['Ref Dockers'] = pApp['Ref Dockers'][:-1] pApp["Confidence"] = round(pApp['Confidence'], 2) if pApp["Confidence"] == 1: if reason: diff --git a/service/routes.py b/service/routes.py index 6df6c29..b58719a 100644 --- a/service/routes.py +++ b/service/routes.py @@ -110,12 +110,18 @@ "KG Version": fields.String(required=False, description='KG Version') }) +image_model = api.model('Container', { + 'name': fields.String(), + 'status': fields.String(), + 'url': fields.String() +}) + planning_model = api.model('Containerization', { "Name": fields.String(required=True, description='Name of the application'), "Desc": fields.String(required=True, description='Description of the application'), "Cmpt": fields.String(required=True, description='Component/Deployment Unit of the application'), "Valid": fields.Boolean(required=True, description='Is the containerization assessment valid?'), - "Ref Dockers": fields.String(required=False, description='Description of the application'), + "Ref Dockers": fields.List(fields.Nested(image_model), required=False, description='An array of candidate container images / operators'), "Confidence": fields.Float(required=False, description='Confidence of the assessment'), "Reason": fields.String(required=False, description='Reason for assessment'), "Recommend": fields.String(required=False, description='Recommended disposition') diff --git a/test/unit/test_planning.py b/test/unit/test_planning.py index 096a56b..2be5d74 100644 --- a/test/unit/test_planning.py +++ b/test/unit/test_planning.py @@ -142,6 +142,21 @@ def test_map_to_docker(self): 'custom_images_needed': []}}] appL = plan.map_to_docker(appL) + + # add correction in case difference is for lower case vs upper case + if appL != expected: + new_key_assign = {} + for k in expected[0]['scope_images'].keys(): + new_key_assign[k] = k.lower() + expected[0]['scope_images'] = dict( + [(new_key_assign.get(key), value) for key, value in expected[0]['scope_images'].items()]) + new_value_assign = {} + for k in expected[0]['scope_images_confidence']['mapping'].values(): + new_value_assign[k] = k.lower() + expected[0]['scope_images_confidence']['mapping'] = dict([(key, new_value_assign.get(value)) for key, value in + expected[0]['scope_images_confidence'][ + 'mapping'].items()]) + self.assertTrue(appL == expected) @@ -179,7 +194,12 @@ def test_output_to_ui_planning(self): 'Desc': 'App Desc 0114', 'Cmpt': 'Comp 1', 'Valid': True, - 'Ref Dockers': "1. {'websphere-traditional': 'https://hub.docker.com/r/ibmcom/websphere-traditional/'}\n2. {'db2': 'https://hub.docker.com/r/ibmcom/db2'}\n3. {'redis_Linux(Official Image)': 'https://hub.docker.com/_/redis/'}\n4. {'jenkins(Official Image)': 'https://hub.docker.com/_/jenkins/'}", + 'Ref Dockers': [{'name': 'websphere-traditional', 'status': '', + 'url': 'https://hub.docker.com/r/ibmcom/websphere-traditional/'}, + {'name': 'db2', 'status': '', 'url': 'https://hub.docker.com/r/ibmcom/db2'}, + {'name': 'redis_Linux', 'status': 'Official Image', + 'url': 'https://hub.docker.com/_/redis/'}, {'name': 'jenkins', 'status': 'Official Image', + 'url': 'https://hub.docker.com/_/jenkins/'}], 'Confidence': 0.93, 'Reason': 'Additional Installations in container image 1,2,3,4: JavaScript', 'Recommend': 'Containerize', @@ -235,6 +255,22 @@ def test_map_to_docker_openshift(self): 'custom_images_needed': []}}] appL = plan.map_to_docker(appL, 'openshift') + + # add correction in case difference is for lower case vs upper case + if appL != expected: + new_key_assign = {} + for k in expected[0]['scope_images'].keys(): + new_key_assign[k] = k.lower() + expected[0]['scope_images'] = dict( + [(new_key_assign.get(key), value) for key, value in expected[0]['scope_images'].items()]) + new_value_assign = {} + for k in expected[0]['scope_images_confidence']['mapping'].values(): + new_value_assign[k] = k.lower() + expected[0]['scope_images_confidence']['mapping'] = dict( + [(key, new_value_assign.get(value)) for key, value in + expected[0]['scope_images_confidence'][ + 'mapping'].items()]) + self.assertTrue(appL == expected) def test_output_to_ui_planning_openshift(self): @@ -271,7 +307,14 @@ def test_output_to_ui_planning_openshift(self): 'Desc': 'App Desc 0114', 'Cmpt': 'Comp 1', 'Valid': True, - 'Ref Dockers': "1. {'websphere-traditional': 'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b'}\n2. {'db2': 'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17?container-tabs=gti'}\n3. {'redis_Linux': 'https://catalog.redhat.com/software/containers/rhscl/redis-5-rhel7/5c9922045a13464733ee0ecc'}\n4. {'jenkins': 'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b?container-tabs=gti>i-tabs=get-the-source'}", + 'Ref Dockers': [{'name': 'websphere-traditional', 'status': '', + 'url': 'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b'}, + {'name': 'db2', 'status': '', + 'url': 'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17?container-tabs=gti'}, + {'name': 'redis_Linux', 'status': '', + 'url': 'https://catalog.redhat.com/software/containers/rhscl/redis-5-rhel7/5c9922045a13464733ee0ecc'}, + {'name': 'jenkins', 'status': '', + 'url': 'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b?container-tabs=gti>i-tabs=get-the-source'}], 'Confidence': 0.93, 'Reason': 'Additional Installations in container image 1,2,3,4: JavaScript', 'Recommend': 'Containerize' @@ -310,6 +353,21 @@ def test_map_to_docker_operator(self): 'custom_installations_needed': [], 'custom_images_needed': []}}] appL = plan.map_to_docker(appL, 'operator') + + # add correction in case difference is for lower case vs upper case and operator version number + if appL != expected: + new_key_assign = {} + for k in expected[0]['scope_images'].keys(): + new_key_assign[k] = k.lower() + expected[0]['scope_images'] = dict( + [(new_key_assign.get(key), value) for key, value in expected[0]['scope_images'].items()]) + new_value_assign = {} + for k in expected[0]['scope_images_confidence']['mapping'].values(): + new_value_assign[k] = k.lower() + expected[0]['scope_images_confidence']['mapping'] = dict([(key, new_value_assign.get(value)) for key, value in + expected[0]['scope_images_confidence'][ + 'mapping'].items()]) + self.assertTrue(appL == expected) def test_output_to_ui_planning_operator(self): @@ -329,7 +387,7 @@ def test_output_to_ui_planning_operator(self): 'image_confidence': 1.0, 'images_score': 60, 'cum_scores': 60, 'custom_installations_needed': [], 'custom_images_needed': []}}] expected = {'Name': 'app1', 'Desc': 'app1', 'Cmpt': '', 'Valid': True, - 'Ref Dockers': "1. {'MongoDB Enterprise Operator': 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0'}", + 'Ref Dockers': [{'name': 'MongoDB Enterprise Operator', 'status': '', 'url': 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0'}], 'Confidence': 1.0, 'Reason': 'No additonal installations required.', 'Recommend': 'Containerize'} expected = OrderedDict(expected) From 9e760d70d477b5e3de8e0ef99b6b58c6f85110a9 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Tue, 4 Oct 2022 19:41:46 -0400 Subject: [PATCH 03/29] latest search script Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_images.py | 619 +------------------------------------- 1 file changed, 10 insertions(+), 609 deletions(-) diff --git a/kg_utils/search_images.py b/kg_utils/search_images.py index 128034a..f7b2873 100644 --- a/kg_utils/search_images.py +++ b/kg_utils/search_images.py @@ -17,610 +17,21 @@ import sys sys.path.append("./kg_utils") -import requests import json -import itertools -import operator import logging import os -import docker import configparser import argparse import json -from dotenv import load_dotenv -from search_utils import load_entities , dockerhub_api , utils , save_to_csv +from textwrap import indent +from dotenv import load_dotenv ,find_dotenv +from search_utils import load_entities , utils , save_to_csv , dockerhub , quay , operator -#load environment variable -load_dotenv() - -#config file -config = configparser.ConfigParser() -config_data = os.path.join("config/kg.ini") -config.read([config_data]) - -#loggger -logger = logging.getLogger('search') -logger.setLevel(logging.INFO) - - -#search sessions -operator_session = requests.Session() -quay_session = requests.Session() - - -#load list of verified and official publishers -with open("kg_utils/image_search_kg/verified_publisher_names.json", "r", encoding="utf-8") as verified_file: - verified_publishers = json.load(verified_file) - -class Operators(): - - def __init__(self): - - self.api = "https://artifacthub.io/api/v1/" - self.package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=&limit=60&offset=" - - - def remove_tags(self, image_link:str)-> str: - """ - Remove tags(@) from image_link. - - Args: - image_link (str): URL link - - Returns: - str: URL without tags - """ - if '@' in image_link: - img_link = image_link.split('@')[0] - return img_link - else: return image_link - - def community_op_images_repos(self, operator_name: str) -> list: - """ - - Searches for community operators from https://artifacthub.io/ - - Args: - operator_name (str): entity name - - Returns: - (lst): A list containing all matching operators - """ - - container_images = [] - request_session = requests.session() - search_query = self.api + "packages/olm/community-operators/" + operator_name - response_ = request_session.get(url= search_query) - - try: - - image_urls = json.loads(response_.text)["containers_images"] - - for imgs in image_urls: - - if "quay.io" in imgs['image'] or "docker.io" in imgs['image'] or 'registry.hub.docker' in imgs['image']: - img_link = self.remove_tags(imgs['image']) - container_images.append(img_link) - - except KeyError: - print(" '{}' is not a key. So container images registry found for {} ".format("containers_images", operator_name)) - - - return container_images - - - def community_op_git_repos(self, operator_name: str): - - """ - Search git repositories for an operator. - - Args: - - operator_name (str): entity name - - Returns: - (lst): A list containing all repos for a given operator_name - """ - - operator_repository = None - - request_session = requests.session() - search_query = self.api + "packages/olm/community-operators/" + operator_name - response_ = request_session.get(url= search_query) - - try: - - links = json.loads(response_.text)["links"] # source , GitHub , etc ... - - for link_data in links: - for _ , val in link_data.items(): - - if val == "source" or val == "GitHub" or val == "Documentation": - operator_repository = link_data["url"] - - except KeyError: - - print("No git , source , or Documentation url links found.") - - - - return operator_repository - - def community_operators(self, entity: str): - - """ - Search community operators from https://artifacthub.io/packages/olm/community-operators/ - - Keyword arguments: - entity (str) -- An entity name from from the database - Return: list of all matching operators - - """ - - - api = "https://artifacthub.io/api/v1/" - package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=" - - operators = [] - sess = requests.session() - endpoint = api + package_query+"{}".format(entity) - res = sess.get(url=endpoint) - operator = json.loads(res.text)['packages'] - if len(operator) > 0 : - - for op in operator: - update_dict = {"git_repos": None , "container_images": None} - git_repos = self.community_op_git_repos(op["name"]) - container_images = self.community_op_images_repos(op["name"]) - update_dict["git_repos"] = git_repos - update_dict["container_images"] = container_images - - - op.update(update_dict) - - operators.append(op) - - return operators - - -class Quay: - - def __init__(self) -> None: - - self.quay_api = "https://quay.io/api/v1/" - self.session = requests.Session() - - - def popular_images(self, quay_images:dict, top:int): - """ - Get popular Quay images - - Args: - quay_images (dict): List of Quay images - top (int): Threshold = 5 - - Returns: - (list): Popular images - """ - - popular_quay_images = [] - - if len(list(quay_images.keys())) > 0: - sorted_results = dict( - sorted(quay_images.items(), key=operator.itemgetter(1), reverse=True) - ) - - popular_images = dict(itertools.islice(sorted_results.items(), top )) - popular_quay_images.append(popular_images) - - return popular_quay_images - - - def exact_image(self, results:list , entity_name:str)->list: - """ - retrieve exact image - - Args: - results (list): list of all images obtained by searching the search term (entity_name) from Quay.io - entity_name (str):Search term - - Returns: - (list):list of exact matches from Quay.io - """ - - - exact = [] - image_template = {"name": "" , "url": "" , "popularity": 0} - - for img in results: - if ( - utils.is_exact_match(img['name'], entity_name) - ): - - image = image_template.copy() - image["name"] = img["name"] - image["url"] = "https://quay.io"+img['href'] - image["popularity"] = img["popularity"] - exact.append(image) - - return exact - - - def top_images(self,popular_quay_images, results ): - - """ - Select top images based on popularity - - Returns: - (list): list of top images - """ - - - top_image = [] - - image_template = {"name": "" , "url": "" , "popularity": 0} - - if len(popular_quay_images) != 0: - - for img in results: - - if img['href'] in list(popular_quay_images[0].keys()): - image = image_template.copy() - image["name"] = img["name"] - image["url"] = "https://quay.io"+img['href'] - image["popularity"] = img["popularity"] - - top_image.append(image) - - return top_image - - - def recommend_images(self, results:list, quay_images: dict, entity_name:str) -> tuple: - """ - Recommended container images - Args: - results (list): list of all relavent container images from Quay.io - quay_images (dict): Quay image hrefs as keys and popularity as values - entity_name (str): entity name from the database - - Returns: - (tuple): Exact Quay image(s) and top image(s) found - """ - - top = int(config["quay"]["top_popular_images"]) - exact_quay_image = [] - popular_quay_images = [] - top_images = [] - - popular_quay_images = self.popular_images(quay_images, top) - exact_quay_image = self.exact_image( results, entity_name) - top_images = self.top_images(popular_quay_images, results) - - - return (exact_quay_image , top_images) - - - - def search_images(self, entity: str) -> tuple: - """ - - Search container images from Quay.io - - Args: - entity (str): Entity name from the database - - Returns: - tuple: Exact matches and top matches - """ - - if not isinstance(entity, str): - exit() - - max_pages = 2 - images = {} - page_increment = 1 - results = [] - search_endpoint = self.quay_api + "find/repositories" - - for page in range(max_pages): - - url = search_endpoint + "?includeUsage=true&query={}&page={}".format( - entity, page + page_increment - ) - r = self.session.get(url) - data = json.loads(r.text) - result = data["results"] - results += result - - - for repo in results: - - images[repo["href"]] = repo["popularity"] - - - exact = self.recommend_images(results, images, entity)[0] - top = self.recommend_images(results, images, entity)[1] - return (exact , top) - - -class DockerHubSearch(): - - def __init__(self): - - logging.basicConfig( filename="report.log", filemode="w", level=logging.DEBUG) - self.client = docker.from_env() - self.low_level_api = docker.APIClient(base_url='unix://var/run/docker.sock') - - def docker_href(self, image_name: str) -> str: - """ - - Args: - image_name (str): image's name - - Returns: - str: href for image_name - """ - href = "" - - if "/" in image_name: - href = "https://hub.docker.com/r/" + image_name - - else: - href = "https://hub.docker.com/_/" + image_name - - return href - - def verified_official_images(self, images:list): - """ - Retrieve all verified and official images. - - Args: - images (list): Search results from dockerhub - - Returns: - (list): list of verified and official images - """ - - verified_official_images = [] - for image in images: - - # search official_images - if image["is_official"]: - verified_official_images.append(image) - # search verified publishers - elif "/" in image["name"]: - if ( - image["name"].split("/")[0] - in verified_publishers["verified_publishers"] - ): - verified_official_images.append(image) - else: - continue - return verified_official_images - - def exact_image( - self, entity_name: str, verified_and_official_images: list - ): - """ - find exact image match - - Args: - entity_name (str): search term - verified_and_official_images (list): list of verified and official images - - Returns: - (list): A list containing exact DockerHub match - """ - - exact_image = [] - image_names = [] - images = [image["name"] for image in verified_and_official_images] - - for img in images: - if "/" in img: - image_names.append(img.split("/")[1]) - else: - image_names.append(img) - - for index, img in enumerate(verified_and_official_images): - - if utils.is_exact_match(image_names[index], entity_name): - exact_image.append(img) - - else: - continue - - return exact_image - - def top_images(self, entity_name: str, verified_official_images: list): - """ - Get top relevant DockerHub images. select top 40%() - - Args: - entity_name (str): search term - verified_official_images (list): list of verified and official images - - Returns: - (list):A list containing top relevant DockerHub images - """ - - - top = int(config["dockerhub"]["top_relevant"])/100.0 - - top_images = [] - image_names = [] - query = entity_name - - if len(verified_official_images) == 0: - return top_images - - images = [image["name"] for image in verified_official_images] - - for img in images: - if "/" in img: - image_names.append(img.split("/")[1]) - else: - image_names.append(img) - - topscore_lines, line_score =utils.line_similarity(image_names, query) - - for index in list(topscore_lines): - if line_score[index] > top: - top_images.append(verified_official_images[index]) - - return top_images - - def get_os_architectures(self, images: list ) -> list: - - """" - Using docker_api_utils, retrieve os arch for each image. - - Keyword arguments: - images(list) -- list of images from Dockerhub - Return: - - """ - image_lst = [] - - if len(images) == 0: - return image_lst - - for image in images: - - arch_list = [] - if image['Official image']: - user = 'library' - repository = image["name"] - else: - user = image["name"].split("/")[0] - repository = image["name"].split("/")[1] - - image_info = docker_api.tags(user = user, repository= repository) - - try: - os_info = next(image_info)["images"] - except: - - arch_list.append({ - "Class": "null" , - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - }) - - image['OS'] = arch_list - image_lst.append(image) - return image_lst - - - for arch in os_info: - arch_dict = { - "Class": "OS" , - "Architecture": arch["architecture"], - "Variants": arch["variant"], - "Versions": arch['os_version'], - "Type": arch['os'], - "Subtype": "" - } - arch_list.append(arch_dict) - - image['OS'] = arch_list - - image_lst.append(image) - - return image_lst - - - def recommend_exact_image(self,entity_name:str , verified_and_official_images:list): - """ - Searches for exact Dockerhub images. - - Args: - entity_name (str): _description_ - verified_and_official_images (list): list containing all verified and official images from search result - - Returns: - list: list of exact images if found - """ - - exact_image = self.exact_image(entity_name, verified_and_official_images) - exact_image = utils.format_images(exact_image) - exact_image = self.get_os_architectures(exact_image) - return exact_image - - - def recommend_top_images ( self,entity_name:str , verified_and_official_images:list)->list: - - """ - Recommend top relevant images from Dockerhub. - - Returns: - list: top images. - """ - - top_images = self.top_images(entity_name, verified_and_official_images) - top_images = utils.format_images(top_images) - top_images = self.get_os_architectures(top_images) - return top_images - - def recommended_images(self, image_inst:list, entity_name:str): - """ - Given an entity_name and a list of relevant images from DockerHub, determine - the exact match and top relevant matches. - - Args: - image_inst (list): list of all images found from dockerhub including unofficial as well as unverified images - entity_name (str): query ( entity) - - Returns: - (list) ,(list): exact dockerhub image , top docker images - """ - verified_official_images = self.verified_official_images(image_inst) - exact_image = self.recommend_exact_image(entity_name,verified_official_images) - top_images = self.recommend_top_images(entity_name , verified_official_images) - return exact_image , top_images - - - def search_dockerhub_images(self, entity: str) -> tuple: - """ - Search container images from Dockerhub. - - Args: - entity (str): An entity(query) from the database.. - - Returns: - - (tuple): exact_image(list) and top_images(list) - - """ - - images , exact_image , top_images = [] , [] , [] - - try: - images = self.client.images.search(term=entity) - - - except: - - print("ImageNotFound error occurred, check your entry and try again.") - if images == []: - - print("No Dockerhub images found for {} ".format(entity)) - - else: - exact_image , top_images = self.recommended_images(images, entity) - - return (exact_image , top_images) - - def save_to_kb(results: list) -> None: """ Save search results as a JSON file to \kb directory - Args: results (dict): dictionary containing search results from Dockerhub , Quay , and Operatorhub.io """ @@ -629,11 +40,9 @@ def save_to_kb(results: list) -> None: images_file.write(json.dumps(results, indent=2)) - def search(entities: list) ->list: """ list of all entities - Args: entities (list): All entities """ @@ -641,8 +50,6 @@ def search(entities: list) ->list: search_result = [] for _, entity in enumerate(entities): - - entity_name = entity[0] entity_type = entity[1] entity_id = entity[2] @@ -699,7 +106,6 @@ def cmdline_args(): Keyword arguments: None argument -- None Return: A parser containing input arguments - """ @@ -720,7 +126,6 @@ def get_entities(): Keyword arguments: None argument -- None Return: list of valid entities from db - """ print("Enter entity(ies) from the entity_name table to search for matching container images\n") @@ -765,17 +170,13 @@ def get_entities(): if __name__ == "__main__": - entities = get_entities() - - docker_api =dockerhub_api.DockerHub(username=os.environ.get("DOCKERHUB_USERNAME", None) , password=os.environ.get("DOCKERHUB_PASSWORD", None)) - - docker_ = DockerHubSearch() - quay = Quay() - operator_ = Operators() - - results = search(entities) - + entities = get_entities() + docker_ = dockerhub.DockerHubSearch() + quay = quay.Quay() + operator_ = operator.Operators() + results = search(entities) + save_to_kb(results) save_to_csv.docker_images() save_to_csv.operator_images() - save_to_csv.openshift_images() + save_to_csv.openshift_images() \ No newline at end of file From 8fabd1387d83f8f4d66f11e38127bdcc4aa2d8d9 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Tue, 4 Oct 2022 20:06:41 -0400 Subject: [PATCH 04/29] import path Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_images.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kg_utils/search_images.py b/kg_utils/search_images.py index f7b2873..2d2c2bb 100644 --- a/kg_utils/search_images.py +++ b/kg_utils/search_images.py @@ -16,7 +16,7 @@ import sys -sys.path.append("./kg_utils") +#sys.path.append("./kg_utils") import json import logging import os @@ -26,7 +26,7 @@ from textwrap import indent from dotenv import load_dotenv ,find_dotenv -from search_utils import load_entities , utils , save_to_csv , dockerhub , quay , operator +from kg_utils.search_utils import load_entities , utils , save_to_csv , dockerhub , quay , operator def save_to_kb(results: list) -> None: From 60488aaac64f4275a688d2ad3317bae584b14b6d Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 11:58:11 -0400 Subject: [PATCH 05/29] latest docker verified publisher list Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- .../verified_publisher_names.json | 65 +++++++++++++++++-- 1 file changed, 59 insertions(+), 6 deletions(-) diff --git a/kg_utils/image_search_kg/verified_publisher_names.json b/kg_utils/image_search_kg/verified_publisher_names.json index f26cfd0..077e699 100644 --- a/kg_utils/image_search_kg/verified_publisher_names.json +++ b/kg_utils/image_search_kg/verified_publisher_names.json @@ -1,6 +1,59 @@ -{"last updated": "02/21/2022", "verified_publishers": - ["amazon", "balena", "sysdig", "atlassian", "puppet", "purestorage", "percona", "ubuntu", "portainer", - - "mathworks", "kasmweb", "dynatrace", "intel", "gooddata", "ibmcom", "pachyderm", "google", "appdynamics", - "snyk", "datadog", "docker", "astronomerinc", "mirantis", "adobecoldfusion", "rancher", "bitnami", "balenalib", - "wallarm", "redhat", "neo4j", "pingidentity", "circleci", "grafana", "cimg"]} \ No newline at end of file +{ + "last updated": "10/04/2022", + "verified_publishers": [ + "amazon", + "balena", + "sysdig", + "atlassian", + "puppet", + "purestorage", + "percona", + "ubuntu", + "portainer", + "mathworks", + "kasmweb", + "dynatrace", + "intel", + "gooddata", + "ibmcom", + "pachyderm", + "google", + "appdynamics", + "snyk", + "datadog", + "docker", + "astronomerinc", + "mirantis", + "adobecoldfusion", + "rancher", + "bitnami", + "balenalib", + "wallarm", + "redhat", + "neo4j", + "pingidentity", + "circleci", + "grafana", + "cimg", + "hashicorp", + "lacework", + "cockroachdb", + "newrelic", + "continuumio", + "launchdarkly", + "vmware", + "formio", + "kong", + "couchbase", + "primekey", + "objectscale", + "airbyte", + "stackhawk", + "okteto", + "kumahq", + "redis", + "graphcore", + "slimdotai", + "uffizzi" + ] +} \ No newline at end of file From db608efcc921d47a9502c6ba1825eedd93cbf0c8 Mon Sep 17 00:00:00 2001 From: Divya Sankar Date: Wed, 5 Oct 2022 08:19:06 -0400 Subject: [PATCH 06/29] update kg_aug and new version of database Signed-off-by: Divya Sankar --- db/1.0.4.sql | 26454 ++++++++++++++++++++++--------------------- kg_utils/kg_aug.py | 18 + tca_cli.py | 2 +- 3 files changed, 13529 insertions(+), 12945 deletions(-) diff --git a/db/1.0.4.sql b/db/1.0.4.sql index 6987402..5a57543 100644 --- a/db/1.0.4.sql +++ b/db/1.0.4.sql @@ -1,5 +1,7 @@ -PRAGMA foreign_keys=OFF; +PRAGMA foreign_keys = off; BEGIN TRANSACTION; + +-- Table: docker_baseos_images CREATE TABLE docker_baseos_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -14,19 +16,21 @@ CREATE TABLE docker_baseos_images ( OpenShiftStatus text, FOREIGN KEY (OS) REFERENCES entity_types (id) ); -INSERT INTO docker_baseos_images VALUES(1,'Windows Server Core',452,'https://hub.docker.com/_/microsoft-windows-servercore','Base Images','not_certified','Verified Publisher','no','Yes (Microsoft)','',''); -INSERT INTO docker_baseos_images VALUES(2,'Red Hat Enterprise Linux',434,'https://hub.docker.com/r/roboxes/rhel7','','certified','','NotApplicable','NotApplicable','https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af',''); -INSERT INTO docker_baseos_images VALUES(3,'Ubuntu',436,'https://hub.docker.com/_/ubuntu','Base Images','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(4,'Debian',429,'https://hub.docker.com/_/debian','Base Images','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(5,'CentOS',427,'https://hub.docker.com/_/centos','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(6,'Fedora',453,'https://hub.docker.com/_/fedora','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(7,'Oracle Linux',432,'https://hub.docker.com/_/oraclelinux','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(8,'Amazon Linux',454,'https://hub.docker.com/_/amazonlinux','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(9,'openSUSE',431,'https://hub.docker.com/r/opensuse/leap','','not_certified','','no','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(10,'SUSE Linux Enterprise Server',435,'https://www.suse.com/c/first-sles-container/','https://github.com/SUSE/sle2docker','unknown','','NotApplicable','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(11,'Junos OS',430,'https://www.juniper.net/us/en/products-services/nos/junos/','','unknown','','NotApplicable','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(12,'Photon OS',433,'https://hub.docker.com/_/photon','','not_certified','','NotApplicable','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(13,'Windows',580,'https://hub.docker.com/_/microsoft-windows','Base Images','not_certified','Verified Publisher','no','Yes (Microsoft)','',''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (1, 'Windows Server Core', 452, 'https://hub.docker.com/_/microsoft-windows-servercore', 'Base Images', 'not_certified', 'Verified Publisher', 'no', 'Yes (Microsoft)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (2, 'Red Hat Enterprise Linux', 434, 'https://hub.docker.com/r/roboxes/rhel7', '', 'certified', '', 'NotApplicable', 'NotApplicable', 'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (3, 'Ubuntu', 436, 'https://hub.docker.com/_/ubuntu', 'Base Images', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (4, 'Debian', 429, 'https://hub.docker.com/_/debian', 'Base Images', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (5, 'CentOS', 427, 'https://hub.docker.com/_/centos', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (6, 'Fedora', 453, 'https://hub.docker.com/_/fedora', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (7, 'Oracle Linux', 432, 'https://hub.docker.com/_/oraclelinux', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (8, 'Amazon Linux', 454, 'https://hub.docker.com/_/amazonlinux', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (9, 'openSUSE', 431, 'https://hub.docker.com/r/opensuse/leap', '', 'not_certified', '', 'no', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (10, 'SUSE Linux Enterprise Server', 435, 'https://www.suse.com/c/first-sles-container/', 'https://github.com/SUSE/sle2docker', 'unknown', '', 'NotApplicable', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (11, 'Junos OS', 430, 'https://www.juniper.net/us/en/products-services/nos/junos/', '', 'unknown', '', 'NotApplicable', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (12, 'Photon OS', 433, 'https://hub.docker.com/_/photon', '', 'not_certified', '', 'NotApplicable', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (13, 'Windows', 580, 'https://hub.docker.com/_/microsoft-windows', 'Base Images', 'not_certified', 'Verified Publisher', 'no', 'Yes (Microsoft)', '', ''); + +-- Table: docker_environment_variables CREATE TABLE docker_environment_variables( id integer NOT NULL PRIMARY KEY AUTOINCREMENT, Environment_Variables text, @@ -35,34 +39,36 @@ CREATE TABLE docker_environment_variables( Default_Values text, FOREIGN KEY (Container_Name) REFERENCES docker_images (id) ); -INSERT INTO docker_environment_variables VALUES(1,'DB2INSTANCE','db2','Y',''); -INSERT INTO docker_environment_variables VALUES(2,'DB2INST1_PASSWORD','db2','Y',''); -INSERT INTO docker_environment_variables VALUES(3,'DBNAME','db2','Y',''); -INSERT INTO docker_environment_variables VALUES(4,'BLU','db2','N','True'); -INSERT INTO docker_environment_variables VALUES(5,'ENABLE_ORACLE_COMPATIBILITY','db2','',''); -INSERT INTO docker_environment_variables VALUES(6,'SAMPLEDB','db2','',''); -INSERT INTO docker_environment_variables VALUES(7,'PERSISTENT_HOME','db2','',''); -INSERT INTO docker_environment_variables VALUES(8,'HADR_ENABLED','db2','',''); -INSERT INTO docker_environment_variables VALUES(9,'ETCD_ENDPOINT','db2','',''); -INSERT INTO docker_environment_variables VALUES(10,'ETCD_USERNAME','db2','',''); -INSERT INTO docker_environment_variables VALUES(11,'ETCD_PASSWORD','db2','',''); -INSERT INTO docker_environment_variables VALUES(12,'TEXT_SEARCH','db2','N',''); -INSERT INTO docker_environment_variables VALUES(13,'ARCHIVE_LOGS','db2','N','True'); -INSERT INTO docker_environment_variables VALUES(14,'AUTOCONFIG','db2','N','True'); -INSERT INTO docker_environment_variables VALUES(15,'MYSQL_HOST','mysql','',''); -INSERT INTO docker_environment_variables VALUES(16,'MYSQL_ROOT_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(17,'MYSQL_DATABASE','mysql','',''); -INSERT INTO docker_environment_variables VALUES(18,'MYSQL_USER','mysql','',''); -INSERT INTO docker_environment_variables VALUES(19,'MYSQL_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(20,'MYSQL_ALLOW_EMPTY_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(21,'MYSQL_RANDOM_ROOT_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(22,'MYSQL_ONETIME_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(23,'MYSQL_INITDB_SKIP_TZINFO','mysql','',''); -INSERT INTO docker_environment_variables VALUES(24,'CATALINA_BASE','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(25,'CATALINA_HOME','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(26,'CATALINA_TMPDIR','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(27,'JRE_HOME','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(28,'CLASSPATH','tomcat','',''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (1, 'DB2INSTANCE', 'db2', 'Y', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (2, 'DB2INST1_PASSWORD', 'db2', 'Y', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (3, 'DBNAME', 'db2', 'Y', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (4, 'BLU', 'db2', 'N', 'True'); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (5, 'ENABLE_ORACLE_COMPATIBILITY', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (6, 'SAMPLEDB', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (7, 'PERSISTENT_HOME', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (8, 'HADR_ENABLED', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (9, 'ETCD_ENDPOINT', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (10, 'ETCD_USERNAME', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (11, 'ETCD_PASSWORD', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (12, 'TEXT_SEARCH', 'db2', 'N', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (13, 'ARCHIVE_LOGS', 'db2', 'N', 'True'); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (14, 'AUTOCONFIG', 'db2', 'N', 'True'); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (15, 'MYSQL_HOST', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (16, 'MYSQL_ROOT_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (17, 'MYSQL_DATABASE', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (18, 'MYSQL_USER', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (19, 'MYSQL_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (20, 'MYSQL_ALLOW_EMPTY_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (21, 'MYSQL_RANDOM_ROOT_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (22, 'MYSQL_ONETIME_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (23, 'MYSQL_INITDB_SKIP_TZINFO', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (24, 'CATALINA_BASE', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (25, 'CATALINA_HOME', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (26, 'CATALINA_TMPDIR', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (27, 'JRE_HOME', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (28, 'CLASSPATH', 'tomcat', '', ''); + +-- Table: docker_images CREATE TABLE docker_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -86,213 +92,278 @@ CREATE TABLE docker_images ( FOREIGN KEY (runlib) REFERENCES entity_types (id), FOREIGN KEY (runtime) REFERENCES entity_types (id) ); -INSERT INTO docker_images VALUES(1,'Oracle Middleware (including Oracle Forms & Reports and Oracle Traffic Director)',576,NULL,NULL,137,NULL,NULL,NULL,NULL,'https://github.com/DirkNachbar/Docker','',''); -INSERT INTO docker_images VALUES(2,'eclipse',436,NULL,NULL,46,NULL,NULL,NULL,NULL,'https://github.com/fgrehm/docker-eclipse','',''); -INSERT INTO docker_images VALUES(3,'SAP MaxDB',436,NULL,NULL,176,NULL,NULL,NULL,NULL,'https://github.com/kr428/maxdb-docker','',''); -INSERT INTO docker_images VALUES(4,'IBM Maximo Asset Management',436,NULL,NULL,70,NULL,NULL,NULL,NULL,'https://github.com/nishi2go/maximo-docker','',''); -INSERT INTO docker_images VALUES(5,'Oracle Designer',576,NULL,NULL,135,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images','',''); -INSERT INTO docker_images VALUES(6,'Oracle Real Application Clusters (RAC) Database',432,NULL,NULL,141,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images/blob/master/OracleDatabase/RAC/OracleRealApplicationClusters/README.md','',''); -INSERT INTO docker_images VALUES(7,'Oracle Database Windows',580,NULL,NULL,134,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images/issues/1054','',''); -INSERT INTO docker_images VALUES(8,'Oracle Siebel',432,NULL,NULL,182,NULL,NULL,NULL,NULL,'https://github.com/OracleSiebel/ConfiguringSiebel/tree/master/Containerization/Docker','',''); -INSERT INTO docker_images VALUES(9,'OpenLDAP',576,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://github.com/osixia/docker-openldap','',''); -INSERT INTO docker_images VALUES(10,'Tivoli Monitoring Server (HUB TEMS)',576,NULL,NULL,77,NULL,NULL,NULL,NULL,'https://github.com/sambr7/itm6hub','',''); -INSERT INTO docker_images VALUES(11,'CA Wily Introscope',576,NULL,NULL,23,NULL,NULL,NULL,NULL,'https://github.com/stefansiegl/docker-introscope','',''); -INSERT INTO docker_images VALUES(12,'drupal',576,NULL,NULL,45,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/drupal/','Application Frameworks','Official Image'); -INSERT INTO docker_images VALUES(13,'gcc',576,583,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/gcc','DevOps Tools|Application Frameworks','Official Image'); -INSERT INTO docker_images VALUES(14,'glassfish',576,333,NULL,NULL,263,NULL,NULL,NULL,'https://hub.docker.com/_/glassfish','','Official Image'); -INSERT INTO docker_images VALUES(15,'golang_Windows',580,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/golang','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(16,'golang_Linux',576,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/golang','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(17,'groovy',576,325,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/groovy/','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(18,'haproxy',576,NULL,NULL,NULL,264,NULL,NULL,NULL,'https://hub.docker.com/_/haproxy','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(19,'httpd',576,NULL,NULL,NULL,259,NULL,NULL,NULL,'https://hub.docker.com/_/httpd','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(20,'IBM Security Access Manager',576,NULL,NULL,220,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/isam','Security|Application Infrastructure',''); -INSERT INTO docker_images VALUES(21,'jenkins',576,NULL,NULL,90,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/jenkins/','DevOps Tools','Official Image'); -INSERT INTO docker_images VALUES(22,'MarkLogic',576,NULL,NULL,97,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/marklogic','Analytics|Databases|Application Infrastructure','Verified Publisher'); -INSERT INTO docker_images VALUES(23,'memcached',576,NULL,NULL,98,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/memcached','Storage','Official Image'); -INSERT INTO docker_images VALUES(24,'.NET Framework',580,NULL,NULL,NULL,NULL,NULL,NULL,497,'https://hub.docker.com/_/microsoft-dotnet-framework','Base Images ::: runtime library : uClibc, musl','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(25,'ASP.NET',580,NULL,NULL,NULL,NULL,NULL,NULL,592,'https://hub.docker.com/_/microsoft-dotnet-framework-aspnet','','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(26,'Java SE JRE_Windows',580,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://hub.docker.com/_/microsoft-java-jre','Base Images','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(27,'Java SE JRE_Linux',576,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://hub.docker.com/_/microsoft-java-jre','Base Images ::: splitted from original Row #35: "Java SE JRE"','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(28,'Microsoft SQL Server',576,NULL,NULL,581,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-mssql-server','Base Images','Verified Publisher'); -INSERT INTO docker_images VALUES(29,'Windows IIS',580,NULL,NULL,NULL,609,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-windows-servercore-iis','Base Images','Verified Publisher'); -INSERT INTO docker_images VALUES(30,'Mongo_Windows',452,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mongo','Databases','Official Image'); -INSERT INTO docker_images VALUES(31,'Mongo_Linux',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mongo','Databases','Official Image'); -INSERT INTO docker_images VALUES(32,'mysql',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mysql','Databases','Official Image'); -INSERT INTO docker_images VALUES(33,'neo4j',576,NULL,NULL,123,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/neo4j','Databases','Official Image'); -INSERT INTO docker_images VALUES(34,'nginx',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://hub.docker.com/_/nginx','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(35,'node',576,NULL,NULL,NULL,NULL,NULL,NULL,507,'https://hub.docker.com/_/node/','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(36,'Oracle Database Enterprise Edition',576,NULL,NULL,134,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/oracle-database-enterprise-edition','Databases','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(37,'Oracle WebLogic Server',576,333,NULL,NULL,600,NULL,NULL,NULL,'https://hub.docker.com/_/oracle-weblogic-server-12c','Application Frameworks|Application Infrastructure','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(38,'Progress Application Server (PAS) for OpenEdge',576,344,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/pasoe','Application Infrastructure|Base Images','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(39,'php',576,586,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/php','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(40,'Python_Windows',580,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/python','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(41,'Python_Linux',576,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/python','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(42,'r-base',576,355,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/r-base','Application Services','Official Image'); -INSERT INTO docker_images VALUES(43,'rabbitmq',576,NULL,NULL,165,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/rabbitmq','Messaging Services','Official Image'); -INSERT INTO docker_images VALUES(44,'rails',576,588,NULL,NULL,NULL,NULL,NULL,508,'https://hub.docker.com/_/rails/','','Official Image'); -INSERT INTO docker_images VALUES(45,'redis_Windows',580,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/redis/','Databases','Official Image'); -INSERT INTO docker_images VALUES(46,'redis_Linux',576,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/redis/','Databases','Official Image'); -INSERT INTO docker_images VALUES(47,'ruby',576,588,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/ruby','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(48,'SAP HANA, express edition (database and application services)',576,NULL,NULL,175,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sap-hana-express-edition-incl-application-services','Analytics|Application Infrastructure|Databases','Verified Publisher'); -INSERT INTO docker_images VALUES(49,'Sentry',576,NULL,NULL,180,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sentry/','Application Infrastructure|DevOps Tools|Monitoring','Verified Publisher'); -INSERT INTO docker_images VALUES(50,'sonarqube',576,584,NULL,186,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sonarqube/','DevOps Tools','Official Image'); -INSERT INTO docker_images VALUES(51,'swift',576,364,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/swift','Base Images|Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(52,'tomcat',576,584,NULL,NULL,260,NULL,NULL,NULL,'https://hub.docker.com/_/tomcat','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(53,'websphere-liberty',576,584,NULL,NULL,285,NULL,NULL,NULL,'https://hub.docker.com/_/websphere-liberty','','Official Image'); -INSERT INTO docker_images VALUES(54,'wordpress',576,586,NULL,245,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/wordpress/','Application Services','Official Image'); -INSERT INTO docker_images VALUES(55,'xml-to-bootstrap',576,NULL,NULL,596,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/acch/xml-to-bootstrap/','',''); -INSERT INTO docker_images VALUES(56,'asterisk',429,NULL,NULL,14,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/andrius/asterisk','',''); -INSERT INTO docker_images VALUES(57,'ansible',436,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ansible/ansible','',''); -INSERT INTO docker_images VALUES(58,'ahfcmd',576,NULL,NULL,319,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/antennahouse/ahfcmd','',''); -INSERT INTO docker_images VALUES(59,'oracle-apex-ords',436,NULL,NULL,131,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/araczkowski/oracle-apex-ords/','',''); -INSERT INTO docker_images VALUES(60,'siebelapp',434,NULL,NULL,182,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/azeemdin/siebelapp/','',''); -INSERT INTO docker_images VALUES(61,'bmc',436,NULL,NULL,19,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/baremetalcontainer/bmc','',''); -INSERT INTO docker_images VALUES(62,'riak-kv_Ubuntu',436,584,NULL,170,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/basho/riak-kv/','',''); -INSERT INTO docker_images VALUES(63,'riak-kv_CentOS',427,584,NULL,170,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/basho/riak-kv/','',''); -INSERT INTO docker_images VALUES(64,'hive',576,NULL,NULL,8,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bde2020/hive','',''); -INSERT INTO docker_images VALUES(65,'cordova',576,NULL,NULL,NULL,NULL,NULL,NULL,501,'https://hub.docker.com/r/beevelop/cordova','',''); -INSERT INTO docker_images VALUES(66,'kafka',429,NULL,NULL,9,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/kafka/','',''); -INSERT INTO docker_images VALUES(67,'postgresql',429,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/postgresql/','',''); -INSERT INTO docker_images VALUES(68,'reportserver',429,NULL,NULL,21,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/reportserver/','',''); -INSERT INTO docker_images VALUES(69,'spark',429,NULL,NULL,NULL,280,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/spark/','',''); -INSERT INTO docker_images VALUES(70,'chrome',576,NULL,NULL,55,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/browserless/chrome/','',''); -INSERT INTO docker_images VALUES(71,'docker-pentaho',576,NULL,NULL,150,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ca0abinary/docker-pentaho/','',''); -INSERT INTO docker_images VALUES(72,'chef',436,NULL,NULL,27,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/chef/chef/','',''); -INSERT INTO docker_images VALUES(73,'zerto-exporter',576,NULL,NULL,249,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/claranet/zerto-exporter/','',''); -INSERT INTO docker_images VALUES(74,'management_frontend',576,NULL,NULL,308,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/clipper/management_frontend/','',''); -INSERT INTO docker_images VALUES(75,'vmware-tools',436,NULL,NULL,230,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/corfr/vmware-tools/','',''); -INSERT INTO docker_images VALUES(76,'xampp',436,NULL,NULL,246,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/cswl/xampp','',''); -INSERT INTO docker_images VALUES(77,'activiti',576,NULL,NULL,3,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/cwoodcock/activiti/','',''); -INSERT INTO docker_images VALUES(78,'sqlanywhere',436,NULL,NULL,178,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/danpmelo/sqlanywhere/','',''); -INSERT INTO docker_images VALUES(79,'lisp',429,341,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dexec/lisp','',''); -INSERT INTO docker_images VALUES(80,'webfocus',576,NULL,NULL,232,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dimitrislp/webfocus','',''); -INSERT INTO docker_images VALUES(81,'apache-servicemix',427,NULL,NULL,10,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dskow/apache-servicemix/','',''); -INSERT INTO docker_images VALUES(82,'tcl',436,NULL,NULL,365,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/efrecon/tcl/','',''); -INSERT INTO docker_images VALUES(83,'alpine-sass',576,NULL,NULL,361,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ellerbrock/alpine-sass','',''); -INSERT INTO docker_images VALUES(84,'oracle-soa-suite-12c',576,NULL,NULL,145,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/enomoto/oracle-soa-suite-12c/','',''); -INSERT INTO docker_images VALUES(85,'resin',427,NULL,NULL,NULL,278,NULL,NULL,NULL,'https://hub.docker.com/r/expertsystems/resin/','',''); -INSERT INTO docker_images VALUES(86,'docker-cobol',576,594,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/gregcoleman/docker-cobol/','',''); -INSERT INTO docker_images VALUES(87,'svn-apache',576,NULL,NULL,12,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/h0h4/svn-apache/','',''); -INSERT INTO docker_images VALUES(88,'static-file-server',576,NULL,NULL,NULL,NULL,NULL,NULL,505,'https://hub.docker.com/r/halverneus/static-file-server/','',''); -INSERT INTO docker_images VALUES(89,'hbase',576,NULL,NULL,7,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/harisekhon/hbase/','',''); -INSERT INTO docker_images VALUES(90,'ooce',580,NULL,NULL,60,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hpoo/ooce','',''); -INSERT INTO docker_images VALUES(91,'scala-sbt',576,362,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hseeberger/scala-sbt/','',''); -INSERT INTO docker_images VALUES(92,'delphi-prod',429,313,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hunsche/delphi-prod','',''); -INSERT INTO docker_images VALUES(93,'fabric-ca',576,NULL,NULL,422,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hyperledger/fabric-ca','',''); -INSERT INTO docker_images VALUES(94,'db2',576,NULL,NULL,43,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/db2','','Verified Publisher'); -INSERT INTO docker_images VALUES(95,'ibm-http-server',576,NULL,NULL,NULL,265,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/ibm-http-server/','',''); -INSERT INTO docker_images VALUES(96,'iib',576,NULL,NULL,68,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/iib/','',''); -INSERT INTO docker_images VALUES(97,'informix-developer-database',576,NULL,NULL,330,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/informix-developer-database/','',''); -INSERT INTO docker_images VALUES(98,'kitura-ubuntu',436,NULL,NULL,NULL,269,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/kitura-ubuntu/','',''); -INSERT INTO docker_images VALUES(99,'mq',576,NULL,NULL,81,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/mq/','IBM MQ Advanced for Developers',''); -INSERT INTO docker_images VALUES(100,'websphere-portal',576,584,NULL,NULL,286,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/websphere-portal/','',''); -INSERT INTO docker_images VALUES(101,'websphere-traditional',576,584,NULL,NULL,284,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/websphere-traditional/','',''); -INSERT INTO docker_images VALUES(102,'opentext',576,NULL,NULL,127,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ikelso/opentext','',''); -INSERT INTO docker_images VALUES(103,'cognos',576,NULL,NULL,36,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ingvarch/cognos/','',''); -INSERT INTO docker_images VALUES(104,'base',576,NULL,NULL,NULL,268,NULL,NULL,NULL,'https://hub.docker.com/r/jboss/base/','',''); -INSERT INTO docker_images VALUES(105,'wildfly',576,NULL,NULL,NULL,493,NULL,NULL,NULL,'https://hub.docker.com/r/jboss/wildfly/','',''); -INSERT INTO docker_images VALUES(106,'docker-teradata-client',576,NULL,NULL,215,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/jeremymarshall/docker-teradata-client','',''); -INSERT INTO docker_images VALUES(107,'firefox',576,NULL,NULL,117,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/jlesage/firefox','',''); -INSERT INTO docker_images VALUES(108,'nginx-proxy',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://hub.docker.com/r/jwilder/nginx-proxy/','',''); -INSERT INTO docker_images VALUES(109,'remedy-admin',576,NULL,NULL,169,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/kliremedy/remedy-admin/','',''); -INSERT INTO docker_images VALUES(110,'uniface',576,NULL,NULL,225,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/lammersma/uniface','',''); -INSERT INTO docker_images VALUES(111,'rv-tibco',576,NULL,NULL,219,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/lingya/rv-tibco','',''); -INSERT INTO docker_images VALUES(112,'openvpn-as',576,NULL,NULL,128,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/linuxserver/openvpn-as/','',''); -INSERT INTO docker_images VALUES(113,'lucee52',576,NULL,NULL,NULL,271,NULL,NULL,NULL,'https://hub.docker.com/r/lucee/lucee52','',''); -INSERT INTO docker_images VALUES(114,'sqldeveloper',576,NULL,NULL,146,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marcelhuberfoo/sqldeveloper/','',''); -INSERT INTO docker_images VALUES(115,'term_ssh_wine_winmerge',576,NULL,NULL,241,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marchandd/term_ssh_wine_winmerge/','',''); -INSERT INTO docker_images VALUES(116,'openbd',576,311,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marcusf/openbd/','',''); -INSERT INTO docker_images VALUES(117,'mdw',576,NULL,NULL,115,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mdwcore/mdw','',''); -INSERT INTO docker_images VALUES(118,'infobright',576,NULL,NULL,86,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/meatcar/infobright/','',''); -INSERT INTO docker_images VALUES(119,'alpine-expect',576,315,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mesosphere/alpine-expect/','',''); -INSERT INTO docker_images VALUES(120,'acroread',576,NULL,NULL,4,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mgor/acroread/','',''); -INSERT INTO docker_images VALUES(121,'dynamics-nav',580,NULL,NULL,101,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/dynamics-nav','',''); -INSERT INTO docker_images VALUES(122,'fortran-gfortran',576,322,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/fortran-gfortran/','',''); -INSERT INTO docker_images VALUES(123,'javascript-node.js',576,589,NULL,NULL,NULL,NULL,NULL,507,'https://hub.docker.com/r/nacyot/javascript-node.js/','',''); -INSERT INTO docker_images VALUES(124,'objectivec-gcc',576,343,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/objectivec-gcc/','',''); -INSERT INTO docker_images VALUES(125,'pascal-fp_compiler',576,599,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/pascal-fp_compiler/','',''); -INSERT INTO docker_images VALUES(126,'smalltalk-gnu',576,363,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/smalltalk-gnu/','',''); -INSERT INTO docker_images VALUES(127,'asp-docker',580,NULL,NULL,NULL,NULL,NULL,NULL,592,'https://hub.docker.com/r/nagaozen/asp-docker','',''); -INSERT INTO docker_images VALUES(128,'nginx-ingress',576,NULL,NULL,88,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nginx/nginx-ingress/','',''); -INSERT INTO docker_images VALUES(129,'nix',576,NULL,NULL,125,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nixos/nix/','',''); -INSERT INTO docker_images VALUES(130,'node-red-docker',576,NULL,NULL,236,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nodered/node-red-docker/','',''); -INSERT INTO docker_images VALUES(131,'graphql-demo',576,324,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/npalm/graphql-demo','',''); -INSERT INTO docker_images VALUES(132,'sas',576,360,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/paulohms/sas/','',''); -INSERT INTO docker_images VALUES(133,'flash',576,NULL,NULL,NULL,NULL,NULL,NULL,504,'https://hub.docker.com/r/pegi3s/flash/','',''); -INSERT INTO docker_images VALUES(134,'vcenter',576,NULL,NULL,231,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/peterneln/vcenter','',''); -INSERT INTO docker_images VALUES(135,'gpdb-devel',576,NULL,NULL,56,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/pivotaldata/gpdb-devel/','',''); -INSERT INTO docker_images VALUES(136,'pivotal-tc-server',576,NULL,NULL,NULL,277,NULL,NULL,NULL,'https://hub.docker.com/r/rbosse/pivotal-tc-server/','',''); -INSERT INTO docker_images VALUES(137,'activemq',576,NULL,NULL,6,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/rmohr/activemq/','',''); -INSERT INTO docker_images VALUES(138,'svf',576,NULL,NULL,240,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/rockysui/svf','',''); -INSERT INTO docker_images VALUES(139,'typescript',576,367,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sandrokeil/typescript/','',''); -INSERT INTO docker_images VALUES(140,'hadoop-docker',576,NULL,NULL,57,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sequenceiq/hadoop-docker/','',''); -INSERT INTO docker_images VALUES(141,'nexus3',576,NULL,NULL,124,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sonatype/nexus3/','',''); -INSERT INTO docker_images VALUES(142,'splunk',576,NULL,NULL,188,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/splunk/splunk/','',''); -INSERT INTO docker_images VALUES(143,'docker-eas-peoplesoft-base',576,NULL,NULL,151,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/uaecs/docker-eas-peoplesoft-base/','',''); -INSERT INTO docker_images VALUES(144,'imsdb',576,NULL,NULL,84,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/vineela/imsdb','',''); -INSERT INTO docker_images VALUES(145,'spfx',576,NULL,NULL,603,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/waldekm/spfx/','',''); -INSERT INTO docker_images VALUES(146,'sysinternals',580,NULL,NULL,193,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/weshigbee/sysinternals/','',''); -INSERT INTO docker_images VALUES(147,'arcgisserver',576,NULL,NULL,NULL,261,NULL,NULL,NULL,'https://hub.docker.com/r/xzdbd/arcgisserver/','',''); -INSERT INTO docker_images VALUES(148,'zeromq',576,NULL,NULL,248,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/zeromq/zeromq/','',''); -INSERT INTO docker_images VALUES(149,'IBM Workload Scheduler 9.5',576,NULL,NULL,79,NULL,NULL,NULL,NULL,'https://www.ibm.com/support/pages/ibm-workload-scheduler-95-docker-container-images','',''); -INSERT INTO docker_images VALUES(150,'IBM Transformation Extender',576,NULL,NULL,83,NULL,NULL,NULL,NULL,'https://www.ibm.com/support/pages/release-notes-ibm-transformation-extender-v1000','',''); -INSERT INTO docker_images VALUES(151,'openjdk_Windows',580,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/openjdk','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(152,'openjdk_Linux',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/openjdk','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(153,'perl',576,585,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/perl/','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(154,'postgres',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/postgres','Databases','Official Image'); -INSERT INTO docker_images VALUES(155,'solr',576,NULL,NULL,11,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/solr/','Analytics|Application Services','Official Image'); -INSERT INTO docker_images VALUES(156,'odm',576,NULL,NULL,73,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/odm/','',''); -INSERT INTO docker_images VALUES(157,'maxdb-provider',576,NULL,NULL,176,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/integra/maxdb-provider/','',''); -INSERT INTO docker_images VALUES(158,'mssql-server-windows-developer',580,NULL,NULL,581,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/mssql-server-windows-developer/','',''); -INSERT INTO docker_images VALUES(159,'mssql-server-windows-express',580,NULL,NULL,121,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/mssql-server-windows-express/','',''); -INSERT INTO docker_images VALUES(160,'docker-sybase',576,NULL,NULL,190,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nguoianphu/docker-sybase','',''); -INSERT INTO docker_images VALUES(161,'netscaler-cpx',576,NULL,NULL,31,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/netscaler-cpx','','Verified Publisher'); -INSERT INTO docker_images VALUES(162,'sqlite',576,NULL,NULL,258,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-azureiotedge-sqlite','','Verified Publisher'); -INSERT INTO docker_images VALUES(163,'vb',576,368,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-dotnet-framework','Programming Languages','Verified Publisher'); -INSERT INTO docker_images VALUES(164,'Software AG Adabas CE',576,NULL,NULL,656,NULL,NULL,NULL,NULL,'https://github.com/DirkNachbar/Docker','Databases','Verified Publisher'); -INSERT INTO docker_images VALUES(165,'Software AG Natural CE',576,653,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/softwareag-natural-ce','Programming Languages','Verified Publisher'); -INSERT INTO docker_images VALUES(166,'ansible/ansible',576,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ansible/ansible','',''); -INSERT INTO docker_images VALUES(167,'PowerShell',576,660,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-powershell','','Verified Publisher'); -INSERT INTO docker_images VALUES(168,'PowerShell',580,660,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-powershell','','Verified Publisher'); -INSERT INTO docker_images VALUES(169,'cassandra',576,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/cassandra','Databases','Official Image'); -INSERT INTO docker_images VALUES(170,'Gitlab Community Edition',576,NULL,NULL,678,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/gitlab-community-edition','DevOps Tool','Verified Publisher'); -INSERT INTO docker_images VALUES(171,'maven',576,584,388,697,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/maven','',NULL); -INSERT INTO docker_images VALUES(172,'adobecoldfusion/coldfusion',576,NULL,NULL,37,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/adobecoldfusion/coldfusion','','Verified Publisher'); -INSERT INTO docker_images VALUES(174,'bitnami/mongodb',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/mongodb','','Verified Publisher'); -INSERT INTO docker_images VALUES(175,'bitnami/openldap',576,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/openldap','','Verified Publisher'); -INSERT INTO docker_images VALUES(176,'bitnami/postgresql',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/postgresql','','Verified Publisher'); -INSERT INTO docker_images VALUES(177,'redis',576,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/redis','','Official Image'); -INSERT INTO docker_images VALUES(178,'sentry',576,NULL,NULL,180,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sentry','','Official Image'); -INSERT INTO docker_images VALUES(179,'ibmcom/zeromq',576,NULL,NULL,248,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/zeromq','','Verified Publisher'); -INSERT INTO docker_images VALUES(180,'bitnami/spark',576,NULL,NULL,NULL,280,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/spark','','Verified Publisher'); -INSERT INTO docker_images VALUES(181,'ibmcom/react',576,NULL,413,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/react','','Verified Publisher'); -INSERT INTO docker_images VALUES(182,'circleci/android',418,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/circleci/android','','Verified Publisher'); -INSERT INTO docker_images VALUES(183,'dart',421,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/dart','','Official Image'); -INSERT INTO docker_images VALUES(184,'centos',427,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/centos','','Official Image'); -INSERT INTO docker_images VALUES(185,'debian',429,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/debian','','Official Image'); -INSERT INTO docker_images VALUES(186,'opensuse',431,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/opensuse','','Official Image'); -INSERT INTO docker_images VALUES(187,'ubuntu',436,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/ubuntu','','Official Image'); -INSERT INTO docker_images VALUES(188,'fedora',453,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/fedora','','Official Image'); -INSERT INTO docker_images VALUES(189,'bitnami/wildfly',576,NULL,NULL,NULL,NULL,NULL,493,NULL,'https://hub.docker.com/r/bitnami/wildfly','','Verified Publisher'); -INSERT INTO docker_images VALUES(190,'docker',576,NULL,NULL,NULL,NULL,NULL,NULL,503,'https://hub.docker.com/_/docker','','Official Image'); -INSERT INTO docker_images VALUES(191,'ibmcom/json',576,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/json','','Verified Publisher'); -INSERT INTO docker_images VALUES(192,'java',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/java','','Official Image'); -INSERT INTO docker_images VALUES(193,'python',576,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/python','','Official Image'); -INSERT INTO docker_images VALUES(194,'snyk/snyk',576,NULL,NULL,613,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/snyk/snyk','','Verified Publisher'); -INSERT INTO docker_images VALUES(195,'varnish',576,NULL,NULL,NULL,615,NULL,NULL,NULL,'https://hub.docker.com/_/varnish','','Official Image'); -INSERT INTO docker_images VALUES(196,'kasmweb/api',576,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/kasmweb/api','','Verified Publisher'); -INSERT INTO docker_images VALUES(197,'nuxeo',576,NULL,NULL,NULL,NULL,NULL,NULL,620,'https://hub.docker.com/_/nuxeo','','Official Image'); -INSERT INTO docker_images VALUES(198,'arangodb',576,NULL,NULL,621,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/arangodb','','Official Image'); -INSERT INTO docker_images VALUES(199,'bitnami/minio',576,NULL,NULL,625,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/minio','','Verified Publisher'); -INSERT INTO docker_images VALUES(200,'elasticsearch',576,NULL,NULL,626,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/elasticsearch','','Official Image'); -INSERT INTO docker_images VALUES(201,'bitnami/keycloak',576,NULL,NULL,628,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/keycloak','','Verified Publisher'); -INSERT INTO docker_images VALUES(202,'grafana/grafana',576,NULL,NULL,629,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/grafana/grafana','','Verified Publisher'); -INSERT INTO docker_images VALUES(203,'mariadb',576,NULL,NULL,642,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mariadb','','Official Image'); -INSERT INTO docker_images VALUES(204,'vault',576,NULL,NULL,645,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/vault','','Official Image'); -INSERT INTO docker_images VALUES(205,'bitnami/etcd',576,NULL,NULL,647,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/etcd','','Verified Publisher'); -INSERT INTO docker_images VALUES(206,'traefik',576,NULL,NULL,NULL,648,NULL,NULL,NULL,'https://hub.docker.com/_/traefik','','Official Image'); -INSERT INTO docker_images VALUES(207,'bitnami/git',576,NULL,NULL,677,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/git','','Verified Publisher'); -INSERT INTO docker_images VALUES(208,'ibmcom/isam',576,NULL,NULL,693,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/isam','','Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (1, 'oracle middleware (including Oracle Forms & Reports and Oracle Traffic Director)', 576, NULL, NULL, 137, NULL, NULL, NULL, NULL, 'https://github.com/DirkNachbar/Docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (2, 'eclipse', 436, NULL, NULL, 46, NULL, NULL, NULL, NULL, 'https://github.com/fgrehm/docker-eclipse', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (3, 'sap maxdb', 436, NULL, NULL, 176, NULL, NULL, NULL, NULL, 'https://github.com/kr428/maxdb-docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (4, 'ibm maximo asset management', 436, NULL, NULL, 70, NULL, NULL, NULL, NULL, 'https://github.com/nishi2go/maximo-docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (5, 'oracle designer', 576, NULL, NULL, 135, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (6, 'oracle real application clusters (RAC) database', 432, NULL, NULL, 141, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images/blob/master/OracleDatabase/RAC/OracleRealApplicationClusters/README.md', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (7, 'oracle database windows', 580, NULL, NULL, 134, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images/issues/1054', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (8, 'oracle siebel', 432, NULL, NULL, 182, NULL, NULL, NULL, NULL, 'https://github.com/OracleSiebel/ConfiguringSiebel/tree/master/Containerization/Docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (9, 'openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://github.com/osixia/docker-openldap', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (10, 'tivoli monitoring server (HUB TEMS)', 576, NULL, NULL, 77, NULL, NULL, NULL, NULL, 'https://github.com/sambr7/itm6hub', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (11, 'ca wily introscope', 576, NULL, NULL, 23, NULL, NULL, NULL, NULL, 'https://github.com/stefansiegl/docker-introscope', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (12, 'drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/drupal/', 'Application Frameworks', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (13, 'gcc', 576, 583, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/gcc', 'DevOps Tools|Application Frameworks', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (14, 'glassfish', 576, 333, NULL, NULL, 263, NULL, NULL, NULL, 'https://hub.docker.com/_/glassfish', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (15, 'golang_windows', 580, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/golang', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (16, 'golang_linux', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/golang', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (17, 'groovy', 576, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/groovy/', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (18, 'haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://hub.docker.com/_/haproxy', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (19, 'httpd', 576, NULL, NULL, NULL, 259, NULL, NULL, NULL, 'https://hub.docker.com/_/httpd', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (20, 'ibm security access manager', 576, NULL, NULL, 220, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/isam', 'Security|Application Infrastructure', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (21, 'jenkins', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/jenkins/', 'DevOps Tools', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (22, 'marklogic', 576, NULL, NULL, 97, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/marklogic', 'Analytics|Databases|Application Infrastructure', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (23, 'memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/memcached', 'Storage', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (24, '.net framework', 580, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'https://hub.docker.com/_/microsoft-dotnet-framework', 'Base Images ::: runtime library : uClibc, musl', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (25, 'asp.net', 580, NULL, NULL, NULL, NULL, NULL, NULL, 592, 'https://hub.docker.com/_/microsoft-dotnet-framework-aspnet', '', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (26, 'java se jre_windows', 580, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://hub.docker.com/_/microsoft-java-jre', 'Base Images', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (27, 'java se jre_linux', 576, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://hub.docker.com/_/microsoft-java-jre', 'Base Images ::: splitted from original Row #35: "Java SE JRE"', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (28, 'microsoft sql server', 576, NULL, NULL, 581, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-mssql-server', 'Base Images', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (29, 'windows iis', 580, NULL, NULL, NULL, 609, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-windows-servercore-iis', 'Base Images', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (30, 'mongo_windows', 452, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mongo', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (31, 'mongo_linux', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mongo', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (32, 'mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mysql', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (33, 'neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/neo4j', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (34, 'nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/_/nginx', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (35, 'node', 576, NULL, NULL, NULL, NULL, NULL, NULL, 507, 'https://hub.docker.com/_/node/', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (36, 'oracle database enterprise edition', 576, NULL, NULL, 134, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/oracle-database-enterprise-edition', 'Databases', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (37, 'oracle webLogic server', 576, 333, NULL, NULL, 600, NULL, NULL, NULL, 'https://hub.docker.com/_/oracle-weblogic-server-12c', 'Application Frameworks|Application Infrastructure', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (38, 'progress application server (PAS) for openedge', 576, 344, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/pasoe', 'Application Infrastructure|Base Images', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (39, 'php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/php', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (40, 'python_windows', 580, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (41, 'python_linux', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (42, 'r-base', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/r-base', 'Application Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (43, 'rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/rabbitmq', 'Messaging Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (44, 'rails', 576, 588, NULL, NULL, NULL, NULL, NULL, 508, 'https://hub.docker.com/_/rails/', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (45, 'redis_windows', 580, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis/', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (46, 'redis_linux', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis/', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (47, 'ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/ruby', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (48, 'sap hana, express edition (database and application services)', 576, NULL, NULL, 175, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sap-hana-express-edition-incl-application-services', 'Analytics|Application Infrastructure|Databases', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (50, 'sonarqube', 576, 584, NULL, 186, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sonarqube/', 'DevOps Tools', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (51, 'swift', 576, 364, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/swift', 'Base Images|Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (52, 'tomcat', 576, 584, NULL, NULL, 260, NULL, NULL, NULL, 'https://hub.docker.com/_/tomcat', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (53, 'websphere-liberty', 576, 584, NULL, NULL, 285, NULL, NULL, NULL, 'https://hub.docker.com/_/websphere-liberty', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (54, 'wordpress', 576, 586, NULL, 245, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/wordpress/', 'Application Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (55, 'xml-to-bootstrap', 576, NULL, NULL, 596, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/acch/xml-to-bootstrap/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (56, 'asterisk', 429, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/andrius/asterisk', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (58, 'ahfcmd', 576, NULL, NULL, 319, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/antennahouse/ahfcmd', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (59, 'oracle-apex-ords', 436, NULL, NULL, 131, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/araczkowski/oracle-apex-ords/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (60, 'siebelapp', 434, NULL, NULL, 182, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/azeemdin/siebelapp/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (61, 'bmc', 436, NULL, NULL, 19, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/baremetalcontainer/bmc', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (62, 'riak-kv_Ubuntu', 436, 584, NULL, 170, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/basho/riak-kv/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (63, 'riak-kv_CentOS', 427, 584, NULL, 170, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/basho/riak-kv/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (64, 'hive', 576, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bde2020/hive', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (65, 'cordova', 576, NULL, NULL, NULL, NULL, NULL, NULL, 501, 'https://hub.docker.com/r/beevelop/cordova', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (66, 'kafka', 429, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/kafka/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (67, 'postgresql', 429, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/postgresql/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (68, 'reportserver', 429, NULL, NULL, 21, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/reportserver/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (69, 'spark', 429, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/spark/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (70, 'chrome', 576, NULL, NULL, 55, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/browserless/chrome/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (71, 'docker-pentaho', 576, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ca0abinary/docker-pentaho/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (72, 'chef', 436, NULL, NULL, 27, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/chef/chef/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (73, 'zerto-exporter', 576, NULL, NULL, 249, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/claranet/zerto-exporter/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (74, 'management_frontend', 576, NULL, NULL, 308, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/clipper/management_frontend/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (75, 'vmware-tools', 436, NULL, NULL, 230, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/corfr/vmware-tools/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (76, 'xampp', 436, NULL, NULL, 246, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cswl/xampp', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (77, 'activiti', 576, NULL, NULL, 3, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cwoodcock/activiti/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (78, 'sqlanywhere', 436, NULL, NULL, 178, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/danpmelo/sqlanywhere/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (79, 'lisp', 429, 341, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dexec/lisp', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (80, 'webfocus', 576, NULL, NULL, 232, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dimitrislp/webfocus', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (81, 'apache-servicemix', 427, NULL, NULL, 10, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dskow/apache-servicemix/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (82, 'tcl', 436, NULL, NULL, 365, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/efrecon/tcl/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (83, 'alpine-sass', 576, NULL, NULL, 361, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ellerbrock/alpine-sass', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (84, 'oracle-soa-suite-12c', 576, NULL, NULL, 145, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/enomoto/oracle-soa-suite-12c/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (85, 'resin', 427, NULL, NULL, NULL, 278, NULL, NULL, NULL, 'https://hub.docker.com/r/expertsystems/resin/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (86, 'docker-cobol', 576, 594, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/gregcoleman/docker-cobol/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (87, 'svn-apache', 576, NULL, NULL, 12, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/h0h4/svn-apache/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (88, 'static-file-server', 576, NULL, NULL, NULL, NULL, NULL, NULL, 505, 'https://hub.docker.com/r/halverneus/static-file-server/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (89, 'hbase', 576, NULL, NULL, 7, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/harisekhon/hbase/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (90, 'ooce', 580, NULL, NULL, 60, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hpoo/ooce', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (91, 'scala-sbt', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hseeberger/scala-sbt/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (92, 'delphi-prod', 429, 313, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hunsche/delphi-prod', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (93, 'fabric-ca', 576, NULL, NULL, 422, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hyperledger/fabric-ca', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (94, 'db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/db2', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (95, 'ibm-http-server', 576, NULL, NULL, NULL, 265, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/ibm-http-server/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (96, 'iib', 576, NULL, NULL, 68, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/iib/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (97, 'informix-developer-database', 576, NULL, NULL, 330, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/informix-developer-database/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (98, 'kitura-ubuntu', 436, NULL, NULL, NULL, 269, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/kitura-ubuntu/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (99, 'mq', 576, NULL, NULL, 81, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/mq/', 'IBM MQ Advanced for Developers', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (100, 'websphere-portal', 576, 584, NULL, NULL, 286, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/websphere-portal/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (101, 'websphere-traditional', 576, 584, NULL, NULL, 284, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/websphere-traditional/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (102, 'opentext', 576, NULL, NULL, 127, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ikelso/opentext', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (103, 'cognos', 576, NULL, NULL, 36, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ingvarch/cognos/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (104, 'base', 576, NULL, NULL, NULL, 268, NULL, NULL, NULL, 'https://hub.docker.com/r/jboss/base/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (105, 'wildfly', 576, NULL, NULL, NULL, 493, NULL, NULL, NULL, 'https://hub.docker.com/r/jboss/wildfly/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (106, 'docker-teradata-client', 576, NULL, NULL, 215, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/jeremymarshall/docker-teradata-client', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (107, 'firefox', 576, NULL, NULL, 117, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/jlesage/firefox', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (108, 'nginx-proxy', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/r/jwilder/nginx-proxy/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (109, 'remedy-admin', 576, NULL, NULL, 169, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/kliremedy/remedy-admin/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (110, 'uniface', 576, NULL, NULL, 225, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/lammersma/uniface', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (111, 'rv-tibco', 576, NULL, NULL, 219, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/lingya/rv-tibco', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (112, 'openvpn-as', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/linuxserver/openvpn-as/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (113, 'lucee52', 576, NULL, NULL, NULL, 271, NULL, NULL, NULL, 'https://hub.docker.com/r/lucee/lucee52', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (114, 'sqldeveloper', 576, NULL, NULL, 146, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marcelhuberfoo/sqldeveloper/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (115, 'term_ssh_wine_winmerge', 576, NULL, NULL, 241, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marchandd/term_ssh_wine_winmerge/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (116, 'openbd', 576, 311, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marcusf/openbd/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (117, 'mdw', 576, NULL, NULL, 115, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mdwcore/mdw', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (118, 'infobright', 576, NULL, NULL, 86, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/meatcar/infobright/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (119, 'alpine-expect', 576, 315, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mesosphere/alpine-expect/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (120, 'acroread', 576, NULL, NULL, 4, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mgor/acroread/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (121, 'dynamics-nav', 580, NULL, NULL, 101, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/dynamics-nav', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (122, 'fortran-gfortran', 576, 322, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/fortran-gfortran/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (123, 'javascript-node.js', 576, 589, NULL, NULL, NULL, NULL, NULL, 507, 'https://hub.docker.com/r/nacyot/javascript-node.js/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (124, 'objectivec-gcc', 576, 343, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/objectivec-gcc/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (125, 'pascal-fp_compiler', 576, 599, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/pascal-fp_compiler/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (126, 'smalltalk-gnu', 576, 363, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/smalltalk-gnu/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (127, 'asp-docker', 580, NULL, NULL, NULL, NULL, NULL, NULL, 592, 'https://hub.docker.com/r/nagaozen/asp-docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (128, 'nginx-ingress', 576, NULL, NULL, 88, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nginx/nginx-ingress/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (129, 'nix', 576, NULL, NULL, 125, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nixos/nix/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (130, 'node-red-docker', 576, NULL, NULL, 236, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nodered/node-red-docker/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (131, 'graphql-demo', 576, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/npalm/graphql-demo', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (132, 'sas', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/paulohms/sas/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (133, 'flash', 576, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://hub.docker.com/r/pegi3s/flash/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (134, 'vcenter', 576, NULL, NULL, 231, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/peterneln/vcenter', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (135, 'gpdb-devel', 576, NULL, NULL, 56, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/pivotaldata/gpdb-devel/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (136, 'pivotal-tc-server', 576, NULL, NULL, NULL, 277, NULL, NULL, NULL, 'https://hub.docker.com/r/rbosse/pivotal-tc-server/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (137, 'activemq', 576, NULL, NULL, 6, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rmohr/activemq/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (138, 'svf', 576, NULL, NULL, 240, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rockysui/svf', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (139, 'typescript', 576, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sandrokeil/typescript/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (140, 'hadoop-docker', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sequenceiq/hadoop-docker/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (141, 'nexus3', 576, NULL, NULL, 124, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sonatype/nexus3/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (142, 'splunk', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/splunk/splunk/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (143, 'docker-eas-peoplesoft-base', 576, NULL, NULL, 151, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/uaecs/docker-eas-peoplesoft-base/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (144, 'imsdb', 576, NULL, NULL, 84, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/vineela/imsdb', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (145, 'spfx', 576, NULL, NULL, 603, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/waldekm/spfx/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (146, 'sysinternals', 580, NULL, NULL, 193, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/weshigbee/sysinternals/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (147, 'arcgisserver', 576, NULL, NULL, NULL, 261, NULL, NULL, NULL, 'https://hub.docker.com/r/xzdbd/arcgisserver/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (148, 'zeromq', 576, NULL, NULL, 248, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/zeromq/zeromq/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (149, 'ibm workload scheduler 9.5', 576, NULL, NULL, 79, NULL, NULL, NULL, NULL, 'https://www.ibm.com/support/pages/ibm-workload-scheduler-95-docker-container-images', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (150, 'ibm transformation extender', 576, NULL, NULL, 83, NULL, NULL, NULL, NULL, 'https://www.ibm.com/support/pages/release-notes-ibm-transformation-extender-v1000', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (151, 'openjdk_windows', 580, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/openjdk', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (152, 'openjdk_linux', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/openjdk', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (153, 'perl', 576, 585, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/perl/', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (154, 'postgres', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/postgres', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (155, 'solr', 576, NULL, NULL, 11, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/solr/', 'Analytics|Application Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (156, 'odm', 576, NULL, NULL, 73, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/odm/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (157, 'maxdb-provider', 576, NULL, NULL, 176, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/integra/maxdb-provider/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (158, 'mssql-server-windows-developer', 580, NULL, NULL, 581, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/mssql-server-windows-developer/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (159, 'mssql-server-windows-express', 580, NULL, NULL, 121, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/mssql-server-windows-express/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (160, 'docker-sybase', 576, NULL, NULL, 190, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nguoianphu/docker-sybase', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (161, 'netscaler-cpx', 576, NULL, NULL, 31, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/netscaler-cpx', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (162, 'sqlite', 576, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-azureiotedge-sqlite', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (163, 'vb', 576, 368, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-dotnet-framework', 'Programming Languages', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (164, 'software ag adabas ce', 576, NULL, NULL, 656, NULL, NULL, NULL, NULL, 'https://github.com/DirkNachbar/Docker', 'Databases', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (165, 'software ag natural ce', 576, 653, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/softwareag-natural-ce', 'Programming Languages', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (166, 'ansible', 576, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ansible/ansible', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (167, 'powershell_linux', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-powershell', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (168, 'powershell_windows', 580, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-powershell', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (169, 'cassandra', 576, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/cassandra', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (170, 'gitlab community edition', 576, NULL, NULL, 678, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/gitlab-community-edition', 'DevOps Tool', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (171, 'maven', 576, 584, 388, 697, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/maven', '', NULL); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (172, 'adobecoldfusion/coldfusion', 576, NULL, NULL, 37, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/adobecoldfusion/coldfusion', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (174, 'bitnami/mongodb', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/mongodb', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (175, 'bitnami/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/openldap', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (176, 'bitnami/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/postgresql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (178, 'sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sentry', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (179, 'ibmcom/zeromq', 576, NULL, NULL, 248, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/zeromq', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (180, 'bitnami/spark', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/spark', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (181, 'ibmcom/react', 576, NULL, 413, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/react', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (182, 'circleci/android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/android', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (183, 'dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/dart', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (184, 'centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/centos', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (185, 'debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/debian', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (186, 'opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/opensuse', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (187, 'ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/ubuntu', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (188, 'fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/fedora', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (189, 'bitnami/wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'https://hub.docker.com/r/bitnami/wildfly', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (190, 'docker', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'https://hub.docker.com/_/docker', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (191, 'ibmcom/json', 576, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/json', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (192, 'java', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/java', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (194, 'snyk/snyk', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/snyk/snyk', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (195, 'varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://hub.docker.com/_/varnish', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (196, 'kasmweb/api', 576, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/kasmweb/api', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (197, 'nuxeo', 576, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://hub.docker.com/_/nuxeo', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (198, 'arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/arangodb', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (199, 'bitnami/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/minio', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (200, 'elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/elasticsearch', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (201, 'bitnami/keycloak', 576, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/keycloak', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (202, 'grafana/grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/grafana/grafana', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (203, 'mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mariadb', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (204, 'vault', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/vault', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (205, 'bitnami/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/etcd', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (206, 'traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://hub.docker.com/_/traefik', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (207, 'bitnami/git', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/git', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (208, 'ibmcom/isam', 576, NULL, NULL, 693, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/isam', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (209, 'ibmcom/db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/db2', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (210, 'bitnami/drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/drupal', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (211, 'bitnami/jenkins', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/jenkins', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (212, 'bitnami/memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/memcached', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (213, 'ubuntu/memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ubuntu/memcached', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (214, 'ibmcom/mongodb', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/mongodb', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (215, 'circleci/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/mysql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (216, 'bitnami/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/mysql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (217, 'ubuntu/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ubuntu/mysql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (218, 'cimg/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cimg/mysql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (219, 'google/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/google/mysql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (220, 'mirantis/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mirantis/mysql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (221, 'bitnami/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/neo4j', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (222, 'ibmcom/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/neo4j', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (223, 'ibmcom/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/postgresql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (224, 'pachyderm/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/pachyderm/postgresql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (225, 'bitnami/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/rabbitmq', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (226, 'circleci/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/rabbitmq', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (227, 'bitnami/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/redis', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (228, 'circleci/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/redis', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (229, 'ubuntu/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ubuntu/redis', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (230, 'cimg/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cimg/redis', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (231, 'bitnami/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/sonarqube', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (232, 'bitnami/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/wordpress', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (233, 'bitnami/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/haproxy', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (234, 'ibmcom/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/haproxy', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (235, 'bitnami/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/nginx', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (236, 'ubuntu/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/r/ubuntu/nginx', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (237, 'kasmweb/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/r/kasmweb/nginx', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (238, 'rancher/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/r/rancher/nginx', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (239, 'rancher/spark', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://hub.docker.com/r/rancher/spark', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (240, 'cimg/android', 576, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cimg/android', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (241, 'google/dart', 576, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/google/dart', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (242, 'bitnami/java', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/java', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (243, 'circleci/java', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/java', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (244, 'circleci/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/php', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (245, 'cimg/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cimg/php', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (246, 'circleci/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/python', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (247, 'bitnami/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/python', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (248, 'cimg/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cimg/python', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (249, 'circleci/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/ruby', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (250, 'cimg/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cimg/ruby', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (251, 'bitnami/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/ruby', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (252, 'datadog/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/datadog/ruby', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (253, 'ibmcom/varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/varnish', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (254, 'ibmcom/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/minio', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (255, 'bitnami/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/elasticsearch', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (256, 'ibmcom/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/elasticsearch', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (257, 'rancher/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rancher/elasticsearch', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (258, 'bitnami/mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/mariadb', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (259, 'circleci/mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/mariadb', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (260, 'ibmcom/mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/mariadb', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (261, 'cimg/mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cimg/mariadb', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (262, 'ibmcom/vault', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/vault', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (263, 'ibmcom/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/etcd', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (264, 'rancher/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rancher/etcd', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (265, 'pachyderm/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/pachyderm/etcd', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (266, 'vmware/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/vmware/postgresql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (267, 'vmware/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/r/vmware/nginx', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (268, 'okteto/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/okteto/php', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (269, 'okteto/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/okteto/python', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (270, 'okteto/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/okteto/ruby', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (271, 'okteto/api', 576, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/okteto/api', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (272, 'bitnami/clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/clickhouse', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (273, 'hashicorp/vault', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hashicorp/vault', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (274, 'okteto/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://hub.docker.com/r/okteto/traefik', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (275, 'okteto/gitlab', 576, NULL, NULL, 678, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/okteto/gitlab', '', 'Verified Publisher'); + +-- Table: entities CREATE TABLE entities ( id integer PRIMARY KEY AUTOINCREMENT, entity_name text NOT NULL, @@ -300,664 +371,666 @@ CREATE TABLE entities ( external_link text, COTS TEXT(10) DEFAULT N NOT NULL, Legacy TEXT(10) DEFAULT N NOT NULL, ContainerImage TEXT(10) DEFAULT N NOT NULL, OpenSource TEXT(10) DEFAULT N NOT NULL, FOREIGN KEY (entity_type_id) REFERENCES entity_types (id) ); -INSERT INTO entities VALUES(1,'(E)JES',2,'{''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203''}','Y','N','N','N'); -INSERT INTO entities VALUES(2,'A-Auto Job Scheduling Software',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(3,'Activiti',2,'{''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)''}','N','Y','Y','Y'); -INSERT INTO entities VALUES(4,'Adobe Acrobat Reader',2,'{''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat''}','N','N','Y','N'); -INSERT INTO entities VALUES(5,'Ansible',2,'{''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(6,'Apache ActiveMQ',2,'{''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ''}','N','N','Y','Y'); -INSERT INTO entities VALUES(7,'Apache Hbase',2,'{''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase''}','N','Y','Y','N'); -INSERT INTO entities VALUES(8,'Apache Hive',2,'{''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive''}','N','N','Y','Y'); -INSERT INTO entities VALUES(9,'Apache Kafka',2,'{''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka''}','N','N','Y','Y'); -INSERT INTO entities VALUES(10,'Apache ServiceMix',2,'{''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix''}','N','N','Y','Y'); -INSERT INTO entities VALUES(11,'Apache Solr',2,'{''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr''}','N','N','Y','Y'); -INSERT INTO entities VALUES(12,'Apache Subversion',2,'{''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion''}','N','N','Y','Y'); -INSERT INTO entities VALUES(13,'Application Development Facility (ADF)',2,'{''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation''}','N','Y','Y','N'); -INSERT INTO entities VALUES(14,'Asterisk',2,'{''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(15,'Automic Job Scheduler',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(16,'Autosys',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(17,'Bluebeam',2,'{''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.''}','Y','N','N','N'); -INSERT INTO entities VALUES(18,'BMC Control-M',2,'{''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944''}','Y','N','N','N'); -INSERT INTO entities VALUES(19,'BMC Identity Management',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(20,'Borland Database Engine (BDE)',2,'{''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine''}','N','N','Y','N'); -INSERT INTO entities VALUES(21,'Business Intelligence and Reporting Tools (BIRT)',2,'{''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project''}','N','N','Y','Y'); -INSERT INTO entities VALUES(22,'CA Gen',2,'{''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen''}','N','N','Y','N'); -INSERT INTO entities VALUES(23,'CA Introscope',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(24,'CA-Panvalet',2,'{''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet''}','Y','Y','N','N'); -INSERT INTO entities VALUES(25,'CA-TELON',2,'{''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon''}','Y','Y','N','N'); -INSERT INTO entities VALUES(26,'Casegen',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(27,'Chef Automate',2,'{''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(28,'Cisco AMP for Endpoints',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(29,'CiscoWorks LAN Management Solution (LMS)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(30,'Citrix Virtual Apps and Desktops',2,'{''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp''}','Y','N','N','N'); -INSERT INTO entities VALUES(31,'Citrix ADC CPX',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(32,'Citrix Provisioning',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(33,'Clarify|*',2,'{''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice''}','Y','Y','N','N'); -INSERT INTO entities VALUES(34,'Clarity LIMS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(35,'LabWare LIMS',2,'{''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system''}','Y','N','N','N'); -INSERT INTO entities VALUES(36,'Cognos',2,'{''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos''}','N','N','Y','N'); -INSERT INTO entities VALUES(37,'Coldfusion',2,'{''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion''}','Y','N','N','N'); -INSERT INTO entities VALUES(38,'ConceptWave',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(39,'CONNAPI',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(40,'Connect Direct',2,'{''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct''}','Y','N','N','N'); -INSERT INTO entities VALUES(41,'Cornerstone software',2,'{''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(42,'Crystal Reports',2,'{''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports''}','Y','N','N','N'); -INSERT INTO entities VALUES(43,'DB2',2,'{''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2''}','N','N','Y','N'); -INSERT INTO entities VALUES(44,'Documentum Content Server',2,'{''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum''}','Y','N','N','N'); -INSERT INTO entities VALUES(45,'Drupal',2,'{''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal''}','N','N','Y','Y'); -INSERT INTO entities VALUES(46,'Eclipse|*',2,'{''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(47,'Elastic (ELK) Stack',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(48,'ETAP License Manager (LM)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(49,'ExamDiff',2,'{''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro''}','Y','N','N','N'); -INSERT INTO entities VALUES(50,'F5 Secure Web Gateway Services',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(51,'FileMaker Pro',2,'{''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker''}','Y','N','N','N'); -INSERT INTO entities VALUES(52,'FlexNet Manager Suite',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(53,'FTP Voyager',2,'{''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager''}','Y','N','N','N'); -INSERT INTO entities VALUES(54,'Genymotion',2,'{''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167''}','Y','N','N','N'); -INSERT INTO entities VALUES(55,'Google Chrome',2,'{''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome''}','N','N','Y','N'); -INSERT INTO entities VALUES(56,'Greenplum DB',2,'{''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum''}','N','N','Y','N'); -INSERT INTO entities VALUES(57,'Hadoop',2,'{''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop''}','N','N','Y','Y'); -INSERT INTO entities VALUES(58,'HP aC++ compiler',2,'{''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++''}','Y','N','N','N'); -INSERT INTO entities VALUES(59,'HP C/ANSI C compiler',2,'{''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler''}','Y','N','N','N'); -INSERT INTO entities VALUES(60,'HP Operations Orchestration (HPOO)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(61,'HP Server Automation (HPSA)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(62,'IBM BigFix Platform|*',2,'{''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix''}','Y','N','N','N'); -INSERT INTO entities VALUES(63,'IBM Business Monitor',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(64,'IBM Business Process Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(65,'IBM Content Manager OnDemand (CMOD)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(66,'IBM FileNet P8 Platform',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(67,'IBM InfoSphere DataStage',2,'{''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage''}','Y','N','N','N'); -INSERT INTO entities VALUES(68,'IBM Integration Bus|*',2,'{''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus''}','N','N','Y','N'); -INSERT INTO entities VALUES(69,'IBM License Metric Tool',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(70,'IBM Maximo',2,'{''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)''}','N','N','Y','N'); -INSERT INTO entities VALUES(71,'IBM Migration Utility',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(72,'IBM Mobile Foundation',2,'{''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst''}','Y','N','N','N'); -INSERT INTO entities VALUES(73,'IBM Operational Decision Manager (ODM)',2,'{''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management''}','N','N','Y','N'); -INSERT INTO entities VALUES(76,'IBM Tivoli Composite Application Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(77,'IBM Tivoli Monitoring',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(79,'IBM Tivoli Workload Scheduler (TWS)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler''}','N','N','Y','N'); -INSERT INTO entities VALUES(80,'IBM WebSphere Business Integration Adaptor',2,'{''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters''}','Y','N','N','N'); -INSERT INTO entities VALUES(81,'IBM Websphere MQ',2,'{''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ''}','N','Y','Y','N'); -INSERT INTO entities VALUES(82,'IBM WebSphere MQ Telemetry',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(83,'IBM WebSphere Transformation Extender (WTX)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(84,'IMS DB',2,'{''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System''}','N','N','Y','N'); -INSERT INTO entities VALUES(85,'Info-ZIP',2,'{''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP''}','Y','N','N','N'); -INSERT INTO entities VALUES(86,'Infobright Community Edition (ICE)',2,'{''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright''}','N','N','Y','N'); -INSERT INTO entities VALUES(87,'Informatica PowerCenter',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(88,'Ingres',2,'{''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)''}','N','N','Y','N'); -INSERT INTO entities VALUES(89,'JBoss|JBoss Enterprise Service Bus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(90,'Jenkins',2,'{''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)''}','N','N','Y','N'); -INSERT INTO entities VALUES(91,'joinIT',2,'{}','N','N','Y*','N'); -INSERT INTO entities VALUES(92,'LifeFlow',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(93,'Lotus Notes',2,'{''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes''}','Y','N','N','N'); -INSERT INTO entities VALUES(94,'MaaS360',2,'{''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None''}','Y','N','N','N'); -INSERT INTO entities VALUES(95,'Malwarebytes Anti-Malware',2,'{''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware''}','Y','N','N','N'); -INSERT INTO entities VALUES(96,'ManageEngine ADSelfService Plus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(97,'MarkLogic DB',2,'{''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic''}','N','N','Y','N'); -INSERT INTO entities VALUES(98,'Memcached',2,'{''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached''}','N','N','Y','Y'); -INSERT INTO entities VALUES(99,'Microsoft Access',2,'{''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access''}','Y','N','N','N'); -INSERT INTO entities VALUES(100,'Microsoft BizTalk Adapters for Host Systems',2,'{''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(101,'Microsoft Dynamics AX',2,'{''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX''}','N','N','Y','N'); -INSERT INTO entities VALUES(102,'Microsoft Endpoint Configuration Manager (SCCM)',2,'{''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(103,'Microsoft Excel',2,'{''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel''}','Y','N','N','N'); -INSERT INTO entities VALUES(104,'Microsoft Exchange Server|*',2,'{''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(105,'Microsoft Forefront Identity Manager (FIM)',2,'{''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(106,'Microsoft InfoPath',2,'{''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath''}','Y','N','N','N'); -INSERT INTO entities VALUES(107,'Microsoft Internet Explorer',2,'{''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer''}','Y','N','N','N'); -INSERT INTO entities VALUES(108,'Microsoft ISA Server',2,'{''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway''}','Y','N','N','N'); -INSERT INTO entities VALUES(109,'Microsoft MQ',2,'{''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing''}','Y','N','N','N'); -INSERT INTO entities VALUES(110,'Microsoft System Center Endpoint Protection',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(111,'Microsoft Visual Studio',2,'{''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio''}','Y','N','N','N'); -INSERT INTO entities VALUES(112,'Microsoft Web Deploy',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(113,'Microsoft Web Farm Framework (WFF)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(114,'Microsoft Web Platform Installer',2,'{''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer''}','Y','N','N','N'); -INSERT INTO entities VALUES(115,'Model Driven Workflow (MDW)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(116,'MongoDB',2,'{''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB''}','N','N','Y','N'); -INSERT INTO entities VALUES(117,'Mozilla Firefox',2,'{''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox''}','N','N','Y','Y'); -INSERT INTO entities VALUES(118,'MQ Client',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(119,'MS Office 365',2,'{''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365''}','Y','N','N','N'); -INSERT INTO entities VALUES(121,'MS SQL Server Compact',2,'{''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact''}','N','N','Y','N'); -INSERT INTO entities VALUES(122,'MySQL',2,'{''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL''}','N','N','Y','Y'); -INSERT INTO entities VALUES(123,'Neo4j',2,'{''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j''}','N','N','Y','Y'); -INSERT INTO entities VALUES(124,'Nexus Repository OSS',2,'{}','N','Y','Y','N'); -INSERT INTO entities VALUES(125,'Nix package manager',2,'{''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager''}','N','N','Y','Y'); -INSERT INTO entities VALUES(126,'OpenLDAP',2,'{''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP''}','N','N','Y','Y'); -INSERT INTO entities VALUES(127,'OpenText Exstream',2,'{''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software''}','N','Y','Y','N'); -INSERT INTO entities VALUES(128,'OpenVPN',2,'{''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN''}','N','N','Y','Y'); -INSERT INTO entities VALUES(129,'Oracle Access Management',2,'{''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management''}','Y','Y','N','N'); -INSERT INTO entities VALUES(130,'Oracle ADF',2,'{''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework''}','Y','N','N','N'); -INSERT INTO entities VALUES(131,'Oracle APEX',2,'{''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express''}','N','N','Y','N'); -INSERT INTO entities VALUES(132,'Oracle BI Publisher',2,'{''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher''}','Y','N','N','N'); -INSERT INTO entities VALUES(133,'Oracle Business Intelligence',2,'{''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition''}','Y','N','N','N'); -INSERT INTO entities VALUES(134,'Oracle Database|*',2,'{''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database''}','N','N','Y','N'); -INSERT INTO entities VALUES(135,'Oracle Designer',2,'{''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer''}','N','Y','Y','N'); -INSERT INTO entities VALUES(136,'Oracle Enterprise Manager',2,'{''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(137,'Oracle Forms',2,'{''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms''}','N','N','Y','N'); -INSERT INTO entities VALUES(138,'Oracle Hyperion|Hyperion Interactive Reporting',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(139,'Oracle Hyperion|Hyperion Planning',2,'{''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168''}','Y','N','N','N'); -INSERT INTO entities VALUES(140,'Oracle Net Services',2,'{''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services''}','Y','Y','N','N'); -INSERT INTO entities VALUES(141,'Oracle Real Application Clusters (RAC)',2,'{''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC''}','N','Y','Y','N'); -INSERT INTO entities VALUES(142,'Oracle Retail Point-of-Service',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(143,'Oracle Service Bus',2,'{''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus''}','Y','N','N','N'); -INSERT INTO entities VALUES(144,'Oracle Smart View',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(145,'Oracle SOA Suite',2,'{''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite''}','N','N','Y','N'); -INSERT INTO entities VALUES(146,'Oracle SQL Developer',2,'{''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer''}','N','N','Y','N'); -INSERT INTO entities VALUES(147,'Oracle TimesTen In-Memory Database',2,'{''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen''}','Y','N','N','N'); -INSERT INTO entities VALUES(148,'Oracle Warehouse Builder (OWB)',2,'{''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder''}','Y','N','N','N'); -INSERT INTO entities VALUES(149,'Orbix',2,'{''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(150,'Pentaho',2,'{''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho''}','N','N','Y','Y'); -INSERT INTO entities VALUES(151,'PeopleSoft',2,'{''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft''}','N','Y','Y','N'); -INSERT INTO entities VALUES(152,'Perkin Elmer Informatics (PKI)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(153,'Pervasive PSQL',2,'{''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL''}','Y','N','N','N'); -INSERT INTO entities VALUES(154,'PIPE-FLO',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(155,'PKZIP',2,'{''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP''}','Y','N','N','N'); -INSERT INTO entities VALUES(156,'Planview',2,'{''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview''}','Y','N','N','N'); -INSERT INTO entities VALUES(157,'PostgreSQL',2,'{''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL''}','N','N','Y','Y'); -INSERT INTO entities VALUES(158,'Powerbuilder',2,'{''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder''}','Y','N','N','N'); -INSERT INTO entities VALUES(159,'Primavera P6',2,'{''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(160,'Pro*COBOL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(161,'ProjectWise',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); -INSERT INTO entities VALUES(162,'ProjectWise Web Server',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); -INSERT INTO entities VALUES(163,'PVCS Version Manager',2,'{''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS''}','Y','N','N','N'); -INSERT INTO entities VALUES(164,'QlikView',2,'{''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488''}','Y','N','N','N'); -INSERT INTO entities VALUES(165,'RabbitMQ',2,'{''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ''}','N','N','Y','Y'); -INSERT INTO entities VALUES(166,'Rational ClearCase',2,'{''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase''}','Y','N','N','N'); -INSERT INTO entities VALUES(167,'Rational ClearQuest',2,'{''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest''}','Y','N','N','N'); -INSERT INTO entities VALUES(168,'Redis',2,'{''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis''}','N','N','Y','Y'); -INSERT INTO entities VALUES(169,'Remedy',2,'{''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger''}','N','N','Y','N'); -INSERT INTO entities VALUES(170,'Riak',2,'{''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak''}','N','N','Y','N'); -INSERT INTO entities VALUES(171,'RightFax',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(172,'Rumba',2,'{''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba''}','N','N','Y','N'); -INSERT INTO entities VALUES(173,'SAP BusinessObjects BI server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(174,'SAP ERP|*',2,'{''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP''}','Y','N','N','N'); -INSERT INTO entities VALUES(175,'SAP HANA DB',2,'{''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA''}','N','N','Y','N'); -INSERT INTO entities VALUES(176,'SAP MaxDB',2,'{''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB''}','N','N','Y','N'); -INSERT INTO entities VALUES(177,'SAP NetWeaver Business Warehouse',2,'{''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse''}','Y','N','N','N'); -INSERT INTO entities VALUES(178,'SAP SQL Anywhere',2,'{''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere''}','N','N','Y','N'); -INSERT INTO entities VALUES(179,'SAP Web Dynpro',2,'{''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro''}','Y','Y','N','N'); -INSERT INTO entities VALUES(180,'Sentry',2,'{''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)''}','N','Y','Y','N'); -INSERT INTO entities VALUES(182,'Siebel',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(183,'SNA Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(184,'SnagIt',2,'{''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit''}','Y','N','N','N'); -INSERT INTO entities VALUES(185,'solidDB',2,'{''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB''}','Y','N','N','N'); -INSERT INTO entities VALUES(186,'SonarQube',2,'{''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube''}','N','Y','Y','Y'); -INSERT INTO entities VALUES(187,'SpaceMonger',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(188,'Splunk',2,'{''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk''}','N','N','Y','N'); -INSERT INTO entities VALUES(189,'SQLIO',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(190,'Sybase SQL Server|*',2,'{''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise''}','N','Y','Y','N'); -INSERT INTO entities VALUES(191,'Syncsort',2,'{''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort''}','Y','N','N','N'); -INSERT INTO entities VALUES(193,'Sysinternal Tools|*',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(194,'Sysinternal Tools|AccessEnum',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(195,'Sysinternal Tools|ClockRes',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(196,'Sysinternal Tools|Coreinfo',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(197,'Sysinternal Tools|DiskExt',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(198,'Sysinternal Tools|DiskMon',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(199,'Sysinternal Tools|Hex2dec',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(200,'Sysinternal Tools|Junction',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(201,'Sysinternal Tools|LDMDump',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(202,'Sysinternal Tools|LoadOrder',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(203,'Sysinternal Tools|PipeList',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(204,'Sysinternal Tools|Process Explorer',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(205,'Sysinternal Tools|PsKill',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(206,'Sysinternal Tools|PsPasswd',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(207,'Sysinternal Tools|SDelete',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(208,'Sysinternal Tools|ShareEnum',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(209,'Sysinternal Tools|Sync',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(210,'Sysinternal Tools|TCPView',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(211,'Sysinternal Tools|VMMap',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(212,'Sysinternal Tools|Whois',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(213,'Tableau',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(214,'TCPLink Enterprise Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(215,'Teradata',2,'{''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata''}','N','N','Y','N'); -INSERT INTO entities VALUES(216,'Teradata QS Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(217,'TIBCO Business Works (BW)|*',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(218,'TIBCO InConcert',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(219,'TIBCO Rendezvous',2,'{''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous''}','N','N','Y','N'); -INSERT INTO entities VALUES(220,'Tivoli Access Manager (TAM)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager''}','N','N','Y','N'); -INSERT INTO entities VALUES(221,'TortoiseCVS',2,'{''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS''}','Y','N','N','Y'); -INSERT INTO entities VALUES(222,'TortoiseSVN',2,'{''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN''}','Y','N','N','N'); -INSERT INTO entities VALUES(223,'TSO/ISPF',2,'{''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF''}','Y','N','N','N'); -INSERT INTO entities VALUES(224,'TWS zCentric',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(225,'Uniface',2,'{''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)''}','N','N','Y','N'); -INSERT INTO entities VALUES(226,'ViewNow X Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(227,'Virtual I/O Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(228,'Visibroker',2,'{''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker''}','Y','N','N','N'); -INSERT INTO entities VALUES(229,'VMware Solution Exchange Marketplace (VSX)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(230,'VMware Tools',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(231,'VMware vCenter',2,'{''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None''}','N','N','Y','N'); -INSERT INTO entities VALUES(232,'WebFOCUS',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(233,'WebLogic Integration',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(234,'WebSphere Commerce Suite (WCS)',2,'{''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce''}','Y','N','N','N'); -INSERT INTO entities VALUES(235,'WebSphere Message Broker',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(236,'Wherescape Red',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(237,'Windchill',2,'{''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(238,'Windows Indexing Service',2,'{''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service''}','Y','N','N','N'); -INSERT INTO entities VALUES(239,'Windows Terminal Server (WTS)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(240,'WingArc SVF',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(241,'WinMerge',2,'{''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge''}','N','N','Y','Y'); -INSERT INTO entities VALUES(242,'WinRAR',2,'{''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR''}','Y','N','N','N'); -INSERT INTO entities VALUES(243,'WinSCP',2,'{''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP''}','Y','N','N','N'); -INSERT INTO entities VALUES(244,'Wise Package Studio',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(245,'Wordpress',2,'{''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress''}','N','N','Y','Y'); -INSERT INTO entities VALUES(246,'XAMPP',2,'{''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP''}','N','N','Y','Y'); -INSERT INTO entities VALUES(247,'ZAP BI',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(248,'ZeroMQ',2,'{''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ''}','N','N','Y','Y'); -INSERT INTO entities VALUES(249,'Zerto Virtual Replication',2,'{''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto''}','N','N','Y','N'); -INSERT INTO entities VALUES(250,'IBM PowerHA',2,'{''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing''}','Y','N','N','N'); -INSERT INTO entities VALUES(251,'Tivoli Netcool/OMNIbus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(252,'IBM ILOG Views',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(253,'IBM ILOG CPLEX',2,'{''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX''}','Y','N','N','N'); -INSERT INTO entities VALUES(254,'IBM ILOG Jviews',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(255,'IBM ILOG Elixir',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(256,'IBM ILOG Supply Chain Apps',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(257,'ILOG Solver',2,'{''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG''}','Y','N','N','N'); -INSERT INTO entities VALUES(258,'SQLite',2,'{''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite''}','N','N','Y','Y'); -INSERT INTO entities VALUES(259,'Apache HTTP Server',8,'{''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server''}','N','N','Y','Y'); -INSERT INTO entities VALUES(260,'Apache Tomcat',8,'{''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat''}','N','N','Y','Y'); -INSERT INTO entities VALUES(261,'ArcGIS Server',8,'{''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(263,'GlassFish',8,'{''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish''}','N','N','Y','N'); -INSERT INTO entities VALUES(264,'HAProxy',8,'{''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy''}','N','N','Y','Y'); -INSERT INTO entities VALUES(265,'IBM HTTP Server',8,'{''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(268,'JBoss|*',8,'{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}','N','N','Y','N'); -INSERT INTO entities VALUES(269,'Kitura',8,'{''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura''}','N','N','Y','N'); -INSERT INTO entities VALUES(270,'Lotus Domino',8,'{''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529''}','Y','N','N','N'); -INSERT INTO entities VALUES(271,'Lucee',8,'{''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee''}','N','N','Y','Y'); -INSERT INTO entities VALUES(272,'Netscape Application Server (NAS)',8,'{''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(273,'Netscape Enterprise Server (NES)',8,'{''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430''}','Y','N','N','N'); -INSERT INTO entities VALUES(274,'Nginx',8,'{''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx''}','N','N','Y','Y'); -INSERT INTO entities VALUES(276,'Oracle WebCenter Content Server|*',8,'{''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter''}','Y','N','N','N'); -INSERT INTO entities VALUES(277,'Pivotal tc Server',8,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(278,'Resin Web Server',8,'{''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(279,'SAP NetWeaver App Server|*',8,'{''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver''}','Y','N','N','N'); -INSERT INTO entities VALUES(280,'Spark',8,'{''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)''}','N','N','Y','N'); -INSERT INTO entities VALUES(281,'Oracle iPlanet Web Server',8,'{''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(282,'UltiDev Web Server Pro (UWS)',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(283,'webMethods Integration Server',8,'{''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(284,'Websphere Application Server (WAS)',8,'{''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(285,'WebSphere Liberty',8,'{''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917''}','N','N','Y','N'); -INSERT INTO entities VALUES(286,'WebSphere Portal Server',8,'{''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal''}','N','N','Y','N'); -INSERT INTO entities VALUES(287,'Websphere Process Server',8,'{''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(289,'Oracle Real-Time Decisions (RTD)',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(290,'CA API Gateway',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(291,'Citrix ADC SDX',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(292,'Citrix ADC MPX',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(293,'HP Nonstop',4,'{''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)''}','Y','N','N','N'); -INSERT INTO entities VALUES(294,'IBM DataPower Gateway',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(295,'IBM Power Systems',4,'{''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems''}','Y','N','N','N'); -INSERT INTO entities VALUES(296,'Intel Xeon Processor',4,'{''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon''}','Y','N','N','N'); -INSERT INTO entities VALUES(297,'Net Optics Taps',4,'{''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics''}','Y','N','N','N'); -INSERT INTO entities VALUES(298,'Oracle Exadata',4,'{''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata''}','Y','N','N','N'); -INSERT INTO entities VALUES(299,'AutoIt',9,'{''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(300,'AWK',9,'{''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(301,'BASIC',9,'{''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(302,'Brainscript',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(303,'C',9,'{''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(306,'C++|Visual C++',9,'{''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(307,'Cascading Style Sheets (CSS)|*',9,'{''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(308,'Clipper',9,'{''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(309,'CLIST',9,'{''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(311,'ColdFusion Markup Language (CFML)',9,'{''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(312,'Data Language Interface (DL/I)',9,'{''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(313,'Delphi',9,'{''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(314,'Easytrieve',9,'{''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(315,'Expect',9,'{''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(316,'eXtensible HyperText Markup Language (XHTML)',9,'{''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(318,'Extensible Markup Language (XML)|MSXML',9,'{''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(319,'Extensible Stylesheet Language (XSL)',9,'{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(320,'Extensible Stylesheet Language Transformations (XLST)',9,'{''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(321,'FOCUS',9,'{''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(322,'Fortran',9,'{''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(323,'Go',9,'{''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(324,'GraphQL',9,'{''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(325,'Groovy',9,'{''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(326,'HiveQL',9,'{}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(327,'Hypertext Markup Language (HTML)',9,'{''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(328,'IBM High Level Assembler (HLASM)',9,'{''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(329,'IBM i Control Language (CL)',9,'{''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(330,'IBM Informix-4GL',9,'{''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(333,'Java|Java Enterprise Edition (Java EE)',9,'{''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(334,'Java|Java Standard Edition (Java SE)',9,'{''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(335,'Java|JavaServer Pages (JSP)',9,'{''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(336,'Java|JavaServer Pages (JSP)|Scriptlets',9,'{''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(338,'JCL',9,'{''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(339,'Job Information Language (JIL)',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(340,'JScript',9,'{''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(341,'Lisp',9,'{''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(342,'Niakwa Programming Language (NPL)',9,'{''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(343,'Objective C',9,'{''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(344,'OpenEdge ABL',9,'{''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(346,'Pascal|Object Pascal',9,'{''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(348,'Perl|ActivePerl',9,'{''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(349,'Perl|Rex',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(351,'PL/I',9,'{''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(352,'PL/SQL',9,'{''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(353,'PRO*C',9,'{''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(355,'R',9,'{''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(356,'Rexx',9,'{''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(357,'RPG',9,'{''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(359,'Salesforce Object Query Language (SOQL)',9,'{}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(360,'SAS',9,'{''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(361,'Sass',9,'{''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(362,'Scala',9,'{''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(363,'Smalltalk',9,'{''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(364,'Swift',9,'{''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(365,'TCL',9,'{''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(366,'Transact-SQL',9,'{''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(367,'TypeScript',9,'{''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(368,'VB.NET',9,'{''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(369,'VBScript',9,'{''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(370,'Visual Basic',9,'{''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(371,'Visual Basic for Applications (VBA)',9,'{''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(372,'Visual FoxPro',9,'{''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(373,'VoiceXML',9,'{''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(374,'Xbase++',9,'{''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(375,'Apache Lucene',12,'{''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene''}','Y','N','N','N'); -INSERT INTO entities VALUES(376,'Apache Xerces',12,'{''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces''}','Y','N','N','N'); -INSERT INTO entities VALUES(377,'Cascading Style Sheets (CSS)|Bootstrap',12,'{''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping''}','Y','N','N','N'); -INSERT INTO entities VALUES(378,'Java|Apache Camel',12,'{''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel''}','N','N','Y','Y'); -INSERT INTO entities VALUES(379,'Java|Apache Commons BeanUtils',12,'{''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245''}','Y','N','N','Y'); -INSERT INTO entities VALUES(380,'Java|Apache PDFBox',12,'{''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox''}','Y','N','N','Y'); -INSERT INTO entities VALUES(381,'Java|Apache Velocity',12,'{''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity''}','Y','N','N','N'); -INSERT INTO entities VALUES(382,'Java|EclipseLink',12,'{''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink''}','Y','N','N','N'); -INSERT INTO entities VALUES(383,'Java|Enterprise JavaBeans (EJB)',12,'{''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans''}','Y','N','N','N'); -INSERT INTO entities VALUES(384,'Java|EZMorph',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(385,'Java|Google Web Toolkit (GWT)',12,'{''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit''}','Y','N','N','Y'); -INSERT INTO entities VALUES(386,'Java|Hibernate',12,'{''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(387,'Java|IBM SDK',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(388,'Java|Java Development Kit (JDK)',12,'{''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit''}','Y','N','N','N'); -INSERT INTO entities VALUES(389,'Java|Java Message Service (JMS)',12,'{''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service''}','Y','N','N','N'); -INSERT INTO entities VALUES(390,'Java|Java Web Start',12,'{''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start''}','Y','N','N','N'); -INSERT INTO entities VALUES(391,'Java|JavaServer Faces (JSF)',12,'{''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces''}','Y','N','N','N'); -INSERT INTO entities VALUES(392,'Java|JDBC',12,'{''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity''}','Y','N','N','N'); -INSERT INTO entities VALUES(393,'Java|JRuby Core',12,'{''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby''}','Y','N','N','Y'); -INSERT INTO entities VALUES(394,'Java|Log4j',12,'{''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j''}','Y','N','N','Y'); -INSERT INTO entities VALUES(395,'Java|Quartz',12,'{''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(396,'Java|Remote Method Invocation (RMI)',12,'{''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation''}','Y','N','N','N'); -INSERT INTO entities VALUES(397,'Java|Servlet',12,'{''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software''}','Y','N','N','Y'); -INSERT INTO entities VALUES(398,'Java|Spring',12,'{''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314''}','N','N','Y','Y'); -INSERT INTO entities VALUES(399,'Java|Spring|Spring Boot',12,'{''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994''}','N','N','Y','Y'); -INSERT INTO entities VALUES(400,'Java|Spring|Spring Cloud Data Flow',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(401,'Java|Spring|Spring MVC',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(402,'Java|Struts',12,'{''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1''}','Y','N','N','N'); -INSERT INTO entities VALUES(403,'Java|Swing',12,'{''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)''}','N','N','Y','N'); -INSERT INTO entities VALUES(404,'Java|Vaadin',12,'{''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin''}','Y','N','N','N'); -INSERT INTO entities VALUES(405,'JavaScript|AJAX',12,'{''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)''}','Y','N','N','N'); -INSERT INTO entities VALUES(406,'JavaScript|AngularJS',12,'{''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS''}','Y','N','N','N'); -INSERT INTO entities VALUES(407,'JavaScript|Draw2D',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(408,'JavaScript|Express.js',12,'{''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js''}','Y','N','N','N'); -INSERT INTO entities VALUES(409,'JavaScript|Ext JS',12,'{''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS''}','N','N','Y','N'); -INSERT INTO entities VALUES(410,'JavaScript|jqGrid',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(411,'JavaScript|JQuery',12,'{''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery''}','Y','N','N','N'); -INSERT INTO entities VALUES(412,'JavaScript|Jquery|jQuery UI',12,'{''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI''}','N','N','Y','N'); -INSERT INTO entities VALUES(413,'JavaScript|React',12,'{''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(414,'JavaScript|script.aculo.us',12,'{''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us''}','Y','N','N','N'); -INSERT INTO entities VALUES(415,'JavaScript|Valums AJAX File Uploader',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(416,'OWASP Enterprise Security API (ESAPI)',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(417,'Perl|Oraperl',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(418,'Android',6,'{''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)''}','N','N','Y','N'); -INSERT INTO entities VALUES(419,'BeOS',6,'{''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS''}','N','N','Y','N'); -INSERT INTO entities VALUES(420,'Cisco IOS',6,'{''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(421,'DART',6,'{''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)''}','N','N','Y','N'); -INSERT INTO entities VALUES(422,'Fabric OS',6,'{''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS''}','N','N','Y','N'); -INSERT INTO entities VALUES(423,'GNU',6,'{''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU''}','N','N','Y','N'); -INSERT INTO entities VALUES(424,'IBM i',6,'{''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i''}','N','N','Y','N'); -INSERT INTO entities VALUES(425,'iOS',6,'{''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(427,'Linux|CentOS',6,'{''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS''}','Y','N','N','Y'); -INSERT INTO entities VALUES(428,'Linux|Check Point',6,'{''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519''}','Y','N','N','N'); -INSERT INTO entities VALUES(429,'Linux|Debian',6,'{''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian''}','N','N','Y','Y'); -INSERT INTO entities VALUES(430,'Linux|Junos OS',6,'{''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS''}','Y','N','N','N'); -INSERT INTO entities VALUES(431,'Linux|openSUSE',6,'{''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE''}','Y','N','N','Y'); -INSERT INTO entities VALUES(432,'Linux|Oracle Linux',6,'{''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(433,'Linux|Photon OS',6,'{''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682''}','N','N','Y','Y'); -INSERT INTO entities VALUES(434,'Linux|Red Hat Enterprise Linux',6,'{''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(435,'Linux|SUSE Linux Enterprise Server',6,'{''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server''}','N','N','Y','Y'); -INSERT INTO entities VALUES(436,'Linux|Ubuntu',6,'{''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(437,'Linux|zLinux',6,'{''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems''}','N','N','Y','N'); -INSERT INTO entities VALUES(438,'macOS',6,'{''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS''}','N','N','Y','N'); -INSERT INTO entities VALUES(440,'MVS|OS/390',6,'{''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390''}','Y','N','N','N'); -INSERT INTO entities VALUES(441,'MVS|z/OS',6,'{''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS''}','Y','N','N','N'); -INSERT INTO entities VALUES(442,'OpenVMS',6,'{''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS''}','Y','N','N','N'); -INSERT INTO entities VALUES(443,'OS/2',6,'{''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2''}','Y','N','N','N'); -INSERT INTO entities VALUES(445,'Unix|AIX',6,'{''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX''}','Y','N','N','N'); -INSERT INTO entities VALUES(447,'Unix|BSD|FreeBSD',6,'{''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD''}','Y','N','N','N'); -INSERT INTO entities VALUES(448,'Unix|BSD|SunOS',6,'{''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(449,'Unix|HP-UX',6,'{''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX''}','Y','N','N','N'); -INSERT INTO entities VALUES(451,'Windows|Windows Desktop',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','Y','N','N','N'); -INSERT INTO entities VALUES(452,'Windows|Windows Server',6,'{''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(453,'Linux|Fedora',6,'{''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(454,'Linux|Amazon Linux',6,'{''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191''}','Y','N','N','N'); -INSERT INTO entities VALUES(455,'Clarify|Clear Basic',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(456,'Eclipse|ATLAS Transformation Language (ATL)',5,'{''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language''}','Y','N','N','N'); -INSERT INTO entities VALUES(457,'IBM BigFix Platform|Client Deploy Tool',5,'{''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit''}','Y','N','N','N'); -INSERT INTO entities VALUES(458,'IBM Integration Bus|Extended Structured Query Language (ESQL)',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(459,'IBM Tivoli Asset Management|Asset Discovery for Distributed',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(460,'IBM Tivoli Storage Manager|TSM API',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(461,'IBM Tivoli Storage Manager|TSM Client',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(462,'IBM Tivoli Storage Manager|TSM Storage Agent',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(463,'IBM Tivoli Storage Manager|VSS Requestor',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(464,'Microsoft Exchange Server|Veeam Explorer',5,'{''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414''}','Y','N','N','N'); -INSERT INTO entities VALUES(465,'MS SQL Server|MS SQL Server Browser',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(466,'MS SQL Server|Data Transformation Services',5,'{''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(467,'MS SQL Server|Log Reader Agent',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(468,'MS SQL Server|SQL Server Analysis Services (SSAS)',5,'{''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(469,'MS SQL Server|SQL Server Database Engine',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(470,'MS SQL Server|SQL Server Integration Services (SSIS)',5,'{''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(471,'MS SQL Server|SQL Server Management Studio',5,'{''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio''}','Y','N','N','N'); -INSERT INTO entities VALUES(472,'MS SQL Server|SQL Server Report Builder',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(473,'MS SQL Server|SQL Server Reporting Services (SSRS)',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(474,'Oracle Database|Jserver',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(475,'Oracle Database|Oracle Spatial and Graph',5,'{''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph''}','Y','N','N','N'); -INSERT INTO entities VALUES(476,'SAP ERP|SAP EHP',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(477,'SAP ERP|SAP Kernel',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(478,'Oracle Database|SQL*Plus',5,'{''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus''}','Y','N','N','N'); -INSERT INTO entities VALUES(479,'Sybase SQL Server|Sybase Central',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(480,'Sybase SQL Server|Sybase Dsedit',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(481,'TIBCO Business Works (BW)|Integration Manager',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(482,'.NET Framework|Common Runtime Library',7,'{''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library''}','Y','N','N','N'); -INSERT INTO entities VALUES(483,'.NET Framework|log4net',7,'{''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429''}','Y','N','N','Y'); -INSERT INTO entities VALUES(484,'.NET Framework|Magick.NET',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(485,'.NET Framework|Windows Communication Foundation (WCF)',7,'{''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation''}','Y','N','N','N'); -INSERT INTO entities VALUES(486,'.NET Framework|Windows Workflow Foundation (WF)',7,'{''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation''}','Y','N','N','N'); -INSERT INTO entities VALUES(487,'.NET Framework|WinForms',7,'{''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms''}','Y','N','N','N'); -INSERT INTO entities VALUES(488,'ActiveX|ADO',7,'{''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects''}','Y','N','N','N'); -INSERT INTO entities VALUES(489,'IIS|Easy Migration Tool (IEMT)',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(490,'IIS|Application Request Routing (ARR)',7,'{''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing''}','Y','N','N','N'); -INSERT INTO entities VALUES(491,'IIS|IIS Manager',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(492,'JBoss|JBoss Seam',7,'{''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam''}','Y','N','N','Y'); -INSERT INTO entities VALUES(493,'JBoss|Wildfly',7,'{''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly''}','N','N','Y','Y'); -INSERT INTO entities VALUES(494,'Oracle Application Server|Oracle Transparent Gateway',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(495,'Oracle WebCenter Content Server|Idoc Script',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(496,'SAP NetWeaver App Server|ABAP',7,'{''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP''}','Y','N','N','N'); -INSERT INTO entities VALUES(497,'.NET Framework|*',10,'{''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework''}','Y','N','N','N'); -INSERT INTO entities VALUES(498,'Active Directory (AD)',10,'{''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory''}','Y','N','N','N'); -INSERT INTO entities VALUES(500,'ActiveX|*',10,'{''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX''}','N','N','Y','N'); -INSERT INTO entities VALUES(501,'Apache Cordova',10,'{''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova''}','Y','N','N','Y'); -INSERT INTO entities VALUES(502,'CICS',10,'{''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS''}','Y','Y','N','N'); -INSERT INTO entities VALUES(503,'Docker',10,'{''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)''}','N','N','Y','N'); -INSERT INTO entities VALUES(504,'Flash',10,'{''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash''}','Y','N','N','N'); -INSERT INTO entities VALUES(505,'HTTP File Server',10,'{''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(506,'Java Runtime Environment (JRE)',10,'{''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505''}','Y','Y','N','N'); -INSERT INTO entities VALUES(507,'Node.js',10,'{''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js''}','N','N','Y','Y'); -INSERT INTO entities VALUES(508,'Ruby on Rails',10,'{''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails''}','N','N','Y','Y'); -INSERT INTO entities VALUES(509,'VisualForce',10,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(510,'EMC Celerra',11,'{''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra''}','Y','N','N','N'); -INSERT INTO entities VALUES(511,'Application Lifecycle Management (ALM)',1,'{''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management''}','N','N','Y','N'); -INSERT INTO entities VALUES(512,'Assembler Language',1,'{''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language''}','N','N','Y','N'); -INSERT INTO entities VALUES(513,'Batch Management Software (BMS)',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(514,'Business Object Reports',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(515,'Common Gateway Interface (CGI)',1,'{''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface''}','N','N','Y','N'); -INSERT INTO entities VALUES(516,'Compopent Object Model (COM)',1,'{''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model''}','N','N','Y','N'); -INSERT INTO entities VALUES(517,'Common Object Request Broker Architecture (CORBA)',1,'{''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture''}','Y','N','N','N'); -INSERT INTO entities VALUES(518,'CORBA Interface Definition Language (CORBA IDL)',1,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(519,'Data Control Language (DCL)',1,'{''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language''}','Y','N','N','N'); -INSERT INTO entities VALUES(520,'Database (DB)',1,'{''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database''}','N','N','Y','N'); -INSERT INTO entities VALUES(521,'Electronic Data Interchange (EDI)',1,'{''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange''}','Y','N','N','N'); -INSERT INTO entities VALUES(522,'Application Web Server',1,'{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(523,'Java-based Document Object Model for XML (JDOM)',1,'{''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM''}','N','N','Y','Y'); -INSERT INTO entities VALUES(524,'Lightweight Directory Access Protocol (LDAP)',1,'{''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol''}','N','N','Y','N'); -INSERT INTO entities VALUES(525,'Open Database Connectivity (ODBC)',1,'{''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity''}','Y','N','N','N'); -INSERT INTO entities VALUES(526,'Order Management System (OMS)',1,'{''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system''}','Y','N','N','N'); -INSERT INTO entities VALUES(527,'Oracle Web Services',1,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(529,'Representational State Transfer (REST)',1,'{''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer''}','Y','N','N','N'); -INSERT INTO entities VALUES(530,'Service-Oriented Architecture (SOA)',1,'{''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture''}','Y','N','N','N'); -INSERT INTO entities VALUES(531,'Simple Object Access Protocol (SOAP)',1,'{''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP''}','Y','N','N','N'); -INSERT INTO entities VALUES(533,'YAML',1,'{''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML''}','Y','N','N','N'); -INSERT INTO entities VALUES(535,'Application Server',1,'{''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(536,'Cloud',1,'{''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing''}','N','N','Y','N'); -INSERT INTO entities VALUES(537,'Competency and Quality Assurance Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(538,'Device Provisioning Engines (DPE)',1,'{''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment''}','N','N','Y','N'); -INSERT INTO entities VALUES(539,'E-business solution',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(540,'Enterprise Service Bus(ESB)',1,'{''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus''}','N','N','Y','N'); -INSERT INTO entities VALUES(541,'File Server',1,'{''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(542,'General Ledger',1,'{''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger''}','N','N','Y','N'); -INSERT INTO entities VALUES(543,'HTTP client',1,'{''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024''}','Y','N','N','N'); -INSERT INTO entities VALUES(545,'Integrated Safe System of Work (ISSOW)',1,'{''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW''}','N','N','Y','N'); -INSERT INTO entities VALUES(546,'Internet Exchange Point - Full Stack (ixp-ft)',1,'{''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point''}','N','N','Y','N'); -INSERT INTO entities VALUES(547,'Internet Message Access Protocol (IMAP)',1,'{''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol''}','Y','N','N','N'); -INSERT INTO entities VALUES(548,'JSON',1,'{''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON''}','N','N','Y','N'); -INSERT INTO entities VALUES(549,'KVS Application Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(550,'KVS File Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(551,'KVS Proxy Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(552,'mainframe',1,'{''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer''}','Y','N','N','N'); -INSERT INTO entities VALUES(553,'Manufacturing Execution System (MES)',1,'{''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system''}','N','N','Y','N'); -INSERT INTO entities VALUES(554,'Mobile',1,'{''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing''}','N','N','Y','N'); -INSERT INTO entities VALUES(555,'NonSQL',1,'{''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165''}','Y','N','N','N'); -INSERT INTO entities VALUES(556,'SaaS',1,'{''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service''}','Y','N','N','N'); -INSERT INTO entities VALUES(557,'Storage Area Network (SAN)',1,'{''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network''}','N','N','Y','N'); -INSERT INTO entities VALUES(558,'Supplier Registration System Application Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(559,'Virtual Appliance',1,'{''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance''}','N','N','Y','N'); -INSERT INTO entities VALUES(560,'Webtop',1,'{''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop''}','Y','N','N','N'); -INSERT INTO entities VALUES(561,'Proxy Server',1,'{''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(562,'Utility',1,'{''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software''}','N','N','Y','N'); -INSERT INTO entities VALUES(563,'Citrix ADC',3,'{''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775''}','N','N','Y','N'); -INSERT INTO entities VALUES(564,'Citrix ADC VPX',3,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(565,'Citrix ADC BLX',3,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(566,'InterScan Messaging Security Virtual Appliance (IMSVA)',3,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(567,'Oracle VM',3,'{''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86''}','Y','N','N','N'); -INSERT INTO entities VALUES(568,'VMware ESXi',3,'{''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi''}','Y','N','N','N'); -INSERT INTO entities VALUES(569,'VMware Server',3,'{''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(572,'Structured Query Language (SQL)',1,'{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}','Y','N','N','N'); -INSERT INTO entities VALUES(574,'Model view controller (MVC)',1,'{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}','Y','N','N','N'); -INSERT INTO entities VALUES(576,'Linux|*',6,'{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(577,'MVS|*',6,'{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}','Y','N','N','N'); -INSERT INTO entities VALUES(578,'Unix|*',6,'{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}','Y','N','N','N'); -INSERT INTO entities VALUES(579,'Unix|BSD|*',6,'{''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution''}','Y','N','N','N'); -INSERT INTO entities VALUES(580,'Windows|*',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','N','N','Y','N'); -INSERT INTO entities VALUES(581,'MS SQL Server|*',2,'{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(582,'C#',9,'{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(583,'C++|*',9,'{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(584,'Java|*',9,'{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(585,'Perl|*',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(586,'PHP',9,'{''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(587,'Python',9,'{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(588,'Ruby',9,'{''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(589,'JavaScript|*',9,'{''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(590,'Unix|BSD|OpenBSD',6,'{''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215''}','Y','N','N','N'); -INSERT INTO entities VALUES(591,'z/VSE',6,'{''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)''}','Y','N','N','N'); -INSERT INTO entities VALUES(592,'Active Server Pages (ASP)',9,'{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(593,'MS-DOS',6,'{''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(594,'COBOL',9,'{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(595,'VME',6,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(596,'Extensible Markup Language (XML)|*',9,'{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(597,'DOS/360',6,'{''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors''}','Y','N','N','N'); -INSERT INTO entities VALUES(598,'z/TPF',6,'{''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility''}','Y','N','N','N'); -INSERT INTO entities VALUES(599,'Pascal|*',9,'{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(600,'Oracle WebLogic Server',8,'{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(601,'Websphere ILOG JRules BRMS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(602,'Unix|BSD|NetBSD',6,'{''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225''}','Y','N','N','N'); -INSERT INTO entities VALUES(603,'SharePoint',2,'{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}','Y','N','N','N'); -INSERT INTO entities VALUES(604,'IBM Tivoli Storage Manager|*',2,'{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(605,'IBM Spectrum Scale',2,'{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}','Y','N','N','N'); -INSERT INTO entities VALUES(606,'IBM Tivoli Asset Management|*',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(607,'Oracle Hyperion|*',2,'{''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion''}','Y','N','N','N'); -INSERT INTO entities VALUES(608,'z/VM',6,'{''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM''}','Y','N','N','N'); -INSERT INTO entities VALUES(609,'IIS|*',8,'{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(610,'Oracle Application Server|*',8,'{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(611,'instana',10,'{''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927''}','N','N','Y','N'); -INSERT INTO entities VALUES(612,'credstash',2,'{''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165''}','N','N','Y','N'); -INSERT INTO entities VALUES(613,'Snyk',2,'{''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404''}','N','N','Y','N'); -INSERT INTO entities VALUES(614,'Akka',2,'{''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307''}','N','N','Y','N'); -INSERT INTO entities VALUES(615,'Varnish',8,'{''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447''}','N','N','Y','N'); -INSERT INTO entities VALUES(616,'Datadog',10,'{''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637''}','N','N','Y','N'); -INSERT INTO entities VALUES(617,'API',1,'{''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194''}','N','N','Y','N'); -INSERT INTO entities VALUES(618,'Hazelcast',10,'{''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540''}','N','N','Y','N'); -INSERT INTO entities VALUES(619,'Infinispan',2,'{''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516''}','N','N','Y','N'); -INSERT INTO entities VALUES(620,'Nuxeo',10,'{''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521''}','N','N','Y','N'); -INSERT INTO entities VALUES(621,'ArangoDB',2,'{''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115''}','N','N','Y','N'); -INSERT INTO entities VALUES(622,'Eclipse|Eclipse Che',2,'{''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883''}','N','N','Y','N'); -INSERT INTO entities VALUES(623,'Amazon S3',2,'{''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067''}','N','N','Y','N'); -INSERT INTO entities VALUES(624,'ClickHouse',2,'{''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826''}','N','N','Y','N'); -INSERT INTO entities VALUES(625,'MinIO',2,'{''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397''}','N','N','Y','N'); -INSERT INTO entities VALUES(626,'Elasticsearch',2,'{''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461''}','N','N','Y','N'); -INSERT INTO entities VALUES(627,'XtraDB',2,'{''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858''}','N','N','Y','N'); -INSERT INTO entities VALUES(628,'Keycloak',2,'{''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195''}','N','N','Y','N'); -INSERT INTO entities VALUES(629,'Grafana',2,'{''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271''}','N','N','Y','N'); -INSERT INTO entities VALUES(630,'Mattermost',10,'{''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510''}','N','N','Y','N'); -INSERT INTO entities VALUES(631,'Synapse',2,'{''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412''}','N','N','Y','N'); -INSERT INTO entities VALUES(632,'Cloud IAM',2,'{''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253''}','N','N','Y','N'); -INSERT INTO entities VALUES(633,'Knative',10,'{''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591''}','N','N','Y','N'); -INSERT INTO entities VALUES(634,'Apache Cassandra',2,'{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}','N','N','Y','N'); -INSERT INTO entities VALUES(635,'Kubeflow',10,'{''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974''}','N','N','Y','N'); -INSERT INTO entities VALUES(636,'Qiskit',2,'{''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607''}','N','N','Y','N'); -INSERT INTO entities VALUES(637,'Microsoft Azure',2,'{''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967''}','N','N','Y','N'); -INSERT INTO entities VALUES(638,'Strimzi',10,'{''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423''}','N','N','Y','N'); -INSERT INTO entities VALUES(639,'Sematext',10,'{''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130''}','N','N','Y','N'); -INSERT INTO entities VALUES(640,'Eclipse|Eclipse hawkBit',2,'{''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253''}','N','N','Y','N'); -INSERT INTO entities VALUES(641,'Eclipse|Eclipse Ditto',2,'{''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650''}','N','N','Y','N'); -INSERT INTO entities VALUES(642,'MariaDB',2,'{''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177''}','N','N','Y','N'); -INSERT INTO entities VALUES(643,'Zadara',2,'{''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144''}','N','N','Y','N'); -INSERT INTO entities VALUES(644,'Istio',2,'{''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464''}','N','N','Y','N'); -INSERT INTO entities VALUES(645,'Vault',2,'{''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426''}','N','N','Y','N'); -INSERT INTO entities VALUES(646,'Apache Druid',2,'{''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799''}','N','N','Y','N'); -INSERT INTO entities VALUES(647,'etcd',2,'{''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273''}','N','N','Y','N'); -INSERT INTO entities VALUES(648,'Traefik',8,'{''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968''}','N','N','Y','N'); -INSERT INTO entities VALUES(649,'IBM Cloud',2,'{''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605''}','N','N','Y','N'); -INSERT INTO entities VALUES(650,'YugabyteDB',2,'{''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861''}','N','N','Y','N'); -INSERT INTO entities VALUES(651,'CockroachDB',2,'{''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903''}','N','N','Y','N'); -INSERT INTO entities VALUES(652,'Jaeger',10,'{''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449''}','N','N','Y','N'); -INSERT INTO entities VALUES(653,'Natural Programming Language',9,'{}','N','N','Y','N/A'); -INSERT INTO entities VALUES(654,'AcuCOBOL',9,'{''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(655,'Ada',9,'{''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(656,'ADABAS',2,'{''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434''}','N','N','Y','N'); -INSERT INTO entities VALUES(657,'ADSO',9,'{''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(659,'Batch',9,'{''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(660,'Powershell',9,'{''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(661,'COM+',10,'{''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606''}','N','N','Y','N'); -INSERT INTO entities VALUES(662,'Dataflex',9,'{''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(663,'DDS',9,'{''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(664,'Forte',9,'{''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(665,'Foxpro',9,'{''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(666,'IBM DB2 Purescale',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(667,'IDMS DB',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(668,'IDMS DML',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(669,'Jaguar',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(670,'EAServer',8,'{''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084''}','Y','N','N','N'); -INSERT INTO entities VALUES(672,'IBM Netezza',4,'{''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960''}','N','N','Y','N'); -INSERT INTO entities VALUES(674,'OpenROAD',9,'{''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(675,'Oracle Reports',2,'{''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946''}','Y','N','N','N'); -INSERT INTO entities VALUES(676,'SAP Replication Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(677,'Git',2,'{''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055''}','N','N','Y','N'); -INSERT INTO entities VALUES(678,'GitLab',2,'{''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197''}','N','N','Y','N'); -INSERT INTO entities VALUES(679,'VSAM',2,'{''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276''}','Y','N','N','N'); -INSERT INTO entities VALUES(680,'Cloud<>Apache HTTP Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(681,'Cloud<>Windows Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(682,'Cloud<>MS SQL Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(683,'Cloud<>Azure SQL Server Database',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(684,'Cloud<>MySQL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(685,'Cloud<>Oracle Database',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(686,'Cloud<>PostgreSQL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(687,'Cloud<>AWS RDS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(688,'Cloud<>SAP HANA DB',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(689,'BMS Map',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(690,'DB400',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(691,'ILE',9,'{''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(692,'Integrated Data Store (IDS)',2,'{''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287''}','Y','N','N','N'); -INSERT INTO entities VALUES(693,'ISAM',2,'{''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755''}','N','N','Y','N'); -INSERT INTO entities VALUES(694,'Oracle RDS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(695,'SAP IQ',2,'{''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492''}','Y','N','N','N'); -INSERT INTO entities VALUES(696,'Cloud<>Linux',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(697,'Apache Maven',2,'{''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941''}','N','N','Y','Y'); -INSERT INTO entities VALUES(698,'IBM Basic Assembly Language (BAL)',9,'{''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762''}','Y','N','N','N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (1, '(E)JES', 2, '{''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (2, 'A-Auto Job Scheduling Software', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (3, 'Activiti', 2, '{''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)''}', 'N', 'Y', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (4, 'Adobe Acrobat Reader', 2, '{''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (5, 'Ansible', 2, '{''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (6, 'Apache ActiveMQ', 2, '{''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (7, 'Apache Hbase', 2, '{''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (8, 'Apache Hive', 2, '{''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (9, 'Apache Kafka', 2, '{''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (10, 'Apache ServiceMix', 2, '{''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (11, 'Apache Solr', 2, '{''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (12, 'Apache Subversion', 2, '{''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (13, 'Application Development Facility (ADF)', 2, '{''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (14, 'Asterisk', 2, '{''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (15, 'Automic Job Scheduler', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (16, 'Autosys', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (17, 'Bluebeam', 2, '{''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (18, 'BMC Control-M', 2, '{''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (19, 'BMC Identity Management', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (20, 'Borland Database Engine (BDE)', 2, '{''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (21, 'Business Intelligence and Reporting Tools (BIRT)', 2, '{''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (22, 'CA Gen', 2, '{''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (23, 'CA Introscope', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (24, 'CA-Panvalet', 2, '{''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (25, 'CA-TELON', 2, '{''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (26, 'Casegen', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (27, 'Chef Automate', 2, '{''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (28, 'Cisco AMP for Endpoints', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (29, 'CiscoWorks LAN Management Solution (LMS)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (30, 'Citrix Virtual Apps and Desktops', 2, '{''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (31, 'Citrix ADC CPX', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (32, 'Citrix Provisioning', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (33, 'Clarify|*', 2, '{''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (34, 'Clarity LIMS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (35, 'LabWare LIMS', 2, '{''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (36, 'Cognos', 2, '{''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (37, 'Coldfusion', 2, '{''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (38, 'ConceptWave', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (39, 'CONNAPI', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (40, 'Connect Direct', 2, '{''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (41, 'Cornerstone software', 2, '{''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (42, 'Crystal Reports', 2, '{''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (43, 'DB2', 2, '{''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (44, 'Documentum Content Server', 2, '{''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (45, 'Drupal', 2, '{''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (46, 'Eclipse|*', 2, '{''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (47, 'Elastic (ELK) Stack', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (48, 'ETAP License Manager (LM)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (49, 'ExamDiff', 2, '{''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (50, 'F5 Secure Web Gateway Services', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (51, 'FileMaker Pro', 2, '{''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (52, 'FlexNet Manager Suite', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (53, 'FTP Voyager', 2, '{''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (54, 'Genymotion', 2, '{''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (55, 'Google Chrome', 2, '{''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (56, 'Greenplum DB', 2, '{''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (57, 'Hadoop', 2, '{''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (58, 'HP aC++ compiler', 2, '{''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (59, 'HP C/ANSI C compiler', 2, '{''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (60, 'HP Operations Orchestration (HPOO)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (61, 'HP Server Automation (HPSA)', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (62, 'IBM BigFix Platform|*', 2, '{''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (63, 'IBM Business Monitor', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (64, 'IBM Business Process Manager', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (65, 'IBM Content Manager OnDemand (CMOD)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (66, 'IBM FileNet P8 Platform', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (67, 'IBM InfoSphere DataStage', 2, '{''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (68, 'IBM Integration Bus|*', 2, '{''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (69, 'IBM License Metric Tool', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (70, 'IBM Maximo', 2, '{''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (71, 'IBM Migration Utility', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (72, 'IBM Mobile Foundation', 2, '{''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (73, 'IBM Operational Decision Manager (ODM)', 2, '{''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (76, 'IBM Tivoli Composite Application Manager', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (77, 'IBM Tivoli Monitoring', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (79, 'IBM Tivoli Workload Scheduler (TWS)', 2, '{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (80, 'IBM WebSphere Business Integration Adaptor', 2, '{''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (81, 'IBM Websphere MQ', 2, '{''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (82, 'IBM WebSphere MQ Telemetry', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (83, 'IBM WebSphere Transformation Extender (WTX)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (84, 'IMS DB', 2, '{''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (85, 'Info-ZIP', 2, '{''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (86, 'Infobright Community Edition (ICE)', 2, '{''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (87, 'Informatica PowerCenter', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (88, 'Ingres', 2, '{''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (89, 'JBoss|JBoss Enterprise Service Bus', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (90, 'Jenkins', 2, '{''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (91, 'joinIT', 2, '{}', 'N', 'N', 'Y*', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (92, 'LifeFlow', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (93, 'Lotus Notes', 2, '{''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (94, 'MaaS360', 2, '{''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (95, 'Malwarebytes Anti-Malware', 2, '{''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (96, 'ManageEngine ADSelfService Plus', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (97, 'MarkLogic DB', 2, '{''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (98, 'Memcached', 2, '{''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (99, 'Microsoft Access', 2, '{''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (100, 'Microsoft BizTalk Adapters for Host Systems', 2, '{''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (101, 'Microsoft Dynamics AX', 2, '{''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (102, 'Microsoft Endpoint Configuration Manager (SCCM)', 2, '{''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (103, 'Microsoft Excel', 2, '{''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (104, 'Microsoft Exchange Server|*', 2, '{''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (105, 'Microsoft Forefront Identity Manager (FIM)', 2, '{''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (106, 'Microsoft InfoPath', 2, '{''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (107, 'Microsoft Internet Explorer', 2, '{''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (108, 'Microsoft ISA Server', 2, '{''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (109, 'Microsoft MQ', 2, '{''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (110, 'Microsoft System Center Endpoint Protection', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (111, 'Microsoft Visual Studio', 2, '{''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (112, 'Microsoft Web Deploy', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (113, 'Microsoft Web Farm Framework (WFF)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (114, 'Microsoft Web Platform Installer', 2, '{''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (115, 'Model Driven Workflow (MDW)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (116, 'MongoDB', 2, '{''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (117, 'Mozilla Firefox', 2, '{''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (118, 'MQ Client', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (119, 'MS Office 365', 2, '{''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (121, 'MS SQL Server Compact', 2, '{''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (122, 'MySQL', 2, '{''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (123, 'Neo4j', 2, '{''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (124, 'Nexus Repository OSS', 2, '{}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (125, 'Nix package manager', 2, '{''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (126, 'OpenLDAP', 2, '{''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (127, 'OpenText Exstream', 2, '{''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (128, 'OpenVPN', 2, '{''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (129, 'Oracle Access Management', 2, '{''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (130, 'Oracle ADF', 2, '{''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (131, 'Oracle APEX', 2, '{''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (132, 'Oracle BI Publisher', 2, '{''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (133, 'Oracle Business Intelligence', 2, '{''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (134, 'Oracle Database|*', 2, '{''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (135, 'Oracle Designer', 2, '{''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (136, 'Oracle Enterprise Manager', 2, '{''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (137, 'Oracle Forms', 2, '{''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (138, 'Oracle Hyperion|Hyperion Interactive Reporting', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (139, 'Oracle Hyperion|Hyperion Planning', 2, '{''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (140, 'Oracle Net Services', 2, '{''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (141, 'Oracle Real Application Clusters (RAC)', 2, '{''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (142, 'Oracle Retail Point-of-Service', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (143, 'Oracle Service Bus', 2, '{''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (144, 'Oracle Smart View', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (145, 'Oracle SOA Suite', 2, '{''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (146, 'Oracle SQL Developer', 2, '{''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (147, 'Oracle TimesTen In-Memory Database', 2, '{''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (148, 'Oracle Warehouse Builder (OWB)', 2, '{''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (149, 'Orbix', 2, '{''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (150, 'Pentaho', 2, '{''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (151, 'PeopleSoft', 2, '{''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (152, 'Perkin Elmer Informatics (PKI)', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (153, 'Pervasive PSQL', 2, '{''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (154, 'PIPE-FLO', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (155, 'PKZIP', 2, '{''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (156, 'Planview', 2, '{''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (157, 'PostgreSQL', 2, '{''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (158, 'Powerbuilder', 2, '{''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (159, 'Primavera P6', 2, '{''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (160, 'Pro*COBOL', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (161, 'ProjectWise', 2, '{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (162, 'ProjectWise Web Server', 2, '{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (163, 'PVCS Version Manager', 2, '{''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (164, 'QlikView', 2, '{''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (165, 'RabbitMQ', 2, '{''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (166, 'Rational ClearCase', 2, '{''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (167, 'Rational ClearQuest', 2, '{''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (168, 'Redis', 2, '{''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (169, 'Remedy', 2, '{''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (170, 'Riak', 2, '{''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (171, 'RightFax', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (172, 'Rumba', 2, '{''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (173, 'SAP BusinessObjects BI server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (174, 'SAP ERP|*', 2, '{''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (175, 'SAP HANA DB', 2, '{''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (176, 'SAP MaxDB', 2, '{''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (177, 'SAP NetWeaver Business Warehouse', 2, '{''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (178, 'SAP SQL Anywhere', 2, '{''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (179, 'SAP Web Dynpro', 2, '{''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (180, 'Sentry', 2, '{''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (182, 'Siebel', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (183, 'SNA Manager', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (184, 'SnagIt', 2, '{''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (185, 'solidDB', 2, '{''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (186, 'SonarQube', 2, '{''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube''}', 'N', 'Y', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (187, 'SpaceMonger', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (188, 'Splunk', 2, '{''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (189, 'SQLIO', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (190, 'Sybase SQL Server|*', 2, '{''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (191, 'Syncsort', 2, '{''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (193, 'Sysinternal Tools|*', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (194, 'Sysinternal Tools|AccessEnum', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (195, 'Sysinternal Tools|ClockRes', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (196, 'Sysinternal Tools|Coreinfo', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (197, 'Sysinternal Tools|DiskExt', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (198, 'Sysinternal Tools|DiskMon', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (199, 'Sysinternal Tools|Hex2dec', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (200, 'Sysinternal Tools|Junction', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (201, 'Sysinternal Tools|LDMDump', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (202, 'Sysinternal Tools|LoadOrder', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (203, 'Sysinternal Tools|PipeList', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (204, 'Sysinternal Tools|Process Explorer', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (205, 'Sysinternal Tools|PsKill', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (206, 'Sysinternal Tools|PsPasswd', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (207, 'Sysinternal Tools|SDelete', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (208, 'Sysinternal Tools|ShareEnum', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (209, 'Sysinternal Tools|Sync', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (210, 'Sysinternal Tools|TCPView', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (211, 'Sysinternal Tools|VMMap', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (212, 'Sysinternal Tools|Whois', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (213, 'Tableau', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (214, 'TCPLink Enterprise Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (215, 'Teradata', 2, '{''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (216, 'Teradata QS Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (217, 'TIBCO Business Works (BW)|*', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (218, 'TIBCO InConcert', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (219, 'TIBCO Rendezvous', 2, '{''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (220, 'Tivoli Access Manager (TAM)', 2, '{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (221, 'TortoiseCVS', 2, '{''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (222, 'TortoiseSVN', 2, '{''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (223, 'TSO/ISPF', 2, '{''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (224, 'TWS zCentric', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (225, 'Uniface', 2, '{''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (226, 'ViewNow X Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (227, 'Virtual I/O Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (228, 'Visibroker', 2, '{''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (229, 'VMware Solution Exchange Marketplace (VSX)', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (230, 'VMware Tools', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (231, 'VMware vCenter', 2, '{''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (232, 'WebFOCUS', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (233, 'WebLogic Integration', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (234, 'WebSphere Commerce Suite (WCS)', 2, '{''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (235, 'WebSphere Message Broker', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (236, 'Wherescape Red', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (237, 'Windchill', 2, '{''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (238, 'Windows Indexing Service', 2, '{''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (239, 'Windows Terminal Server (WTS)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (240, 'WingArc SVF', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (241, 'WinMerge', 2, '{''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (242, 'WinRAR', 2, '{''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (243, 'WinSCP', 2, '{''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (244, 'Wise Package Studio', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (245, 'Wordpress', 2, '{''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (246, 'XAMPP', 2, '{''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (247, 'ZAP BI', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (248, 'ZeroMQ', 2, '{''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (249, 'Zerto Virtual Replication', 2, '{''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (250, 'IBM PowerHA', 2, '{''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (251, 'Tivoli Netcool/OMNIbus', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (252, 'IBM ILOG Views', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (253, 'IBM ILOG CPLEX', 2, '{''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (254, 'IBM ILOG Jviews', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (255, 'IBM ILOG Elixir', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (256, 'IBM ILOG Supply Chain Apps', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (257, 'ILOG Solver', 2, '{''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (258, 'SQLite', 2, '{''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (259, 'Apache HTTP Server', 8, '{''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (260, 'Apache Tomcat', 8, '{''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (261, 'ArcGIS Server', 8, '{''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (263, 'GlassFish', 8, '{''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (264, 'HAProxy', 8, '{''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (265, 'IBM HTTP Server', 8, '{''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (268, 'JBoss|*', 8, '{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (269, 'Kitura', 8, '{''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (270, 'Lotus Domino', 8, '{''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (271, 'Lucee', 8, '{''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (272, 'Netscape Application Server (NAS)', 8, '{''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (273, 'Netscape Enterprise Server (NES)', 8, '{''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (274, 'Nginx', 8, '{''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (276, 'Oracle WebCenter Content Server|*', 8, '{''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (277, 'Pivotal tc Server', 8, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (278, 'Resin Web Server', 8, '{''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (279, 'SAP NetWeaver App Server|*', 8, '{''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (280, 'Spark', 8, '{''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (281, 'Oracle iPlanet Web Server', 8, '{''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (282, 'UltiDev Web Server Pro (UWS)', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (283, 'webMethods Integration Server', 8, '{''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (284, 'Websphere Application Server (WAS)', 8, '{''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (285, 'WebSphere Liberty', 8, '{''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (286, 'WebSphere Portal Server', 8, '{''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (287, 'Websphere Process Server', 8, '{''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (289, 'Oracle Real-Time Decisions (RTD)', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (290, 'CA API Gateway', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (291, 'Citrix ADC SDX', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (292, 'Citrix ADC MPX', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (293, 'HP Nonstop', 4, '{''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (294, 'IBM DataPower Gateway', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (295, 'IBM Power Systems', 4, '{''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (296, 'Intel Xeon Processor', 4, '{''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (297, 'Net Optics Taps', 4, '{''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (298, 'Oracle Exadata', 4, '{''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (299, 'AutoIt', 9, '{''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (300, 'AWK', 9, '{''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (301, 'BASIC', 9, '{''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (302, 'Brainscript', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (303, 'C', 9, '{''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (306, 'C++|Visual C++', 9, '{''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (307, 'Cascading Style Sheets (CSS)|*', 9, '{''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (308, 'Clipper', 9, '{''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (309, 'CLIST', 9, '{''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (311, 'ColdFusion Markup Language (CFML)', 9, '{''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (312, 'Data Language Interface (DL/I)', 9, '{''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (313, 'Delphi', 9, '{''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (314, 'Easytrieve', 9, '{''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (315, 'Expect', 9, '{''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (316, 'eXtensible HyperText Markup Language (XHTML)', 9, '{''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (318, 'Extensible Markup Language (XML)|MSXML', 9, '{''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (319, 'Extensible Stylesheet Language (XSL)', 9, '{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (320, 'Extensible Stylesheet Language Transformations (XLST)', 9, '{''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (321, 'FOCUS', 9, '{''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (322, 'Fortran', 9, '{''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (323, 'Go', 9, '{''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (324, 'GraphQL', 9, '{''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (325, 'Groovy', 9, '{''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (326, 'HiveQL', 9, '{}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (327, 'Hypertext Markup Language (HTML)', 9, '{''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (328, 'IBM High Level Assembler (HLASM)', 9, '{''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (329, 'IBM i Control Language (CL)', 9, '{''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (330, 'IBM Informix-4GL', 9, '{''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (333, 'Java|Java Enterprise Edition (Java EE)', 9, '{''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (334, 'Java|Java Standard Edition (Java SE)', 9, '{''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (335, 'Java|JavaServer Pages (JSP)', 9, '{''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (336, 'Java|JavaServer Pages (JSP)|Scriptlets', 9, '{''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (338, 'JCL', 9, '{''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (339, 'Job Information Language (JIL)', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (340, 'JScript', 9, '{''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (341, 'Lisp', 9, '{''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (342, 'Niakwa Programming Language (NPL)', 9, '{''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (343, 'Objective C', 9, '{''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (344, 'OpenEdge ABL', 9, '{''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (346, 'Pascal|Object Pascal', 9, '{''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (348, 'Perl|ActivePerl', 9, '{''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (349, 'Perl|Rex', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (351, 'PL/I', 9, '{''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (352, 'PL/SQL', 9, '{''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (353, 'PRO*C', 9, '{''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (355, 'R', 9, '{''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (356, 'Rexx', 9, '{''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (357, 'RPG', 9, '{''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (359, 'Salesforce Object Query Language (SOQL)', 9, '{}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (360, 'SAS', 9, '{''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (361, 'Sass', 9, '{''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (362, 'Scala', 9, '{''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (363, 'Smalltalk', 9, '{''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (364, 'Swift', 9, '{''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (365, 'TCL', 9, '{''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (366, 'Transact-SQL', 9, '{''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (367, 'TypeScript', 9, '{''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (368, 'VB.NET', 9, '{''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (369, 'VBScript', 9, '{''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (370, 'Visual Basic', 9, '{''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (371, 'Visual Basic for Applications (VBA)', 9, '{''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (372, 'Visual FoxPro', 9, '{''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (373, 'VoiceXML', 9, '{''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (374, 'Xbase++', 9, '{''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (375, 'Apache Lucene', 12, '{''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (376, 'Apache Xerces', 12, '{''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (377, 'Cascading Style Sheets (CSS)|Bootstrap', 12, '{''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (378, 'Java|Apache Camel', 12, '{''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (379, 'Java|Apache Commons BeanUtils', 12, '{''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (380, 'Java|Apache PDFBox', 12, '{''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (381, 'Java|Apache Velocity', 12, '{''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (382, 'Java|EclipseLink', 12, '{''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (383, 'Java|Enterprise JavaBeans (EJB)', 12, '{''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (384, 'Java|EZMorph', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (385, 'Java|Google Web Toolkit (GWT)', 12, '{''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (386, 'Java|Hibernate', 12, '{''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (387, 'Java|IBM SDK', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (388, 'Java|Java Development Kit (JDK)', 12, '{''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (389, 'Java|Java Message Service (JMS)', 12, '{''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (390, 'Java|Java Web Start', 12, '{''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (391, 'Java|JavaServer Faces (JSF)', 12, '{''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (392, 'Java|JDBC', 12, '{''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (393, 'Java|JRuby Core', 12, '{''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (394, 'Java|Log4j', 12, '{''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (395, 'Java|Quartz', 12, '{''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (396, 'Java|Remote Method Invocation (RMI)', 12, '{''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (397, 'Java|Servlet', 12, '{''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (398, 'Java|Spring', 12, '{''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (399, 'Java|Spring|Spring Boot', 12, '{''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (400, 'Java|Spring|Spring Cloud Data Flow', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (401, 'Java|Spring|Spring MVC', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (402, 'Java|Struts', 12, '{''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (403, 'Java|Swing', 12, '{''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (404, 'Java|Vaadin', 12, '{''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (405, 'JavaScript|AJAX', 12, '{''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (406, 'JavaScript|AngularJS', 12, '{''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (407, 'JavaScript|Draw2D', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (408, 'JavaScript|Express.js', 12, '{''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (409, 'JavaScript|Ext JS', 12, '{''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (410, 'JavaScript|jqGrid', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (411, 'JavaScript|JQuery', 12, '{''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (412, 'JavaScript|Jquery|jQuery UI', 12, '{''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (413, 'JavaScript|React', 12, '{''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (414, 'JavaScript|script.aculo.us', 12, '{''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (415, 'JavaScript|Valums AJAX File Uploader', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (416, 'OWASP Enterprise Security API (ESAPI)', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (417, 'Perl|Oraperl', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (418, 'Android', 6, '{''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (419, 'BeOS', 6, '{''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (420, 'Cisco IOS', 6, '{''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (421, 'DART', 6, '{''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (422, 'Fabric OS', 6, '{''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (423, 'GNU', 6, '{''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (424, 'IBM i', 6, '{''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (425, 'iOS', 6, '{''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (427, 'Linux|CentOS', 6, '{''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (428, 'Linux|Check Point', 6, '{''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (429, 'Linux|Debian', 6, '{''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (430, 'Linux|Junos OS', 6, '{''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (431, 'Linux|openSUSE', 6, '{''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (432, 'Linux|Oracle Linux', 6, '{''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (433, 'Linux|Photon OS', 6, '{''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (434, 'Linux|Red Hat Enterprise Linux', 6, '{''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (435, 'Linux|SUSE Linux Enterprise Server', 6, '{''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (436, 'Linux|Ubuntu', 6, '{''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (437, 'Linux|zLinux', 6, '{''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (438, 'macOS', 6, '{''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (440, 'MVS|OS/390', 6, '{''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (441, 'MVS|z/OS', 6, '{''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (442, 'OpenVMS', 6, '{''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (443, 'OS/2', 6, '{''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (445, 'Unix|AIX', 6, '{''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (447, 'Unix|BSD|FreeBSD', 6, '{''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (448, 'Unix|BSD|SunOS', 6, '{''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (449, 'Unix|HP-UX', 6, '{''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (451, 'Windows|Windows Desktop', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (452, 'Windows|Windows Server', 6, '{''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (453, 'Linux|Fedora', 6, '{''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (454, 'Linux|Amazon Linux', 6, '{''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (455, 'Clarify|Clear Basic', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (456, 'Eclipse|ATLAS Transformation Language (ATL)', 5, '{''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (457, 'IBM BigFix Platform|Client Deploy Tool', 5, '{''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (458, 'IBM Integration Bus|Extended Structured Query Language (ESQL)', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (459, 'IBM Tivoli Asset Management|Asset Discovery for Distributed', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (460, 'IBM Tivoli Storage Manager|TSM API', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (461, 'IBM Tivoli Storage Manager|TSM Client', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (462, 'IBM Tivoli Storage Manager|TSM Storage Agent', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (463, 'IBM Tivoli Storage Manager|VSS Requestor', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (464, 'Microsoft Exchange Server|Veeam Explorer', 5, '{''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (465, 'MS SQL Server|MS SQL Server Browser', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (466, 'MS SQL Server|Data Transformation Services', 5, '{''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (467, 'MS SQL Server|Log Reader Agent', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (468, 'MS SQL Server|SQL Server Analysis Services (SSAS)', 5, '{''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (469, 'MS SQL Server|SQL Server Database Engine', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (470, 'MS SQL Server|SQL Server Integration Services (SSIS)', 5, '{''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (471, 'MS SQL Server|SQL Server Management Studio', 5, '{''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (472, 'MS SQL Server|SQL Server Report Builder', 5, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (473, 'MS SQL Server|SQL Server Reporting Services (SSRS)', 5, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (474, 'Oracle Database|Jserver', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (475, 'Oracle Database|Oracle Spatial and Graph', 5, '{''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (476, 'SAP ERP|SAP EHP', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (477, 'SAP ERP|SAP Kernel', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (478, 'Oracle Database|SQL*Plus', 5, '{''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (479, 'Sybase SQL Server|Sybase Central', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (480, 'Sybase SQL Server|Sybase Dsedit', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (481, 'TIBCO Business Works (BW)|Integration Manager', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (482, '.NET Framework|Common Runtime Library', 7, '{''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (483, '.NET Framework|log4net', 7, '{''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (484, '.NET Framework|Magick.NET', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (485, '.NET Framework|Windows Communication Foundation (WCF)', 7, '{''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (486, '.NET Framework|Windows Workflow Foundation (WF)', 7, '{''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (487, '.NET Framework|WinForms', 7, '{''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (488, 'ActiveX|ADO', 7, '{''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (489, 'IIS|Easy Migration Tool (IEMT)', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (490, 'IIS|Application Request Routing (ARR)', 7, '{''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (491, 'IIS|IIS Manager', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (492, 'JBoss|JBoss Seam', 7, '{''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (493, 'JBoss|Wildfly', 7, '{''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (494, 'Oracle Application Server|Oracle Transparent Gateway', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (495, 'Oracle WebCenter Content Server|Idoc Script', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (496, 'SAP NetWeaver App Server|ABAP', 7, '{''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (497, '.NET Framework|*', 10, '{''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (498, 'Active Directory (AD)', 10, '{''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (500, 'ActiveX|*', 10, '{''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (501, 'Apache Cordova', 10, '{''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (502, 'CICS', 10, '{''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (503, 'Docker', 10, '{''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (504, 'Flash', 10, '{''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (505, 'HTTP File Server', 10, '{''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (506, 'Java Runtime Environment (JRE)', 10, '{''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (507, 'Node.js', 10, '{''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (508, 'Ruby on Rails', 10, '{''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (509, 'VisualForce', 10, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (510, 'EMC Celerra', 11, '{''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (511, 'Application Lifecycle Management (ALM)', 1, '{''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (512, 'Assembler Language', 1, '{''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (513, 'Batch Management Software (BMS)', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (514, 'Business Object Reports', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (515, 'Common Gateway Interface (CGI)', 1, '{''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (516, 'Compopent Object Model (COM)', 1, '{''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (517, 'Common Object Request Broker Architecture (CORBA)', 1, '{''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (518, 'CORBA Interface Definition Language (CORBA IDL)', 1, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (519, 'Data Control Language (DCL)', 1, '{''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (520, 'Database (DB)', 1, '{''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (521, 'Electronic Data Interchange (EDI)', 1, '{''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (522, 'Application Web Server', 1, '{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (523, 'Java-based Document Object Model for XML (JDOM)', 1, '{''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (524, 'Lightweight Directory Access Protocol (LDAP)', 1, '{''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (525, 'Open Database Connectivity (ODBC)', 1, '{''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (526, 'Order Management System (OMS)', 1, '{''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (527, 'Oracle Web Services', 1, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (529, 'Representational State Transfer (REST)', 1, '{''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (530, 'Service-Oriented Architecture (SOA)', 1, '{''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (531, 'Simple Object Access Protocol (SOAP)', 1, '{''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (533, 'YAML', 1, '{''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (535, 'Application Server', 1, '{''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (536, 'Cloud', 1, '{''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (537, 'Competency and Quality Assurance Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (538, 'Device Provisioning Engines (DPE)', 1, '{''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (539, 'E-business solution', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (540, 'Enterprise Service Bus(ESB)', 1, '{''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (541, 'File Server', 1, '{''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (542, 'General Ledger', 1, '{''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (543, 'HTTP client', 1, '{''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (545, 'Integrated Safe System of Work (ISSOW)', 1, '{''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (546, 'Internet Exchange Point - Full Stack (ixp-ft)', 1, '{''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (547, 'Internet Message Access Protocol (IMAP)', 1, '{''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (548, 'JSON', 1, '{''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (549, 'KVS Application Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (550, 'KVS File Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (551, 'KVS Proxy Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (552, 'mainframe', 1, '{''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (553, 'Manufacturing Execution System (MES)', 1, '{''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (554, 'Mobile', 1, '{''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (555, 'NonSQL', 1, '{''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (556, 'SaaS', 1, '{''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (557, 'Storage Area Network (SAN)', 1, '{''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (558, 'Supplier Registration System Application Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (559, 'Virtual Appliance', 1, '{''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (560, 'Webtop', 1, '{''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (561, 'Proxy Server', 1, '{''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (562, 'Utility', 1, '{''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (563, 'Citrix ADC', 3, '{''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (564, 'Citrix ADC VPX', 3, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (565, 'Citrix ADC BLX', 3, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (566, 'InterScan Messaging Security Virtual Appliance (IMSVA)', 3, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (567, 'Oracle VM', 3, '{''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (568, 'VMware ESXi', 3, '{''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (569, 'VMware Server', 3, '{''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (572, 'Structured Query Language (SQL)', 1, '{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (574, 'Model view controller (MVC)', 1, '{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (576, 'Linux|*', 6, '{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (577, 'MVS|*', 6, '{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (578, 'Unix|*', 6, '{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (579, 'Unix|BSD|*', 6, '{''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (580, 'Windows|*', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (581, 'MS SQL Server|*', 2, '{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (582, 'C#', 9, '{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (583, 'C++|*', 9, '{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (584, 'Java|*', 9, '{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (585, 'Perl|*', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (586, 'PHP', 9, '{''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (587, 'Python', 9, '{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (588, 'Ruby', 9, '{''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (589, 'JavaScript|*', 9, '{''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (590, 'Unix|BSD|OpenBSD', 6, '{''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (591, 'z/VSE', 6, '{''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (592, 'Active Server Pages (ASP)', 9, '{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (593, 'MS-DOS', 6, '{''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (594, 'COBOL', 9, '{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (595, 'VME', 6, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (596, 'Extensible Markup Language (XML)|*', 9, '{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (597, 'DOS/360', 6, '{''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (598, 'z/TPF', 6, '{''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (599, 'Pascal|*', 9, '{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (600, 'Oracle WebLogic Server', 8, '{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (601, 'Websphere ILOG JRules BRMS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (602, 'Unix|BSD|NetBSD', 6, '{''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (603, 'SharePoint', 2, '{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (604, 'IBM Tivoli Storage Manager|*', 2, '{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (605, 'IBM Spectrum Scale', 2, '{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (606, 'IBM Tivoli Asset Management|*', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (607, 'Oracle Hyperion|*', 2, '{''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (608, 'z/VM', 6, '{''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (609, 'IIS|*', 8, '{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (610, 'Oracle Application Server|*', 8, '{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (611, 'instana', 10, '{''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (612, 'credstash', 2, '{''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (613, 'Snyk', 2, '{''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (614, 'Akka', 2, '{''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (615, 'Varnish', 8, '{''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (616, 'Datadog', 10, '{''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (617, 'API', 1, '{''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (618, 'Hazelcast', 10, '{''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (619, 'Infinispan', 2, '{''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (620, 'Nuxeo', 10, '{''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (621, 'ArangoDB', 2, '{''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (622, 'Eclipse|Eclipse Che', 2, '{''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (623, 'Amazon S3', 2, '{''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (624, 'ClickHouse', 2, '{''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (625, 'MinIO', 2, '{''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (626, 'Elasticsearch', 2, '{''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (627, 'XtraDB', 2, '{''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (628, 'Keycloak', 2, '{''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (629, 'Grafana', 2, '{''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (630, 'Mattermost', 10, '{''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (631, 'Synapse', 2, '{''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (632, 'Cloud IAM', 2, '{''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (633, 'Knative', 10, '{''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (634, 'Apache Cassandra', 2, '{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (635, 'Kubeflow', 10, '{''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (636, 'Qiskit', 2, '{''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (637, 'Microsoft Azure', 2, '{''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (638, 'Strimzi', 10, '{''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (639, 'Sematext', 10, '{''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (640, 'Eclipse|Eclipse hawkBit', 2, '{''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (641, 'Eclipse|Eclipse Ditto', 2, '{''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (642, 'MariaDB', 2, '{''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (643, 'Zadara', 2, '{''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (644, 'Istio', 2, '{''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (645, 'Vault', 2, '{''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (646, 'Apache Druid', 2, '{''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (647, 'etcd', 2, '{''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (648, 'Traefik', 8, '{''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (649, 'IBM Cloud', 2, '{''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (650, 'YugabyteDB', 2, '{''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (651, 'CockroachDB', 2, '{''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (652, 'Jaeger', 10, '{''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (653, 'Natural Programming Language', 9, '{}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (654, 'AcuCOBOL', 9, '{''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (655, 'Ada', 9, '{''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (656, 'ADABAS', 2, '{''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (657, 'ADSO', 9, '{''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (659, 'Batch', 9, '{''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (660, 'Powershell', 9, '{''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (661, 'COM+', 10, '{''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (662, 'Dataflex', 9, '{''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (663, 'DDS', 9, '{''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (664, 'Forte', 9, '{''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (665, 'Foxpro', 9, '{''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (666, 'IBM DB2 Purescale', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (667, 'IDMS DB', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (668, 'IDMS DML', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (669, 'Jaguar', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (670, 'EAServer', 8, '{''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (672, 'IBM Netezza', 4, '{''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (674, 'OpenROAD', 9, '{''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (675, 'Oracle Reports', 2, '{''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (676, 'SAP Replication Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (677, 'Git', 2, '{''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (678, 'GitLab', 2, '{''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (679, 'VSAM', 2, '{''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (680, 'Cloud<>Apache HTTP Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (681, 'Cloud<>Windows Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (682, 'Cloud<>MS SQL Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (683, 'Cloud<>Azure SQL Server Database', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (684, 'Cloud<>MySQL', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (685, 'Cloud<>Oracle Database', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (686, 'Cloud<>PostgreSQL', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (687, 'Cloud<>AWS RDS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (688, 'Cloud<>SAP HANA DB', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (689, 'BMS Map', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (690, 'DB400', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (691, 'ILE', 9, '{''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (692, 'Integrated Data Store (IDS)', 2, '{''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (693, 'ISAM', 2, '{''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (694, 'Oracle RDS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (695, 'SAP IQ', 2, '{''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (696, 'Cloud<>Linux', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (697, 'Apache Maven', 2, '{''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (698, 'IBM Basic Assembly Language (BAL)', 9, '{''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762''}', 'Y', 'N', 'N', 'N'); + +-- Table: entity_mentions CREATE TABLE entity_mentions ( id integer PRIMARY KEY AUTOINCREMENT, entity_mention_name text NOT NULL, @@ -967,6865 +1040,6867 @@ CREATE TABLE entity_mentions ( FOREIGN KEY (entity_type_id) REFERENCES entity_types (id), FOREIGN KEY (entity_id) REFERENCES entities (id) ); -INSERT INTO entity_mentions VALUES(1,'DOT NET',10,497,'others'); -INSERT INTO entity_mentions VALUES(2,'.NET 4.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(3,'Dot net - FW 4',10,497,'others'); -INSERT INTO entity_mentions VALUES(4,'.Net 4.7.1 Enterprise Lib',10,497,'others'); -INSERT INTO entity_mentions VALUES(5,'.Net 3.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(6,'.NET4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(7,'.NET Framework 4.x',10,497,'others'); -INSERT INTO entity_mentions VALUES(8,'Microsoft - Microsoft .NET Framework 2',10,497,'others'); -INSERT INTO entity_mentions VALUES(9,'Microsoft - Microsoft .NET Framework 3.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(10,'.NET 3.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(11,'Dot Net Framework 3.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(12,'.NET',10,497,'others'); -INSERT INTO entity_mentions VALUES(13,'.NET 4',10,497,'others'); -INSERT INTO entity_mentions VALUES(14,'.Net 4.5.2 Enterprise Lib',10,497,'others'); -INSERT INTO entity_mentions VALUES(15,'.NET2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(16,'DOTNET',10,497,'others'); -INSERT INTO entity_mentions VALUES(17,'Microsoft .NET Release 1.1',10,497,'others'); -INSERT INTO entity_mentions VALUES(18,'.Net 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(19,'.NET 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(20,'.Net Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(21,'Microsoft .NET 4.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(22,'.net 2017',10,497,'others'); -INSERT INTO entity_mentions VALUES(23,'.Net framework',10,497,'others'); -INSERT INTO entity_mentions VALUES(24,'Microsoft .NET Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(25,'.net 4.0 Framework',10,497,'others'); -INSERT INTO entity_mentions VALUES(26,'Microsoft.NET 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(27,'.Net 4.5.2',10,497,'others'); -INSERT INTO entity_mentions VALUES(28,'.NET 4.6',10,497,'others'); -INSERT INTO entity_mentions VALUES(29,'Microsoft - Microsoft .NET Framework 4',10,497,'others'); -INSERT INTO entity_mentions VALUES(30,'.NET4.6',10,497,'others'); -INSERT INTO entity_mentions VALUES(31,'Microsoft - Microsoft .NET Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(32,'Dot Net Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(33,'Microsoft - Microsoft .NET Framework 3',10,497,'others'); -INSERT INTO entity_mentions VALUES(34,'Microsoft - Microsoft .Net Framework 1',10,497,'others'); -INSERT INTO entity_mentions VALUES(35,'Microsoft .NET Release 4.6',10,497,'others'); -INSERT INTO entity_mentions VALUES(36,'.net Framework 3.5 SP1',10,497,'others'); -INSERT INTO entity_mentions VALUES(37,'Microsoft.net',10,497,'others'); -INSERT INTO entity_mentions VALUES(38,'Microsoft .NET',10,497,'others'); -INSERT INTO entity_mentions VALUES(39,'Microsoft .NET Release 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(40,'Dot Net 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(41,'Common Runtime Library',7,482,'others'); -INSERT INTO entity_mentions VALUES(42,'APACHE LOG4NET',7,483,'others'); -INSERT INTO entity_mentions VALUES(43,'LOG4NET',7,483,'others'); -INSERT INTO entity_mentions VALUES(44,'Magik',7,484,'others'); -INSERT INTO entity_mentions VALUES(45,'Magick.NET',7,484,'others'); -INSERT INTO entity_mentions VALUES(46,'WCF',7,485,'others'); -INSERT INTO entity_mentions VALUES(47,'Windows Communication Foundation',7,485,'others'); -INSERT INTO entity_mentions VALUES(48,'Windows Communication Foundation (WCF)',7,485,'others'); -INSERT INTO entity_mentions VALUES(49,'WWF',7,486,'others'); -INSERT INTO entity_mentions VALUES(50,'Windows Workflow Foundation (WF)',7,486,'others'); -INSERT INTO entity_mentions VALUES(51,'Windows Workflow Foundation',7,486,'others'); -INSERT INTO entity_mentions VALUES(52,'WinForms',7,487,'others'); -INSERT INTO entity_mentions VALUES(53,'Ejes',2,1,'others'); -INSERT INTO entity_mentions VALUES(54,'(E)JES',2,1,'others'); -INSERT INTO entity_mentions VALUES(55,'(UNIRITA) A-AUTO 7.2.2',2,2,'others'); -INSERT INTO entity_mentions VALUES(56,'A-AUTO',2,2,'others'); -INSERT INTO entity_mentions VALUES(57,'A-Auto Job Scheduling Software',2,2,'others'); -INSERT INTO entity_mentions VALUES(58,'Active Directoy',10,498,'others'); -INSERT INTO entity_mentions VALUES(59,'Active Directory (AD)',10,498,'others'); -INSERT INTO entity_mentions VALUES(60,'Active Server Page',9,592,'others'); -INSERT INTO entity_mentions VALUES(61,'ASPNet',9,592,'others'); -INSERT INTO entity_mentions VALUES(62,'Microsoft Active Server Pages 6.0',9,592,'others'); -INSERT INTO entity_mentions VALUES(63,'APSX',9,592,'others'); -INSERT INTO entity_mentions VALUES(64,'ASP .NET',9,592,'others'); -INSERT INTO entity_mentions VALUES(65,'Microsoft Active Server Pages',9,592,'others'); -INSERT INTO entity_mentions VALUES(66,'Microsoft ASP files',9,592,'others'); -INSERT INTO entity_mentions VALUES(67,'Active Server Pages (ASP)',9,592,'others'); -INSERT INTO entity_mentions VALUES(68,'ASP',9,592,'others'); -INSERT INTO entity_mentions VALUES(69,'Classic ASP',9,592,'others'); -INSERT INTO entity_mentions VALUES(70,'Classis ASP',9,592,'others'); -INSERT INTO entity_mentions VALUES(71,'ASP 3.0',9,592,'others'); -INSERT INTO entity_mentions VALUES(72,'ASP.NET',9,592,'others'); -INSERT INTO entity_mentions VALUES(73,'ASPX',9,592,'others'); -INSERT INTO entity_mentions VALUES(74,'ASP.NET 1.0.3705',9,592,'others'); -INSERT INTO entity_mentions VALUES(75,'ActiveX',10,500,'others'); -INSERT INTO entity_mentions VALUES(76,'ADO',7,488,'others'); -INSERT INTO entity_mentions VALUES(77,'Activiti',2,3,'others'); -INSERT INTO entity_mentions VALUES(78,'Adobe Acrobat Reader',2,4,'others'); -INSERT INTO entity_mentions VALUES(79,'Acrobat Reader',2,4,'others'); -INSERT INTO entity_mentions VALUES(80,'Adobe - Adobe Acrobat Reader DC 2019',2,4,'others'); -INSERT INTO entity_mentions VALUES(81,'Adobe Acrobat Reader DC 2019',2,4,'others'); -INSERT INTO entity_mentions VALUES(82,'Android',6,418,'others'); -INSERT INTO entity_mentions VALUES(83,'Android SDK',6,418,'others'); -INSERT INTO entity_mentions VALUES(84,'Andriod',6,418,'others'); -INSERT INTO entity_mentions VALUES(85,'ansible',2,5,'others'); -INSERT INTO entity_mentions VALUES(86,'Apache ActiveMQ',2,6,'others'); -INSERT INTO entity_mentions VALUES(87,'Apache Active Queue',2,6,'others'); -INSERT INTO entity_mentions VALUES(88,'MQ Apache Active Queue',2,6,'others'); -INSERT INTO entity_mentions VALUES(89,'Cordova',10,501,'others'); -INSERT INTO entity_mentions VALUES(90,'Cordova framework',10,501,'others'); -INSERT INTO entity_mentions VALUES(91,'Apache Cordova',10,501,'others'); -INSERT INTO entity_mentions VALUES(92,'cordova-android',10,501,'others'); -INSERT INTO entity_mentions VALUES(93,'Apache Hbase',2,7,'others'); -INSERT INTO entity_mentions VALUES(94,'Hbase',2,7,'others'); -INSERT INTO entity_mentions VALUES(95,'Hive',2,8,'others'); -INSERT INTO entity_mentions VALUES(96,'Apache Hive',2,8,'others'); -INSERT INTO entity_mentions VALUES(97,'Apache HTTP Server 2.0',8,259,'others'); -INSERT INTO entity_mentions VALUES(98,'Apache HTTP Server 2.2 (Linux)',8,259,'others'); -INSERT INTO entity_mentions VALUES(99,'Apache HTTP Server 2.4 (Linux)',8,259,'others'); -INSERT INTO entity_mentions VALUES(100,'APACHE HTTP SERVER VERSION 2.2.13',8,259,'others'); -INSERT INTO entity_mentions VALUES(101,'TS-Apache HTTP Server 2.4',8,259,'others'); -INSERT INTO entity_mentions VALUES(102,'Apache',8,259,'others'); -INSERT INTO entity_mentions VALUES(103,'Apache Web Server',8,259,'others'); -INSERT INTO entity_mentions VALUES(104,'Apache 2.4',8,259,'others'); -INSERT INTO entity_mentions VALUES(105,'Apache HTTP Server 2.0 (Solaris)',8,259,'others'); -INSERT INTO entity_mentions VALUES(106,'APACHE HTTP SERVER VERSION 1.3',8,259,'others'); -INSERT INTO entity_mentions VALUES(107,'APACHE WEB SERVER VERSION 1.3.27',8,259,'others'); -INSERT INTO entity_mentions VALUES(108,'Apache WebServer',8,259,'others'); -INSERT INTO entity_mentions VALUES(109,'Apache HTTP Server 2.4',8,259,'others'); -INSERT INTO entity_mentions VALUES(110,'Apache 3',8,259,'others'); -INSERT INTO entity_mentions VALUES(111,'Apache Instance',8,259,'others'); -INSERT INTO entity_mentions VALUES(112,'Apache HTTP Server 2.0 (Linux)',8,259,'others'); -INSERT INTO entity_mentions VALUES(113,'Apache 2.4 - 32 bit',8,259,'others'); -INSERT INTO entity_mentions VALUES(114,'Apache HTTP Server 2.2',8,259,'others'); -INSERT INTO entity_mentions VALUES(115,'Apache HTTP Server',8,259,'others'); -INSERT INTO entity_mentions VALUES(116,'Apache Kafka',2,9,'others'); -INSERT INTO entity_mentions VALUES(117,'kafka',2,9,'others'); -INSERT INTO entity_mentions VALUES(118,'Apache Lucene',12,375,'others'); -INSERT INTO entity_mentions VALUES(119,'Lucene',12,375,'others'); -INSERT INTO entity_mentions VALUES(120,'ServiceMix',2,10,'others'); -INSERT INTO entity_mentions VALUES(121,'Apache ServiceMix',2,10,'others'); -INSERT INTO entity_mentions VALUES(122,'Apache Solr',2,11,'others'); -INSERT INTO entity_mentions VALUES(123,'solr',2,11,'others'); -INSERT INTO entity_mentions VALUES(124,'Subversion',2,12,'others'); -INSERT INTO entity_mentions VALUES(125,'Apache Subversion',2,12,'others'); -INSERT INTO entity_mentions VALUES(126,'Subversion software',2,12,'others'); -INSERT INTO entity_mentions VALUES(127,'Tomcat 8',8,260,'others'); -INSERT INTO entity_mentions VALUES(128,'APACHE TOMCAT VERSION 6',8,260,'others'); -INSERT INTO entity_mentions VALUES(129,'Tomcat 3',8,260,'others'); -INSERT INTO entity_mentions VALUES(130,'Apache Tomcat 6 (Linux)',8,260,'others'); -INSERT INTO entity_mentions VALUES(131,'Apache Tomcat',8,260,'others'); -INSERT INTO entity_mentions VALUES(132,'Apache Tomcat 3 (Linux)',8,260,'others'); -INSERT INTO entity_mentions VALUES(133,'tomcat',8,260,'others'); -INSERT INTO entity_mentions VALUES(134,'Tomcat 3/4/5/6/7',8,260,'others'); -INSERT INTO entity_mentions VALUES(135,'Apache Tomcat 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(136,'Apache Software Foundation - Apache Tomcat 8.5',8,260,'others'); -INSERT INTO entity_mentions VALUES(137,'Tomcat 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(138,'APACHE TOMCAT VERSION 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(139,'Tomcat 6',8,260,'others'); -INSERT INTO entity_mentions VALUES(140,'Tomcat 8.0.33',8,260,'others'); -INSERT INTO entity_mentions VALUES(141,'Tomcat 7.0',8,260,'others'); -INSERT INTO entity_mentions VALUES(142,'Tomcat 9',8,260,'others'); -INSERT INTO entity_mentions VALUES(143,'Tomcat 4',8,260,'others'); -INSERT INTO entity_mentions VALUES(144,'Apache Software Foundation - Apache Tomcat 9',8,260,'others'); -INSERT INTO entity_mentions VALUES(145,'Apache Software Foundation - Apache Tomcat 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(146,'Apache Tomcat 6',8,260,'others'); -INSERT INTO entity_mentions VALUES(147,'Apache Tomcat 8',8,260,'others'); -INSERT INTO entity_mentions VALUES(148,'Tomcat 8/9',8,260,'others'); -INSERT INTO entity_mentions VALUES(149,'Apache Tomcat 8.5.15',8,260,'others'); -INSERT INTO entity_mentions VALUES(150,'Apache Tomcat 9',8,260,'others'); -INSERT INTO entity_mentions VALUES(151,'Apache Software Foundation - Apache Tomcat 8',8,260,'others'); -INSERT INTO entity_mentions VALUES(152,'Apache Tomcat 1',8,260,'others'); -INSERT INTO entity_mentions VALUES(153,'Tomcat 5',8,260,'others'); -INSERT INTO entity_mentions VALUES(154,'Apache Tomcat 3',8,260,'others'); -INSERT INTO entity_mentions VALUES(155,'Apache Tomcat 8 (Linux)',8,260,'others'); -INSERT INTO entity_mentions VALUES(156,'APACHE TOMCAT VERSION 6.0',8,260,'others'); -INSERT INTO entity_mentions VALUES(157,'Apache Tomcat 5',8,260,'others'); -INSERT INTO entity_mentions VALUES(158,'Apache tomcat 9.0.12',8,260,'others'); -INSERT INTO entity_mentions VALUES(159,'Apache xerces',12,376,'others'); -INSERT INTO entity_mentions VALUES(160,'XERCES',12,376,'others'); -INSERT INTO entity_mentions VALUES(161,'Application Development Facility (ADF)',2,13,'others'); -INSERT INTO entity_mentions VALUES(162,'ADF',2,13,'others'); -INSERT INTO entity_mentions VALUES(163,'ADF (Application Development Facility)',2,13,'others'); -INSERT INTO entity_mentions VALUES(164,'Application Development Facility',2,13,'others'); -INSERT INTO entity_mentions VALUES(165,'ArcGIS Server 10.3.1',8,261,'others'); -INSERT INTO entity_mentions VALUES(166,'ArcGIS Server',8,261,'others'); -INSERT INTO entity_mentions VALUES(167,'Asterisk 1.8',2,14,'others'); -INSERT INTO entity_mentions VALUES(168,'Asterisk',2,14,'others'); -INSERT INTO entity_mentions VALUES(169,'AutoIt 3.3',9,299,'others'); -INSERT INTO entity_mentions VALUES(170,'AutoIt',9,299,'others'); -INSERT INTO entity_mentions VALUES(171,'AutoiIt',9,299,'others'); -INSERT INTO entity_mentions VALUES(172,'Automic - UC4',2,15,'others'); -INSERT INTO entity_mentions VALUES(173,'Automic Job Scheduler',2,15,'others'); -INSERT INTO entity_mentions VALUES(174,'Autosys',2,16,'others'); -INSERT INTO entity_mentions VALUES(175,'AWK',9,300,'others'); -INSERT INTO entity_mentions VALUES(176,'basic',9,301,'others'); -INSERT INTO entity_mentions VALUES(177,'WLS 10.2',8,600,'others'); -INSERT INTO entity_mentions VALUES(178,'BEA WebLogic Enterprise (WLE)',8,600,'others'); -INSERT INTO entity_mentions VALUES(179,'Oracle Weblogic 12.2.1.3.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(180,'Oracle Weblogic 12c',8,600,'others'); -INSERT INTO entity_mentions VALUES(181,'Oracle Weblogic 12.2.1.2.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(182,'BEA WLS',8,600,'others'); -INSERT INTO entity_mentions VALUES(183,'Weblogic 9.2.0.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(184,'BEA WebLogic Server',8,600,'others'); -INSERT INTO entity_mentions VALUES(185,'Weblogic 12c',8,600,'others'); -INSERT INTO entity_mentions VALUES(186,'Oracle WebLogic Server 12',8,600,'others'); -INSERT INTO entity_mentions VALUES(187,'Weblogic 10.1 MP1',8,600,'others'); -INSERT INTO entity_mentions VALUES(188,'BEA WebLogic Server 8',8,600,'others'); -INSERT INTO entity_mentions VALUES(189,'Oracle WebLogic Server',8,600,'others'); -INSERT INTO entity_mentions VALUES(190,'WEBLOGIC-SERVER',8,600,'others'); -INSERT INTO entity_mentions VALUES(191,'Weblogic 12.2.1.2',8,600,'others'); -INSERT INTO entity_mentions VALUES(192,'Oracle WebLogic Server 12 (Linux)',8,600,'others'); -INSERT INTO entity_mentions VALUES(193,'Weblogic 12.2.1.3.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(194,'WLE',8,600,'others'); -INSERT INTO entity_mentions VALUES(195,'Weblogic 10.3.0.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(196,'Weblogic 12.1.3.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(197,'Weblogic',8,600,'others'); -INSERT INTO entity_mentions VALUES(198,'Oracle WebLogic Server 10',8,600,'others'); -INSERT INTO entity_mentions VALUES(199,'ORACLE WEBLOGIC SERVER 10.3',8,600,'others'); -INSERT INTO entity_mentions VALUES(200,'Weblogic Server',8,600,'others'); -INSERT INTO entity_mentions VALUES(201,'Oracle Weblogic 8.1.1',8,600,'others'); -INSERT INTO entity_mentions VALUES(202,'Web Logic',8,600,'others'); -INSERT INTO entity_mentions VALUES(203,'Oracle Weblogic 12.x',8,600,'others'); -INSERT INTO entity_mentions VALUES(204,'BEA WEBLOGIC SERVER VERSION 7',8,600,'others'); -INSERT INTO entity_mentions VALUES(205,'Oracle Weblogic Server 12c',8,600,'others'); -INSERT INTO entity_mentions VALUES(206,'Weblogic 10.3.6.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(207,'Oracle Weblogic 12.1.2',8,600,'others'); -INSERT INTO entity_mentions VALUES(208,'BEA WLE',8,600,'others'); -INSERT INTO entity_mentions VALUES(209,'WLS 10',8,600,'others'); -INSERT INTO entity_mentions VALUES(210,'WLS',8,600,'others'); -INSERT INTO entity_mentions VALUES(211,'WebLogic',8,600,'others'); -INSERT INTO entity_mentions VALUES(212,'ORACLE WEBLOGIC SERVER VERSION 10.3',8,600,'others'); -INSERT INTO entity_mentions VALUES(213,'Weblogic 12.2.1.1',8,600,'others'); -INSERT INTO entity_mentions VALUES(214,'BEA Weblogic',8,600,'others'); -INSERT INTO entity_mentions VALUES(215,'Oracle Weblogic 12.1',8,600,'others'); -INSERT INTO entity_mentions VALUES(216,'Weblogic 10',8,600,'others'); -INSERT INTO entity_mentions VALUES(217,'BeOS',6,419,'others'); -INSERT INTO entity_mentions VALUES(218,'Bluebeam Q',2,17,'others'); -INSERT INTO entity_mentions VALUES(219,'BMC Control-M CM For SAP 6.2',2,18,'others'); -INSERT INTO entity_mentions VALUES(220,'BMC Control-M',2,18,'others'); -INSERT INTO entity_mentions VALUES(221,'BMC Identity Management',2,19,'others'); -INSERT INTO entity_mentions VALUES(222,'IDM-BMC Identity Management',2,19,'others'); -INSERT INTO entity_mentions VALUES(223,'Borland Database Engine',2,20,'others'); -INSERT INTO entity_mentions VALUES(224,'Borland - BDE Administrator 1',2,20,'others'); -INSERT INTO entity_mentions VALUES(225,'Borland Database Engine (BDE)',2,20,'others'); -INSERT INTO entity_mentions VALUES(226,'Borland - BDE Administrator 5.2',2,20,'others'); -INSERT INTO entity_mentions VALUES(227,'brain script',9,302,'others'); -INSERT INTO entity_mentions VALUES(228,'BRAINScript',9,302,'others'); -INSERT INTO entity_mentions VALUES(229,'Business Intelligence and Reporting Tools',2,21,'others'); -INSERT INTO entity_mentions VALUES(230,'Actuate Report Server',2,21,'others'); -INSERT INTO entity_mentions VALUES(231,'BIRT',2,21,'others'); -INSERT INTO entity_mentions VALUES(232,'Business Intelligence and Reporting Tools (BIRT)',2,21,'others'); -INSERT INTO entity_mentions VALUES(233,'C',9,303,'others'); -INSERT INTO entity_mentions VALUES(234,'CSHARP',9,582,'others'); -INSERT INTO entity_mentions VALUES(235,'C# 3.0',9,582,'others'); -INSERT INTO entity_mentions VALUES(236,'C#',9,582,'others'); -INSERT INTO entity_mentions VALUES(237,'c-sharp',9,582,'others'); -INSERT INTO entity_mentions VALUES(238,'C+',9,583,'others'); -INSERT INTO entity_mentions VALUES(239,'C++',9,583,'others'); -INSERT INTO entity_mentions VALUES(240,'vc++',9,306,'others'); -INSERT INTO entity_mentions VALUES(241,'MSVC',9,306,'others'); -INSERT INTO entity_mentions VALUES(242,'Visual C++ 2008',9,306,'others'); -INSERT INTO entity_mentions VALUES(243,'Microsoft Visual C++',9,306,'others'); -INSERT INTO entity_mentions VALUES(244,'Visual C++',9,306,'others'); -INSERT INTO entity_mentions VALUES(245,'Microsoft - Microsoft Visual C++ 2008 Redistributable (x64) 9',9,306,'others'); -INSERT INTO entity_mentions VALUES(246,'vc',9,306,'others'); -INSERT INTO entity_mentions VALUES(247,'CA API Gateway',4,290,'others'); -INSERT INTO entity_mentions VALUES(248,'CA Gen 8',2,22,'others'); -INSERT INTO entity_mentions VALUES(249,'CA Gen',2,22,'others'); -INSERT INTO entity_mentions VALUES(250,'CA Technologies - Computer Associates Introscope 8.2',2,23,'others'); -INSERT INTO entity_mentions VALUES(251,'Introscope',2,23,'others'); -INSERT INTO entity_mentions VALUES(252,'CA Technologies - Computer Associates Introscope',2,23,'others'); -INSERT INTO entity_mentions VALUES(253,'CA Introscope',2,23,'others'); -INSERT INTO entity_mentions VALUES(254,'CA-Panvalet',2,24,'others'); -INSERT INTO entity_mentions VALUES(255,'Panvalet',2,24,'others'); -INSERT INTO entity_mentions VALUES(256,'Telon',2,25,'others'); -INSERT INTO entity_mentions VALUES(257,'CA-TELON',2,25,'others'); -INSERT INTO entity_mentions VALUES(258,'CSS 3',9,307,'others'); -INSERT INTO entity_mentions VALUES(259,'Style Sheet',9,307,'others'); -INSERT INTO entity_mentions VALUES(260,'Cascading Style Sheets',9,307,'others'); -INSERT INTO entity_mentions VALUES(261,'Cascading Style Sheets (CSS)',9,307,'others'); -INSERT INTO entity_mentions VALUES(262,'CSS',9,307,'others'); -INSERT INTO entity_mentions VALUES(263,'Bootstrap',12,377,'others'); -INSERT INTO entity_mentions VALUES(264,'Casegen',2,26,'others'); -INSERT INTO entity_mentions VALUES(265,'Chef Automate',2,27,'others'); -INSERT INTO entity_mentions VALUES(266,'CICS',10,502,'others'); -INSERT INTO entity_mentions VALUES(267,'Cisco AMP for Endpoints',2,28,'others'); -INSERT INTO entity_mentions VALUES(268,'Cisco Systems Inc. - Cisco AMP for Endpoints Connector 6.1',2,28,'others'); -INSERT INTO entity_mentions VALUES(269,'Cisco IOS',6,420,'others'); -INSERT INTO entity_mentions VALUES(270,'CiscoWorks',2,29,'others'); -INSERT INTO entity_mentions VALUES(271,'CISCO CISCOWORKS',2,29,'others'); -INSERT INTO entity_mentions VALUES(272,'CiscoWorks LAN Management Solution (LMS)',2,29,'others'); -INSERT INTO entity_mentions VALUES(273,'CiscoWorks LAN Management Solution',2,29,'others'); -INSERT INTO entity_mentions VALUES(274,'WinFrame',2,30,'others'); -INSERT INTO entity_mentions VALUES(275,'Citrix Virtual Apps',2,30,'others'); -INSERT INTO entity_mentions VALUES(276,'Citrix Managed Desktops',2,30,'others'); -INSERT INTO entity_mentions VALUES(277,'METAFRAME',2,30,'others'); -INSERT INTO entity_mentions VALUES(278,'XenApp',2,30,'others'); -INSERT INTO entity_mentions VALUES(279,'Citrix Metaframe',2,30,'others'); -INSERT INTO entity_mentions VALUES(280,'Citrix Server',2,30,'others'); -INSERT INTO entity_mentions VALUES(281,'Citrix Virtual Apps and Desktops',2,30,'others'); -INSERT INTO entity_mentions VALUES(282,'Presentation Server',2,30,'others'); -INSERT INTO entity_mentions VALUES(283,'NETSCALER-1.5',3,563,'others'); -INSERT INTO entity_mentions VALUES(284,'NETSCALER-11.',3,563,'others'); -INSERT INTO entity_mentions VALUES(285,'Citrix SD-WAN',3,563,'others'); -INSERT INTO entity_mentions VALUES(286,'NetScaler SD-WAN',3,563,'others'); -INSERT INTO entity_mentions VALUES(287,'Citrix NetScaler ADC',3,563,'others'); -INSERT INTO entity_mentions VALUES(288,'Citrix ADC',3,563,'others'); -INSERT INTO entity_mentions VALUES(289,'NetScaler ADC',3,563,'others'); -INSERT INTO entity_mentions VALUES(290,'NetScaler ADC VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(291,'Citrix ADC VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(292,'NetScaler VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(293,'Citrix NetScaler VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(294,'Citrix ADC BLX',3,565,'others'); -INSERT INTO entity_mentions VALUES(295,'NetScaler CPX',2,31,'others'); -INSERT INTO entity_mentions VALUES(296,'Citrix ADC CPX',2,31,'others'); -INSERT INTO entity_mentions VALUES(297,'Citrix ADC SDX',4,291,'others'); -INSERT INTO entity_mentions VALUES(298,'NetScaler SDX',4,291,'others'); -INSERT INTO entity_mentions VALUES(299,'Citrix ADC MPX',4,292,'others'); -INSERT INTO entity_mentions VALUES(300,'NetScaler MPX',4,292,'others'); -INSERT INTO entity_mentions VALUES(301,'Citrix Provisioning',2,32,'others'); -INSERT INTO entity_mentions VALUES(302,'Citrix Provisioning 2006',2,32,'others'); -INSERT INTO entity_mentions VALUES(303,'Citrix Provisioning Services',2,32,'others'); -INSERT INTO entity_mentions VALUES(304,'Provisioning Services 7.15.8',2,32,'others'); -INSERT INTO entity_mentions VALUES(305,'Citrix PVS',2,32,'others'); -INSERT INTO entity_mentions VALUES(306,'Clarify',2,33,'others'); -INSERT INTO entity_mentions VALUES(307,'Clear Basic',5,455,'others'); -INSERT INTO entity_mentions VALUES(308,'Clarify ClearBasic',5,455,'others'); -INSERT INTO entity_mentions VALUES(309,'Clarity LIMS',2,34,'others'); -INSERT INTO entity_mentions VALUES(310,'LabWare LIMS',2,35,'others'); -INSERT INTO entity_mentions VALUES(311,'Clipper',9,308,'others'); -INSERT INTO entity_mentions VALUES(312,'CLISTS',9,309,'others'); -INSERT INTO entity_mentions VALUES(313,'CLIST',9,309,'others'); -INSERT INTO entity_mentions VALUES(314,'COBOL II',9,594,'others'); -INSERT INTO entity_mentions VALUES(315,'COBOL',9,594,'others'); -INSERT INTO entity_mentions VALUES(316,'Cobol Assembler',9,594,'others'); -INSERT INTO entity_mentions VALUES(317,'IBM COGNOS BUSINESS INTELLIGENCE SERVER VERSION 10.2',2,36,'others'); -INSERT INTO entity_mentions VALUES(318,'IBM - COGNOS',2,36,'others'); -INSERT INTO entity_mentions VALUES(319,'IBM Cognos',2,36,'others'); -INSERT INTO entity_mentions VALUES(320,'Cognos',2,36,'others'); -INSERT INTO entity_mentions VALUES(321,'IBM Cognos ICM',2,36,'others'); -INSERT INTO entity_mentions VALUES(322,'Cold Fusion',2,37,'others'); -INSERT INTO entity_mentions VALUES(323,'Coldfusion Webserver',2,37,'others'); -INSERT INTO entity_mentions VALUES(324,'Coldfusion',2,37,'others'); -INSERT INTO entity_mentions VALUES(325,'ColdFus',2,37,'others'); -INSERT INTO entity_mentions VALUES(326,'CFML',9,311,'others'); -INSERT INTO entity_mentions VALUES(327,'ColdFusion Markup Language',9,311,'others'); -INSERT INTO entity_mentions VALUES(328,'ColdFusion Markup Language (CFML)',9,311,'others'); -INSERT INTO entity_mentions VALUES(329,'ConceptWave',2,38,'others'); -INSERT INTO entity_mentions VALUES(330,'CONNAPI',2,39,'others'); -INSERT INTO entity_mentions VALUES(331,'Sterling Connect',2,40,'others'); -INSERT INTO entity_mentions VALUES(332,'Connect Direct 4.5',2,40,'others'); -INSERT INTO entity_mentions VALUES(333,'IBM Sterling Connect:Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(334,'Connect:Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(335,'Connect Direct File agent',2,40,'others'); -INSERT INTO entity_mentions VALUES(336,'Connect Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(337,'IBM Sterling Connect:Direct vX',2,40,'others'); -INSERT INTO entity_mentions VALUES(338,'Sterling Connect:Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(339,'Connect Direct 4.5, 4.6',2,40,'others'); -INSERT INTO entity_mentions VALUES(340,'Connect Direct 4.6',2,40,'others'); -INSERT INTO entity_mentions VALUES(341,'Cormerstone',2,41,'others'); -INSERT INTO entity_mentions VALUES(342,'Cornerstone software',2,41,'others'); -INSERT INTO entity_mentions VALUES(343,'Cornerstone',2,41,'others'); -INSERT INTO entity_mentions VALUES(344,'Crystal Report',2,42,'others'); -INSERT INTO entity_mentions VALUES(345,'Crystal',2,42,'others'); -INSERT INTO entity_mentions VALUES(346,'Crystal Reports',2,42,'others'); -INSERT INTO entity_mentions VALUES(347,'DART',6,421,'others'); -INSERT INTO entity_mentions VALUES(348,'DL/I',9,312,'others'); -INSERT INTO entity_mentions VALUES(349,'Data Language/I',9,312,'others'); -INSERT INTO entity_mentions VALUES(350,'Data Language Interface (DL/I)',9,312,'others'); -INSERT INTO entity_mentions VALUES(351,'Data Language/One',9,312,'others'); -INSERT INTO entity_mentions VALUES(352,'Data Language/Interface',9,312,'others'); -INSERT INTO entity_mentions VALUES(353,'Dl1',9,312,'others'); -INSERT INTO entity_mentions VALUES(354,'Data Language Interface',9,312,'others'); -INSERT INTO entity_mentions VALUES(355,'DB2/400',2,43,'others'); -INSERT INTO entity_mentions VALUES(356,'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 v9.7 FP11 SB 37314',2,43,'others'); -INSERT INTO entity_mentions VALUES(357,'IBM - IBM DB2 Advanced Workgroup Server Edition OEM Limited Use 11.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(358,'DB2 ESE 10.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(359,'IBM - IBM DB2 Enterprise Server Edition - CPU Option 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(360,'DB2 UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(361,'DB2',2,43,'others'); -INSERT INTO entity_mentions VALUES(362,'DB2 V9',2,43,'others'); -INSERT INTO entity_mentions VALUES(363,'IBM DB',2,43,'others'); -INSERT INTO entity_mentions VALUES(364,'DB2-UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(365,'DB2 11.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(366,'IBM-DB2-V9',2,43,'others'); -INSERT INTO entity_mentions VALUES(367,'IBM - IBM DB2 Advanced Enterprise Server Edition OEM Limited Use 11.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(368,'IBM - IBM DB2 Personal Edition Product Trial 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(369,'IBM - IBM DB2 Enterprise Server Edition - CPU Option 10.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(370,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.*',2,43,'others'); -INSERT INTO entity_mentions VALUES(371,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(372,'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 ESE v9.7 FP 11 Special Build 35826 37314',2,43,'others'); -INSERT INTO entity_mentions VALUES(373,'DB2/UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(374,'IBM DB2 ENTERPRISE SERVER EDITION PVU OPTION 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(375,'DB2 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(376,'DB2 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(377,'DB2 9.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(378,'IBM - IBM DB2 UDB Enterprise Server Edition 8.2',2,43,'others'); -INSERT INTO entity_mentions VALUES(379,'DB2 for i',2,43,'others'); -INSERT INTO entity_mentions VALUES(380,'IBM - IBM DB2 Enterprise Server Edition OEM Limited Use 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(381,'IBM - IBM DB2 Storage Optimization Feature 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(382,'IBM - IBM DB2 Advanced Enterprise Server Edition PVU Option 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(383,'UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(384,'IBM - IBM DB2 Enterprise Server Edition Product Trial 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(385,'DB2 ESE 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(386,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(387,'IBM DB2',2,43,'others'); -INSERT INTO entity_mentions VALUES(388,'IBM - IBM DB2 Workgroup Server Edition Product Trial 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(389,'Delphi',9,313,'others'); -INSERT INTO entity_mentions VALUES(390,'docker',10,503,'others'); -INSERT INTO entity_mentions VALUES(391,'Documentum D2',2,44,'others'); -INSERT INTO entity_mentions VALUES(392,'Documentum content server',2,44,'others'); -INSERT INTO entity_mentions VALUES(393,'Documentum',2,44,'others'); -INSERT INTO entity_mentions VALUES(394,'DOCUMENTUM-CS',2,44,'others'); -INSERT INTO entity_mentions VALUES(395,'DRUPAL',2,45,'others'); -INSERT INTO entity_mentions VALUES(396,'Easytrieve',9,314,'others'); -INSERT INTO entity_mentions VALUES(397,'EZTriev',9,314,'others'); -INSERT INTO entity_mentions VALUES(398,'Eztrieve',9,314,'others'); -INSERT INTO entity_mentions VALUES(399,'Eclipse',2,46,'others'); -INSERT INTO entity_mentions VALUES(400,'ATLAS Transformation Language',5,456,'others'); -INSERT INTO entity_mentions VALUES(401,'ATL',5,456,'others'); -INSERT INTO entity_mentions VALUES(402,'ATLAS Transformation Language (ATL)',5,456,'others'); -INSERT INTO entity_mentions VALUES(403,'Elastic (ELK) Stack',2,47,'others'); -INSERT INTO entity_mentions VALUES(404,'ELK',2,47,'others'); -INSERT INTO entity_mentions VALUES(405,'EMC Celerra',11,510,'others'); -INSERT INTO entity_mentions VALUES(406,'ETAP License Manager (LM)',2,48,'others'); -INSERT INTO entity_mentions VALUES(407,'ETAP Licensing Manager/TARO GJH',2,48,'others'); -INSERT INTO entity_mentions VALUES(408,'ETAP License Manager',2,48,'others'); -INSERT INTO entity_mentions VALUES(409,'ETAP License Manager GJH',2,48,'others'); -INSERT INTO entity_mentions VALUES(410,'PrestoSoft - ExamDiff Application 1.6',2,49,'others'); -INSERT INTO entity_mentions VALUES(411,'PrestoSoft - ExamDiff Application',2,49,'others'); -INSERT INTO entity_mentions VALUES(412,'ExamDiff',2,49,'others'); -INSERT INTO entity_mentions VALUES(413,'ExamDiff Application',2,49,'others'); -INSERT INTO entity_mentions VALUES(414,'Expect',9,315,'others'); -INSERT INTO entity_mentions VALUES(415,'Expect Scripts',9,315,'others'); -INSERT INTO entity_mentions VALUES(416,'eXtensible HyperText Markup Language (XHTML)',9,316,'others'); -INSERT INTO entity_mentions VALUES(417,'eXtensible HyperText Markup Language',9,316,'others'); -INSERT INTO entity_mentions VALUES(418,'XHTML',9,316,'others'); -INSERT INTO entity_mentions VALUES(419,'XML',9,596,'others'); -INSERT INTO entity_mentions VALUES(420,'Extensible Markup Language',9,596,'others'); -INSERT INTO entity_mentions VALUES(421,'Extensible Markup Language (XML)',9,596,'others'); -INSERT INTO entity_mentions VALUES(422,'MSXML',9,318,'others'); -INSERT INTO entity_mentions VALUES(423,'Microsoft - MSXML 4.0 SP2 4.2',9,318,'others'); -INSERT INTO entity_mentions VALUES(424,'Extensible Stylesheet Language',9,319,'others'); -INSERT INTO entity_mentions VALUES(425,'XSL',9,319,'others'); -INSERT INTO entity_mentions VALUES(426,'Extensible Stylesheet Language (XSL)',9,319,'others'); -INSERT INTO entity_mentions VALUES(427,'Extensible Stylesheet Language Transformations (XLST)',9,320,'others'); -INSERT INTO entity_mentions VALUES(428,'Extensible Stylesheet Language Transformations',9,320,'others'); -INSERT INTO entity_mentions VALUES(429,'XSLT',9,320,'others'); -INSERT INTO entity_mentions VALUES(430,'ServerCA Access GatewayF5',2,50,'others'); -INSERT INTO entity_mentions VALUES(431,'F5 Secure Web Gateway Services',2,50,'others'); -INSERT INTO entity_mentions VALUES(432,'Fabric OS',6,422,'others'); -INSERT INTO entity_mentions VALUES(433,'FabricOS',6,422,'others'); -INSERT INTO entity_mentions VALUES(434,'FileMaker Pro',2,51,'others'); -INSERT INTO entity_mentions VALUES(435,'FILEMAKER PRO 8.5',2,51,'others'); -INSERT INTO entity_mentions VALUES(436,'Flash',10,504,'others'); -INSERT INTO entity_mentions VALUES(437,'Flexnet 2016',2,52,'others'); -INSERT INTO entity_mentions VALUES(438,'FlexNet Manager Suite',2,52,'others'); -INSERT INTO entity_mentions VALUES(439,'FlexNet Manager Suite 2016',2,52,'others'); -INSERT INTO entity_mentions VALUES(440,'FOCUS',9,321,'others'); -INSERT INTO entity_mentions VALUES(441,'fortran',9,322,'others'); -INSERT INTO entity_mentions VALUES(442,'Rhino Software Inc - FTP Voyager 16.2',2,53,'others'); -INSERT INTO entity_mentions VALUES(443,'FTP Voyager',2,53,'others'); -INSERT INTO entity_mentions VALUES(444,'Genymotion',2,54,'others'); -INSERT INTO entity_mentions VALUES(445,'GlassFish',8,263,'others'); -INSERT INTO entity_mentions VALUES(446,'GlassFish Server 4 Open Source',8,263,'others'); -INSERT INTO entity_mentions VALUES(447,'GlassFish Server 4',8,263,'others'); -INSERT INTO entity_mentions VALUES(448,'GNU',6,423,'others'); -INSERT INTO entity_mentions VALUES(449,'Go',9,323,'others'); -INSERT INTO entity_mentions VALUES(450,'Chrome',2,55,'others'); -INSERT INTO entity_mentions VALUES(451,'Google Chrome',2,55,'others'); -INSERT INTO entity_mentions VALUES(452,'Google Chrome 76',2,55,'others'); -INSERT INTO entity_mentions VALUES(453,'GraphQL',9,324,'others'); -INSERT INTO entity_mentions VALUES(454,'EMC Greenplum',2,56,'others'); -INSERT INTO entity_mentions VALUES(455,'Groovy',9,325,'others'); -INSERT INTO entity_mentions VALUES(456,'Hadoop',2,57,'others'); -INSERT INTO entity_mentions VALUES(457,'HAProxy',8,264,'others'); -INSERT INTO entity_mentions VALUES(458,'HiveQL',9,326,'others'); -INSERT INTO entity_mentions VALUES(459,'HP aC++ compiler',2,58,'others'); -INSERT INTO entity_mentions VALUES(460,'HP C++',2,58,'others'); -INSERT INTO entity_mentions VALUES(461,'HP aC++',2,58,'others'); -INSERT INTO entity_mentions VALUES(462,'HP C/aC++',2,58,'others'); -INSERT INTO entity_mentions VALUES(463,'HP C++ 10.20',2,58,'others'); -INSERT INTO entity_mentions VALUES(464,'HPC 11.11',2,59,'others'); -INSERT INTO entity_mentions VALUES(465,'HP C/ANSI C compiler',2,59,'others'); -INSERT INTO entity_mentions VALUES(466,'HP C/ANSI C',2,59,'others'); -INSERT INTO entity_mentions VALUES(467,'HP Nonstop J06.20.00',4,293,'others'); -INSERT INTO entity_mentions VALUES(468,'HP Nonstop',4,293,'others'); -INSERT INTO entity_mentions VALUES(469,'HP Operations Orchestration (HPOO)',2,60,'others'); -INSERT INTO entity_mentions VALUES(470,'HP Operations Orchestration',2,60,'others'); -INSERT INTO entity_mentions VALUES(471,'HPOO',2,60,'others'); -INSERT INTO entity_mentions VALUES(472,'HPSA',2,61,'others'); -INSERT INTO entity_mentions VALUES(473,'HP Server Automation',2,61,'others'); -INSERT INTO entity_mentions VALUES(474,'HP Server Automation (HPSA)',2,61,'others'); -INSERT INTO entity_mentions VALUES(475,'HFS',10,505,'others'); -INSERT INTO entity_mentions VALUES(476,'www.rejetto.com - HttpFileServer 2.3',10,505,'others'); -INSERT INTO entity_mentions VALUES(477,'HTTP File Server',10,505,'others'); -INSERT INTO entity_mentions VALUES(478,'HttpFileServer',10,505,'others'); -INSERT INTO entity_mentions VALUES(479,'Hypertext Markup Language',9,327,'others'); -INSERT INTO entity_mentions VALUES(480,'HTML4',9,327,'others'); -INSERT INTO entity_mentions VALUES(481,'HTML',9,327,'others'); -INSERT INTO entity_mentions VALUES(482,'Hypertext Markup Language (HTML)',9,327,'others'); -INSERT INTO entity_mentions VALUES(483,'HTML5',9,327,'others'); -INSERT INTO entity_mentions VALUES(484,'IBM BigFix',2,62,'others'); -INSERT INTO entity_mentions VALUES(485,'IBM - IBM BigFix Platform',2,62,'others'); -INSERT INTO entity_mentions VALUES(486,'IBM BigFix Platform',2,62,'others'); -INSERT INTO entity_mentions VALUES(487,'IBM - IBM BigFix Platform Client Deploy Tool 9.5',5,457,'others'); -INSERT INTO entity_mentions VALUES(488,'Client Deploy Tool',5,457,'others'); -INSERT INTO entity_mentions VALUES(489,'(IBM) IBM Business Monitor 8.5.6',2,63,'others'); -INSERT INTO entity_mentions VALUES(490,'IBM Business Monitor',2,63,'others'); -INSERT INTO entity_mentions VALUES(491,'IBM BPM',2,64,'others'); -INSERT INTO entity_mentions VALUES(492,'IBM Business Process Manager',2,64,'others'); -INSERT INTO entity_mentions VALUES(493,'IBM Business Process Manager 8.5.7.0',2,64,'others'); -INSERT INTO entity_mentions VALUES(494,'(IBM) IBM Business Process Manager 8.5.6',2,64,'others'); -INSERT INTO entity_mentions VALUES(495,'IBM Business Process Manager 8.5.6.0',2,64,'others'); -INSERT INTO entity_mentions VALUES(496,'IBM Content Manager OnDemand',2,65,'others'); -INSERT INTO entity_mentions VALUES(497,'IBM Content Manager OnDemand (CMOD)',2,65,'others'); -INSERT INTO entity_mentions VALUES(498,'CMOD',2,65,'others'); -INSERT INTO entity_mentions VALUES(499,'Data Power',4,294,'others'); -INSERT INTO entity_mentions VALUES(500,'IBM DataPower Gateway',4,294,'others'); -INSERT INTO entity_mentions VALUES(501,'IDG.7.5.2.19hp',4,294,'others'); -INSERT INTO entity_mentions VALUES(502,'datapower-connector',4,294,'others'); -INSERT INTO entity_mentions VALUES(503,'FileNet',2,66,'others'); -INSERT INTO entity_mentions VALUES(504,'IBM FileNet',2,66,'others'); -INSERT INTO entity_mentions VALUES(505,'IBM FileNet P8 Platform',2,66,'others'); -INSERT INTO entity_mentions VALUES(506,'hlasm',9,328,'others'); -INSERT INTO entity_mentions VALUES(507,'IBM High Level Assembler',9,328,'others'); -INSERT INTO entity_mentions VALUES(508,'IBM High Level Assembler (HLASM)',9,328,'others'); -INSERT INTO entity_mentions VALUES(509,'IBM - IBM HTTP Server 6.1',8,265,'others'); -INSERT INTO entity_mentions VALUES(510,'IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(511,'IBM - IBM HTTP Server 7',8,265,'others'); -INSERT INTO entity_mentions VALUES(512,'IBM - IBM HTTP Server 8.5',8,265,'others'); -INSERT INTO entity_mentions VALUES(513,'WebSphere and IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(514,'WebSphere http',8,265,'others'); -INSERT INTO entity_mentions VALUES(515,'(IBM) IBM HTTP Server 8.5',8,265,'others'); -INSERT INTO entity_mentions VALUES(516,'IBM HTTP Server',8,265,'others'); -INSERT INTO entity_mentions VALUES(517,'IBM HTTP SERVER 8',8,265,'others'); -INSERT INTO entity_mentions VALUES(518,'IBM HTTP Server 8.',8,265,'others'); -INSERT INTO entity_mentions VALUES(519,'IBM Websphere HTTP Server',8,265,'others'); -INSERT INTO entity_mentions VALUES(520,'IBM HTTP',8,265,'others'); -INSERT INTO entity_mentions VALUES(521,'WebSphere IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(522,'WebSphere -IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(523,'IBM HTTP SERVER 6.1',8,265,'others'); -INSERT INTO entity_mentions VALUES(524,'IBMi',6,424,'others'); -INSERT INTO entity_mentions VALUES(525,'IBM i',6,424,'others'); -INSERT INTO entity_mentions VALUES(526,'OS400 V7R1',6,424,'others'); -INSERT INTO entity_mentions VALUES(527,'OS400',6,424,'others'); -INSERT INTO entity_mentions VALUES(528,'OS/400',6,424,'others'); -INSERT INTO entity_mentions VALUES(529,'CLP',9,329,'others'); -INSERT INTO entity_mentions VALUES(530,'IBM i Control Language (CL)',9,329,'others'); -INSERT INTO entity_mentions VALUES(531,'IBM Informix-4GL',9,330,'others'); -INSERT INTO entity_mentions VALUES(532,'Informix 4GL',9,330,'others'); -INSERT INTO entity_mentions VALUES(533,'Informix-4GL',9,330,'others'); -INSERT INTO entity_mentions VALUES(534,'DATASTAGE',2,67,'others'); -INSERT INTO entity_mentions VALUES(535,'IBM InfoSphere DataStage',2,67,'others'); -INSERT INTO entity_mentions VALUES(536,'datastage 11.3',2,67,'others'); -INSERT INTO entity_mentions VALUES(537,'IBM Integration Bus 10.0',2,68,'others'); -INSERT INTO entity_mentions VALUES(538,'IBM Integration Bus v9',2,68,'others'); -INSERT INTO entity_mentions VALUES(539,'IBM Integration Bus 9.0',2,68,'others'); -INSERT INTO entity_mentions VALUES(540,'IBM Integration Bus',2,68,'others'); -INSERT INTO entity_mentions VALUES(541,'IIB',2,68,'others'); -INSERT INTO entity_mentions VALUES(542,'IBM Integration Bus v10',2,68,'others'); -INSERT INTO entity_mentions VALUES(543,'Extended Structured Query Language (ESQL)',5,458,'others'); -INSERT INTO entity_mentions VALUES(544,'ESQL',5,458,'others'); -INSERT INTO entity_mentions VALUES(545,'Extended Structured Query Language',5,458,'others'); -INSERT INTO entity_mentions VALUES(546,'IBM - IBM License Metric Tool and Tivoli Asset Discovery for Distributed',2,69,'others'); -INSERT INTO entity_mentions VALUES(547,'IBM License Metric Tool',2,69,'others'); -INSERT INTO entity_mentions VALUES(548,'Maximo',2,70,'others'); -INSERT INTO entity_mentions VALUES(549,'IBM Maximo 7.6',2,70,'others'); -INSERT INTO entity_mentions VALUES(550,'IBM Maximo',2,70,'others'); -INSERT INTO entity_mentions VALUES(551,'IBM Migration Utility',2,71,'others'); -INSERT INTO entity_mentions VALUES(552,'IBM WorkLight',2,72,'others'); -INSERT INTO entity_mentions VALUES(553,'IBM Mobile Foundation',2,72,'others'); -INSERT INTO entity_mentions VALUES(554,'Operational Decision Manager',2,73,'others'); -INSERT INTO entity_mentions VALUES(555,'ILOG JRules',2,73,'others'); -INSERT INTO entity_mentions VALUES(556,'Decision Server 8.0.1.0',2,73,'others'); -INSERT INTO entity_mentions VALUES(557,'IBM WebSphere ILOG Jrules',2,73,'others'); -INSERT INTO entity_mentions VALUES(558,'IBM Operational Decision Manager (ODM)',2,73,'others'); -INSERT INTO entity_mentions VALUES(559,'Decision Center 8.0.1.0',2,73,'others'); -INSERT INTO entity_mentions VALUES(560,'IBM Operational Decision Manager',2,73,'others'); -INSERT INTO entity_mentions VALUES(561,'IBM ODM',2,73,'others'); -INSERT INTO entity_mentions VALUES(562,'AS400',4,295,'others'); -INSERT INTO entity_mentions VALUES(563,'AS/400',4,295,'others'); -INSERT INTO entity_mentions VALUES(564,'IBM Power Systems',4,295,'others'); -INSERT INTO entity_mentions VALUES(565,'System p',4,295,'others'); -INSERT INTO entity_mentions VALUES(566,'System i',4,295,'others'); -INSERT INTO entity_mentions VALUES(567,'P-series',4,295,'others'); -INSERT INTO entity_mentions VALUES(568,'IBM iSeries/AS400 system Model 520',4,295,'others'); -INSERT INTO entity_mentions VALUES(569,'IBM - IBM Spectrum Scale Express Client 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(570,'IBM Spectrum Scale Server',2,605,'others'); -INSERT INTO entity_mentions VALUES(571,'IBM Spectrum Scale',2,605,'others'); -INSERT INTO entity_mentions VALUES(572,'IBM - IBM Spectrum Scale Express Server 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(573,'IBM - IBM Spectrum Scale Standard Server 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(574,'IBM - IBM Spectrum Scale Express FPO 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(575,'IBM Spectrum Scale FPO',2,605,'others'); -INSERT INTO entity_mentions VALUES(576,'IBM Spectrum Scale Client',2,605,'others'); -INSERT INTO entity_mentions VALUES(577,'IBM - IBM Spectrum Scale Standard FPO 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(578,'IBM - IBM Spectrum Scale Standard Client 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(579,'IBM Tivoli Asset Management',2,606,'others'); -INSERT INTO entity_mentions VALUES(580,'Tivoli Asset Management',2,606,'others'); -INSERT INTO entity_mentions VALUES(581,'Asset Discovery for Distributed',5,459,'others'); -INSERT INTO entity_mentions VALUES(582,'Tivoli Asset Discovery for Distributed',5,459,'others'); -INSERT INTO entity_mentions VALUES(583,'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - MS SQL Server Agent 6.3',2,76,'others'); -INSERT INTO entity_mentions VALUES(584,'IBM Tivoli Composite Application Manager',2,76,'others'); -INSERT INTO entity_mentions VALUES(585,'IBM - IBM Tivoli Composite Application Manager Agent for DB2 7.1',2,76,'others'); -INSERT INTO entity_mentions VALUES(586,'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - IIS server agent 6.3',2,76,'others'); -INSERT INTO entity_mentions VALUES(587,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(588,'IBM - IBM Tivoli Monitoring for Databases - DB2 Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(589,'IBM Tivoli Monitoring',2,77,'others'); -INSERT INTO entity_mentions VALUES(590,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.3',2,77,'others'); -INSERT INTO entity_mentions VALUES(591,'Tivoli Monitoring',2,77,'others'); -INSERT INTO entity_mentions VALUES(592,'Database MS SQL Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(593,'Linux OS Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(594,'Database DB2 Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(595,'IBM - IBM Tivoli Monitoring for Databases - MS SQL Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(596,'IBM - IBM Tivoli Monitoring - Linux OS Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(597,'Windows OS Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(598,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6',2,77,'others'); -INSERT INTO entity_mentions VALUES(599,'IBM Tivoli Storage Manager',2,604,'others'); -INSERT INTO entity_mentions VALUES(600,'IBM - IBM TSM FCM',2,604,'others'); -INSERT INTO entity_mentions VALUES(601,'Tivoli Storage Manager',2,604,'others'); -INSERT INTO entity_mentions VALUES(602,'IBM - IBM Tivoli Storage Manager',2,604,'others'); -INSERT INTO entity_mentions VALUES(603,'IBM Tivoli Storage Manager API',2,604,'others'); -INSERT INTO entity_mentions VALUES(604,'IBM - IBM Tivoli Storage Manager for Databases - Data Protection for Microsoft SQL 6.3',2,604,'others'); -INSERT INTO entity_mentions VALUES(605,'Databases Data Protection for Microsoft SQL',2,604,'others'); -INSERT INTO entity_mentions VALUES(606,'IBM - IBM Tivoli Storage Manager API 6.4',2,604,'others'); -INSERT INTO entity_mentions VALUES(607,'IBM - IBM Spectrum Protect Data Protection for Microsoft SQL Server 8.1',2,604,'others'); -INSERT INTO entity_mentions VALUES(608,'IBM Spectrum Protect Data Protection',2,604,'others'); -INSERT INTO entity_mentions VALUES(609,'TSM API',5,460,'others'); -INSERT INTO entity_mentions VALUES(610,'IBM - IBM Spectrum Protect API 7.1',5,460,'others'); -INSERT INTO entity_mentions VALUES(611,'IBM - IBM Spectrum Protect Client',5,461,'others'); -INSERT INTO entity_mentions VALUES(612,'TSM Client',5,461,'others'); -INSERT INTO entity_mentions VALUES(613,'IBM - IBM Tivoli Storage Manager Client',5,461,'others'); -INSERT INTO entity_mentions VALUES(614,'TSM Storage Agent',5,462,'others'); -INSERT INTO entity_mentions VALUES(615,'IBM - IBM Spectrum Protect Storage Agent 8.1',5,462,'others'); -INSERT INTO entity_mentions VALUES(616,'VSS Requestor',5,463,'others'); -INSERT INTO entity_mentions VALUES(617,'VSS Requestor configured 8.1',5,463,'others'); -INSERT INTO entity_mentions VALUES(618,'VSS Requestor 7.1',5,463,'others'); -INSERT INTO entity_mentions VALUES(619,'TWS-WS',2,79,'others'); -INSERT INTO entity_mentions VALUES(620,'Tivoli Workload Scheduler',2,79,'others'); -INSERT INTO entity_mentions VALUES(621,'IBM Tivoli Workload Scheduler (TWS)',2,79,'others'); -INSERT INTO entity_mentions VALUES(622,'IBM WebSphere Business Integration Adaptor',2,80,'others'); -INSERT INTO entity_mentions VALUES(623,'WebSphere Business Integration Adaptor',2,80,'others'); -INSERT INTO entity_mentions VALUES(624,'wbia 2.6',2,80,'others'); -INSERT INTO entity_mentions VALUES(625,'IBM WBIA 2.6.0.12',2,80,'others'); -INSERT INTO entity_mentions VALUES(626,'IBM Websphere MQ 7.1',2,81,'others'); -INSERT INTO entity_mentions VALUES(627,'MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(628,'MQ 9.1',2,81,'others'); -INSERT INTO entity_mentions VALUES(629,'IBM WebSphere MQ Client 7.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(630,'Websphere MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(631,'MQ 7',2,81,'others'); -INSERT INTO entity_mentions VALUES(632,'MQ 6',2,81,'others'); -INSERT INTO entity_mentions VALUES(633,'MQ 9.0',2,81,'others'); -INSERT INTO entity_mentions VALUES(634,'MQ 5.3',2,81,'others'); -INSERT INTO entity_mentions VALUES(635,'MQ 7.01',2,81,'others'); -INSERT INTO entity_mentions VALUES(636,'MQ 7.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(637,'MQSeries 8.0',2,81,'others'); -INSERT INTO entity_mentions VALUES(638,'IBM Websphere MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(639,'IBM MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(640,'IBM WEBSPHERE MQ SERVER 7.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(641,'WSMQ 8.0',2,81,'others'); -INSERT INTO entity_mentions VALUES(642,'MQ 9.0.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(643,'IBM WebSphere MQ Telemetry Service 7.5',2,82,'others'); -INSERT INTO entity_mentions VALUES(644,'IBM WebSphere MQ Telemetry',2,82,'others'); -INSERT INTO entity_mentions VALUES(645,'WTX',2,83,'others'); -INSERT INTO entity_mentions VALUES(646,'IBM WebSphere Transformation Extender (WTX)',2,83,'others'); -INSERT INTO entity_mentions VALUES(647,'IBM WebSphere Transformation Extender',2,83,'others'); -INSERT INTO entity_mentions VALUES(648,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.6001.18000',8,609,'others'); -INSERT INTO entity_mentions VALUES(649,'IIS 7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(650,'Internet Information Services (IIS)',8,609,'others'); -INSERT INTO entity_mentions VALUES(651,'Microsoft Internet Information Services 7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(652,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7',8,609,'others'); -INSERT INTO entity_mentions VALUES(653,'Microsoft Internet Information Services',8,609,'others'); -INSERT INTO entity_mentions VALUES(654,'Microsoft Internet Information',8,609,'others'); -INSERT INTO entity_mentions VALUES(655,'IIS Express 8',8,609,'others'); -INSERT INTO entity_mentions VALUES(656,'Internet Information Services (IIS 6.0)',8,609,'others'); -INSERT INTO entity_mentions VALUES(657,'Microsoft IIS 8.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(658,'IIS',8,609,'others'); -INSERT INTO entity_mentions VALUES(659,'IIS Express',8,609,'others'); -INSERT INTO entity_mentions VALUES(660,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(661,'Microsoft Internet Inf',8,609,'others'); -INSERT INTO entity_mentions VALUES(662,'MICROSOFT INTERNET INFORMATION SERVER VERSION 5.1.2600.2180',8,609,'others'); -INSERT INTO entity_mentions VALUES(663,'TS-IIS Express 10',8,609,'others'); -INSERT INTO entity_mentions VALUES(664,'Microsoft Internet Informat',8,609,'others'); -INSERT INTO entity_mentions VALUES(665,'Microsoft IIS Webserver',8,609,'others'); -INSERT INTO entity_mentions VALUES(666,'IIS Server',8,609,'others'); -INSERT INTO entity_mentions VALUES(667,'Microsoft Internet Information Services 8.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(668,'IIS Version 7',8,609,'others'); -INSERT INTO entity_mentions VALUES(669,'Microsoft Internet Information Services 8.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(670,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.3790.1830',8,609,'others'); -INSERT INTO entity_mentions VALUES(671,'IIS 8.5.9600.16386',8,609,'others'); -INSERT INTO entity_mentions VALUES(672,'IIS 7.x',8,609,'others'); -INSERT INTO entity_mentions VALUES(673,'IIS 7.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(674,'IIS 10',8,609,'others'); -INSERT INTO entity_mentions VALUES(675,'Microsoft Internet Information Services 6.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(676,'Internet Information Services (IIS 7.0)',8,609,'others'); -INSERT INTO entity_mentions VALUES(677,'Microsoft Internet Information Services 10.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(678,'IIS 8.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(679,'Microsoft - IIS Express 10',8,609,'others'); -INSERT INTO entity_mentions VALUES(680,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.*',8,609,'others'); -INSERT INTO entity_mentions VALUES(681,'Microsoft IIS 7.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(682,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 8',8,609,'others'); -INSERT INTO entity_mentions VALUES(683,'IIS v 7.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(684,'IIS 7.2.1952',8,609,'others'); -INSERT INTO entity_mentions VALUES(685,'Microsoft Internet Information Services 7.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(686,'Microsoft IIS 8.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(687,'IIS Web Server v6',8,609,'others'); -INSERT INTO entity_mentions VALUES(688,'IIS 8.x',8,609,'others'); -INSERT INTO entity_mentions VALUES(689,'IIS 8.0.1557',8,609,'others'); -INSERT INTO entity_mentions VALUES(690,'IIS 11',8,609,'others'); -INSERT INTO entity_mentions VALUES(691,'IIS 6.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(692,'IIS Express 7',8,609,'others'); -INSERT INTO entity_mentions VALUES(693,'IIS 7.2.2',8,609,'others'); -INSERT INTO entity_mentions VALUES(694,'IIS Instance',8,609,'others'); -INSERT INTO entity_mentions VALUES(695,'Microsoft IIS 6.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(696,'IIS Express 10',8,609,'others'); -INSERT INTO entity_mentions VALUES(697,'IIS Servers',8,609,'others'); -INSERT INTO entity_mentions VALUES(698,'MS-IIS',8,609,'others'); -INSERT INTO entity_mentions VALUES(699,'Internet Information Services (IIS 8.5)',8,609,'others'); -INSERT INTO entity_mentions VALUES(700,'IIS 8.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(701,'Microsoft IIS 7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(702,'IIS Version 8 64 bit',8,609,'others'); -INSERT INTO entity_mentions VALUES(703,'IIS 6',8,609,'others'); -INSERT INTO entity_mentions VALUES(704,'IIS7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(705,'IEMT',7,489,'others'); -INSERT INTO entity_mentions VALUES(706,'Microsoft - IIS 6.0 Migration Tool 1',7,489,'others'); -INSERT INTO entity_mentions VALUES(707,'IIS Easy Migration Tool',7,489,'others'); -INSERT INTO entity_mentions VALUES(708,'Easy Migration Tool',7,489,'others'); -INSERT INTO entity_mentions VALUES(709,'Easy Migration Tool (IEMT)',7,489,'others'); -INSERT INTO entity_mentions VALUES(710,'IIS Easy Migration Tool (IEMT)',7,489,'others'); -INSERT INTO entity_mentions VALUES(711,'MS-ARR',7,490,'others'); -INSERT INTO entity_mentions VALUES(712,'Application Request Routing',7,490,'others'); -INSERT INTO entity_mentions VALUES(713,'ARR',7,490,'others'); -INSERT INTO entity_mentions VALUES(714,'Application Request Routing (ARR)',7,490,'others'); -INSERT INTO entity_mentions VALUES(715,'IIS Manager',7,491,'others'); -INSERT INTO entity_mentions VALUES(716,'IMS DB',2,84,'others'); -INSERT INTO entity_mentions VALUES(717,'IMS',2,84,'others'); -INSERT INTO entity_mentions VALUES(718,'Infozip 6',2,85,'others'); -INSERT INTO entity_mentions VALUES(719,'Infozip',2,85,'others'); -INSERT INTO entity_mentions VALUES(720,'Info-ZIP',2,85,'others'); -INSERT INTO entity_mentions VALUES(721,'Infobright Community Edition',2,86,'others'); -INSERT INTO entity_mentions VALUES(722,'Infobright Community Edition (ICE)',2,86,'others'); -INSERT INTO entity_mentions VALUES(723,'infobright-ce',2,86,'others'); -INSERT INTO entity_mentions VALUES(724,'informatica',2,87,'others'); -INSERT INTO entity_mentions VALUES(725,'Informatica PowerCenter',2,87,'others'); -INSERT INTO entity_mentions VALUES(726,'Informatica PowerCenter 10.2',2,87,'others'); -INSERT INTO entity_mentions VALUES(727,'Informatica Version 10.2.0 HotFix1',2,87,'others'); -INSERT INTO entity_mentions VALUES(728,'Informatica Power Center 8.6.1',2,87,'others'); -INSERT INTO entity_mentions VALUES(729,'ETL tool: Informatica',2,87,'others'); -INSERT INTO entity_mentions VALUES(730,'Informatica database server-mspr50',2,87,'others'); -INSERT INTO entity_mentions VALUES(731,'Informatica ETL',2,87,'others'); -INSERT INTO entity_mentions VALUES(732,'Informatica Power Center 9.6.1',2,87,'others'); -INSERT INTO entity_mentions VALUES(733,'Informatica PowerCenter 10.2-msprap150',2,87,'others'); -INSERT INTO entity_mentions VALUES(734,'ETL tool=Informatica',2,87,'others'); -INSERT INTO entity_mentions VALUES(735,'Ingres',2,88,'others'); -INSERT INTO entity_mentions VALUES(736,'INGRES DBM',2,88,'others'); -INSERT INTO entity_mentions VALUES(737,'Intel(R) Xeon(R) CPU E7- 4870 @ 2.40GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(738,'intel(r) xeon(r) cpu e7- 4870 @ 2.40ghz',4,296,'others'); -INSERT INTO entity_mentions VALUES(739,'Intel(R) Xeon(R) CPU E5530 @ 2.40GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(740,'Intel(R) Xeon(R) CPU X7550 @ 2.00GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(741,'Intel(R) Xeon(R) CPU E5-2648L v4 @ 1.80GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(742,'Intel Xeon Processor',4,296,'others'); -INSERT INTO entity_mentions VALUES(743,'IMSVA 9.1',3,566,'others'); -INSERT INTO entity_mentions VALUES(744,'InterScan Messaging Security Virtual Appliance',3,566,'others'); -INSERT INTO entity_mentions VALUES(745,'InterScan Messaging Security Virtual Appliance (IMSVA)',3,566,'others'); -INSERT INTO entity_mentions VALUES(746,'IMSVA',3,566,'others'); -INSERT INTO entity_mentions VALUES(747,'iOS',6,425,'others'); -INSERT INTO entity_mentions VALUES(748,'Java 1.8',9,584,'others'); -INSERT INTO entity_mentions VALUES(749,'Java 7',9,584,'others'); -INSERT INTO entity_mentions VALUES(750,'Java on Weblogic server',9,584,'others'); -INSERT INTO entity_mentions VALUES(751,'Java',9,584,'others'); -INSERT INTO entity_mentions VALUES(752,'Java5',9,584,'others'); -INSERT INTO entity_mentions VALUES(753,'Java 6',9,584,'others'); -INSERT INTO entity_mentions VALUES(754,'Java 6.0',9,584,'others'); -INSERT INTO entity_mentions VALUES(755,'Java 7 Update 25',9,584,'others'); -INSERT INTO entity_mentions VALUES(756,'Java Scripting',9,584,'others'); -INSERT INTO entity_mentions VALUES(758,'Java (open source)',9,584,'others'); -INSERT INTO entity_mentions VALUES(759,'Java 5',9,584,'others'); -INSERT INTO entity_mentions VALUES(760,'Java 1.5',9,584,'others'); -INSERT INTO entity_mentions VALUES(761,'Java (1.6)',9,584,'others'); -INSERT INTO entity_mentions VALUES(762,'Java 1.8.0_92',9,584,'others'); -INSERT INTO entity_mentions VALUES(763,'Java 1.6',9,584,'others'); -INSERT INTO entity_mentions VALUES(764,'J2EE 6',9,584,'others'); -INSERT INTO entity_mentions VALUES(765,'Java (J2EE)',9,584,'others'); -INSERT INTO entity_mentions VALUES(766,'Oracle - Java Runtime Environment 11',10,506,'others'); -INSERT INTO entity_mentions VALUES(767,'JRE',10,506,'others'); -INSERT INTO entity_mentions VALUES(768,'Java Runtime',10,506,'others'); -INSERT INTO entity_mentions VALUES(769,'Oracle - Java Runtime Environment 8',10,506,'others'); -INSERT INTO entity_mentions VALUES(770,'Oracle - Java Runtime Environment 7',10,506,'others'); -INSERT INTO entity_mentions VALUES(771,'Java Runtime Environment (JRE)',10,506,'others'); -INSERT INTO entity_mentions VALUES(772,'Java Runtime 6',10,506,'others'); -INSERT INTO entity_mentions VALUES(773,'Camel',12,378,'others'); -INSERT INTO entity_mentions VALUES(774,'Apache Camel',12,378,'others'); -INSERT INTO entity_mentions VALUES(775,'SS7/CAMEL',12,378,'others'); -INSERT INTO entity_mentions VALUES(776,'Apache mmons-beanutils',12,379,'others'); -INSERT INTO entity_mentions VALUES(777,'Apache Commons BeanUtils',12,379,'others'); -INSERT INTO entity_mentions VALUES(778,'PDFBox',12,380,'others'); -INSERT INTO entity_mentions VALUES(779,'Apache PDFBox',12,380,'others'); -INSERT INTO entity_mentions VALUES(780,'PDFBox 1.6',12,380,'others'); -INSERT INTO entity_mentions VALUES(781,'Velocity',12,381,'others'); -INSERT INTO entity_mentions VALUES(782,'Apache Velocity',12,381,'others'); -INSERT INTO entity_mentions VALUES(783,'EclipseLink 2.6.4',12,382,'others'); -INSERT INTO entity_mentions VALUES(784,'EclipseLink',12,382,'others'); -INSERT INTO entity_mentions VALUES(785,'EJB',12,383,'others'); -INSERT INTO entity_mentions VALUES(786,'EJBS',12,383,'others'); -INSERT INTO entity_mentions VALUES(787,'Ejb 2.x',12,383,'others'); -INSERT INTO entity_mentions VALUES(788,'Enterprise JavaBeans (EJB)',12,383,'others'); -INSERT INTO entity_mentions VALUES(789,'Enterprise JavaBeans',12,383,'others'); -INSERT INTO entity_mentions VALUES(790,'JAVA-XSL',9,319,'others'); -INSERT INTO entity_mentions VALUES(793,'EZMorph',12,384,'others'); -INSERT INTO entity_mentions VALUES(794,'GWT',12,385,'others'); -INSERT INTO entity_mentions VALUES(795,'Google Web Toolkit',12,385,'others'); -INSERT INTO entity_mentions VALUES(796,'Google Web Toolkit (GWT)',12,385,'others'); -INSERT INTO entity_mentions VALUES(797,'Hibernate',12,386,'others'); -INSERT INTO entity_mentions VALUES(798,'IBM - IBM SDK 5.0 for Windows AMD/EMT 64',12,387,'others'); -INSERT INTO entity_mentions VALUES(799,'IBM SDK',12,387,'others'); -INSERT INTO entity_mentions VALUES(800,'Oracle - JDK/SDK',12,388,'others'); -INSERT INTO entity_mentions VALUES(801,'JDK 1.7.0',12,388,'others'); -INSERT INTO entity_mentions VALUES(802,'JDK',12,388,'others'); -INSERT INTO entity_mentions VALUES(803,'Oracle (Sun) JDK/JRE',12,388,'others'); -INSERT INTO entity_mentions VALUES(804,'JDK8',12,388,'others'); -INSERT INTO entity_mentions VALUES(805,'JDK 1.5',12,388,'others'); -INSERT INTO entity_mentions VALUES(806,'Oracle JDK',12,388,'others'); -INSERT INTO entity_mentions VALUES(807,'Java Development Kit (JDK)',12,388,'others'); -INSERT INTO entity_mentions VALUES(808,'Oracle - JDK/SDK 8',12,388,'others'); -INSERT INTO entity_mentions VALUES(809,'Java Development Kit',12,388,'others'); -INSERT INTO entity_mentions VALUES(810,'JDK 1.6.0_24',12,388,'others'); -INSERT INTO entity_mentions VALUES(811,'JDK8 (1.8)',12,388,'others'); -INSERT INTO entity_mentions VALUES(812,'JDK 1.3',12,388,'others'); -INSERT INTO entity_mentions VALUES(813,'JEE',9,333,'others'); -INSERT INTO entity_mentions VALUES(814,'Java EE',9,333,'others'); -INSERT INTO entity_mentions VALUES(815,'Java Enterprise Edition (Java EE)',9,333,'others'); -INSERT INTO entity_mentions VALUES(816,'Java Enterprise Edition',9,333,'others'); -INSERT INTO entity_mentions VALUES(817,'Java Message Service (JMS)',12,389,'others'); -INSERT INTO entity_mentions VALUES(818,'JMS',12,389,'others'); -INSERT INTO entity_mentions VALUES(819,'Java Message Service',12,389,'others'); -INSERT INTO entity_mentions VALUES(820,'Java Standard Edition (Java SE)',9,334,'others'); -INSERT INTO entity_mentions VALUES(821,'oracle - java - java se 6',9,334,'others'); -INSERT INTO entity_mentions VALUES(822,'Java SE 6',9,334,'others'); -INSERT INTO entity_mentions VALUES(823,'Java Web Start',12,390,'others'); -INSERT INTO entity_mentions VALUES(824,'Oracle - Java Web Start 1.5',12,390,'others'); -INSERT INTO entity_mentions VALUES(825,'Oracle - Java Web Start 6',12,390,'others'); -INSERT INTO entity_mentions VALUES(826,'JavaServer Faces',12,391,'others'); -INSERT INTO entity_mentions VALUES(827,'JavaServer Faces (JSF)',12,391,'others'); -INSERT INTO entity_mentions VALUES(828,'JSF',12,391,'others'); -INSERT INTO entity_mentions VALUES(829,'JavaServer Pages',9,335,'others'); -INSERT INTO entity_mentions VALUES(830,'JavaServer Pages (JSP)',9,335,'others'); -INSERT INTO entity_mentions VALUES(831,'Core JSP',9,335,'others'); -INSERT INTO entity_mentions VALUES(832,'JSP',9,335,'others'); -INSERT INTO entity_mentions VALUES(833,'JSP Scriptlets',9,336,'others'); -INSERT INTO entity_mentions VALUES(834,'Java Scriplet',9,336,'others'); -INSERT INTO entity_mentions VALUES(835,'JDBC',12,392,'others'); -INSERT INTO entity_mentions VALUES(836,'JRuby Core',12,393,'others'); -INSERT INTO entity_mentions VALUES(837,'Core 9.2.0.0',12,393,'others'); -INSERT INTO entity_mentions VALUES(838,'APACHE LOG4J',12,394,'others'); -INSERT INTO entity_mentions VALUES(839,'Log4j',12,394,'others'); -INSERT INTO entity_mentions VALUES(840,'Quartz',12,395,'others'); -INSERT INTO entity_mentions VALUES(841,'Java RMI',12,396,'others'); -INSERT INTO entity_mentions VALUES(842,'Java Remote Method Invocation (RMI)',12,396,'others'); -INSERT INTO entity_mentions VALUES(843,'Remote Method Invocation',12,396,'others'); -INSERT INTO entity_mentions VALUES(844,'Java Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(845,'Java 6 Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(846,'J2EE Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(847,'Servlet',12,397,'others'); -INSERT INTO entity_mentions VALUES(848,'Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(849,'Servlets v2.3',12,397,'others'); -INSERT INTO entity_mentions VALUES(850,'Spring',12,398,'others'); -INSERT INTO entity_mentions VALUES(851,'Spring IO',12,398,'others'); -INSERT INTO entity_mentions VALUES(852,'Spring BOOT',12,399,'others'); -INSERT INTO entity_mentions VALUES(853,'Spring Cloud Data Flow',12,400,'others'); -INSERT INTO entity_mentions VALUES(854,'Spring MVC',12,401,'others'); -INSERT INTO entity_mentions VALUES(855,'Struts (2.0)',12,402,'others'); -INSERT INTO entity_mentions VALUES(856,'Struts 2.0',12,402,'others'); -INSERT INTO entity_mentions VALUES(857,'Struts',12,402,'others'); -INSERT INTO entity_mentions VALUES(858,'Swing',12,403,'others'); -INSERT INTO entity_mentions VALUES(859,'Swings',12,403,'others'); -INSERT INTO entity_mentions VALUES(860,'Vaadin',12,404,'others'); -INSERT INTO entity_mentions VALUES(861,'javasript',9,589,'others'); -INSERT INTO entity_mentions VALUES(862,'JS',9,589,'others'); -INSERT INTO entity_mentions VALUES(863,'Javascript',9,589,'others'); -INSERT INTO entity_mentions VALUES(864,'Java Script',9,589,'others'); -INSERT INTO entity_mentions VALUES(865,'javascriptl',9,589,'others'); -INSERT INTO entity_mentions VALUES(866,'AJAX',12,405,'others'); -INSERT INTO entity_mentions VALUES(867,'Angular JS',12,406,'others'); -INSERT INTO entity_mentions VALUES(868,'AngularJS',12,406,'others'); -INSERT INTO entity_mentions VALUES(869,'Angular',12,406,'others'); -INSERT INTO entity_mentions VALUES(870,'Draw2D',12,407,'others'); -INSERT INTO entity_mentions VALUES(871,'Draw2D 2.10.1',12,407,'others'); -INSERT INTO entity_mentions VALUES(872,'Express',12,408,'others'); -INSERT INTO entity_mentions VALUES(873,'Express.js',12,408,'others'); -INSERT INTO entity_mentions VALUES(874,'ExtJS 4.1',12,409,'others'); -INSERT INTO entity_mentions VALUES(875,'Sencha 4.2.0',12,409,'others'); -INSERT INTO entity_mentions VALUES(876,'ExtJS',12,409,'others'); -INSERT INTO entity_mentions VALUES(877,'Ext JS',12,409,'others'); -INSERT INTO entity_mentions VALUES(878,'jqGrid',12,410,'others'); -INSERT INTO entity_mentions VALUES(879,'JQuery 1.7',12,411,'others'); -INSERT INTO entity_mentions VALUES(880,'JQuery',12,411,'others'); -INSERT INTO entity_mentions VALUES(881,'jqueryui',12,412,'others'); -INSERT INTO entity_mentions VALUES(882,'jQuery UI',12,412,'others'); -INSERT INTO entity_mentions VALUES(883,'jquery-ui',12,412,'others'); -INSERT INTO entity_mentions VALUES(884,'react',12,413,'others'); -INSERT INTO entity_mentions VALUES(885,'ReactJS',12,413,'others'); -INSERT INTO entity_mentions VALUES(886,'react.js',12,413,'others'); -INSERT INTO entity_mentions VALUES(887,'Scriptaculous',12,414,'others'); -INSERT INTO entity_mentions VALUES(888,'script.aculo.us',12,414,'others'); -INSERT INTO entity_mentions VALUES(889,'Valums File Uploader',12,415,'others'); -INSERT INTO entity_mentions VALUES(890,'Valums AJAX File Uploader',12,415,'others'); -INSERT INTO entity_mentions VALUES(891,'Jboss 7',8,268,'others'); -INSERT INTO entity_mentions VALUES(892,'JBOSS 5.1.2',8,268,'others'); -INSERT INTO entity_mentions VALUES(893,'Red Hat JBoss Enterprise Application Platform 6.3',8,268,'others'); -INSERT INTO entity_mentions VALUES(894,'EAP',8,268,'others'); -INSERT INTO entity_mentions VALUES(895,'JBOSS-EAP',8,268,'others'); -INSERT INTO entity_mentions VALUES(896,'JBoss Application Server 4',8,268,'others'); -INSERT INTO entity_mentions VALUES(897,'JBoss Application Server 7',8,268,'others'); -INSERT INTO entity_mentions VALUES(898,'JBoss Application Server 5',8,268,'others'); -INSERT INTO entity_mentions VALUES(899,'JBoss Application Server',8,268,'others'); -INSERT INTO entity_mentions VALUES(900,'Enterprise Application Platform',8,268,'others'); -INSERT INTO entity_mentions VALUES(901,'JBoss',8,268,'others'); -INSERT INTO entity_mentions VALUES(902,'Jboss 7.1.2',8,268,'others'); -INSERT INTO entity_mentions VALUES(904,'JBOSS 5.1.2 EAP',8,268,'others'); -INSERT INTO entity_mentions VALUES(905,'server: Jboss',8,268,'others'); -INSERT INTO entity_mentions VALUES(906,'JBOSS 6.3.2 EAP',8,268,'others'); -INSERT INTO entity_mentions VALUES(907,'JBoss EAP 4.3',8,268,'others'); -INSERT INTO entity_mentions VALUES(908,'Jboss 4.1.2',8,268,'others'); -INSERT INTO entity_mentions VALUES(909,'JBOSS 5',8,268,'others'); -INSERT INTO entity_mentions VALUES(910,'JBOSS 6.3.2',8,268,'others'); -INSERT INTO entity_mentions VALUES(911,'JBoss Seam',7,492,'others'); -INSERT INTO entity_mentions VALUES(912,'SEAM',7,492,'others'); -INSERT INTO entity_mentions VALUES(913,'JCL',9,338,'others'); -INSERT INTO entity_mentions VALUES(914,'Jenkins',2,90,'others'); -INSERT INTO entity_mentions VALUES(915,'Job Information Language',9,339,'others'); -INSERT INTO entity_mentions VALUES(916,'JIL - Job Information Language',9,339,'others'); -INSERT INTO entity_mentions VALUES(917,'Job Information Language (JIL)',9,339,'others'); -INSERT INTO entity_mentions VALUES(918,'JIL',9,339,'others'); -INSERT INTO entity_mentions VALUES(919,'JoinIT by Acayosoft',2,91,'others'); -INSERT INTO entity_mentions VALUES(920,'Acayosoft JoinIT',2,91,'others'); -INSERT INTO entity_mentions VALUES(921,'JoinIT by Acayosoft v 9.0.8',2,91,'others'); -INSERT INTO entity_mentions VALUES(922,'joinIT',2,91,'others'); -INSERT INTO entity_mentions VALUES(923,'JScript',9,340,'others'); -INSERT INTO entity_mentions VALUES(924,'Kitura',8,269,'others'); -INSERT INTO entity_mentions VALUES(925,'LifeFlow',2,92,'others'); -INSERT INTO entity_mentions VALUES(926,'LifeFlow Tool',2,92,'others'); -INSERT INTO entity_mentions VALUES(927,'Linux 2.6.32-696.28.1.el6.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(928,'Other Linux (64-bit)',6,576,'others'); -INSERT INTO entity_mentions VALUES(929,'Linux',6,576,'others'); -INSERT INTO entity_mentions VALUES(930,'Linux 2.6.32-696.30.1.el6.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(931,'Linux 2.6.9',6,576,'others'); -INSERT INTO entity_mentions VALUES(932,'Linux 2.6.32-642.3.1.el6.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(933,'Linux - 2.6.18-371.1.2.el5',6,576,'others'); -INSERT INTO entity_mentions VALUES(934,'Linux 2.6.32-696.23.1.el6.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(935,'Other Linux (32-bit)',6,576,'others'); -INSERT INTO entity_mentions VALUES(936,'Linux (64-bit)',6,576,'others'); -INSERT INTO entity_mentions VALUES(937,'Linux 3.10.0-1062.el7.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(938,'Other 2.6.x Linux (64-bit)',6,576,'others'); -INSERT INTO entity_mentions VALUES(939,'CentOS 6 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(940,'LINUX CentOS 7.3',6,427,'others'); -INSERT INTO entity_mentions VALUES(941,'CentOS 4 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(942,'LINUX CentOS 6.2',6,427,'others'); -INSERT INTO entity_mentions VALUES(943,'Linux CentOS_5.5',6,427,'others'); -INSERT INTO entity_mentions VALUES(944,'CentOS 7.2',6,427,'others'); -INSERT INTO entity_mentions VALUES(945,'CentOS 6 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(946,'LINUX CentOS 6.8',6,427,'others'); -INSERT INTO entity_mentions VALUES(947,'LINUX CentOS 6.9',6,427,'others'); -INSERT INTO entity_mentions VALUES(948,'LINUX CentOS 6.4',6,427,'others'); -INSERT INTO entity_mentions VALUES(949,'CentOS 4/5/6 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(950,'CentOS 5 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(951,'Linux CentOS_5.2',6,427,'others'); -INSERT INTO entity_mentions VALUES(952,'CentOS 4 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(953,'CentOS 7 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(954,'CentOS 5 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(955,'CentOS 5.8 (x86)',6,427,'others'); -INSERT INTO entity_mentions VALUES(956,'CentOS 6.4',6,427,'others'); -INSERT INTO entity_mentions VALUES(957,'CentOS 7.5.184',6,427,'others'); -INSERT INTO entity_mentions VALUES(958,'CentOS 4/5/6 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(959,'CentOS',6,427,'others'); -INSERT INTO entity_mentions VALUES(960,'CentOS release 5.11',6,427,'others'); -INSERT INTO entity_mentions VALUES(961,'CentOS 4/5 or later (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(962,'LINUX CentOS 6.5',6,427,'others'); -INSERT INTO entity_mentions VALUES(963,'LINUX CentOS 6.7',6,427,'others'); -INSERT INTO entity_mentions VALUES(964,'LINUX CentOS 5.8',6,427,'others'); -INSERT INTO entity_mentions VALUES(965,'LINUX CentOS 5',6,427,'others'); -INSERT INTO entity_mentions VALUES(966,'CentOS 7.x',6,427,'others'); -INSERT INTO entity_mentions VALUES(967,'CentOS 4/5/6/7 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(968,'CentOS 4/5 or later (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(969,'LINUX CentOS 5.7',6,427,'others'); -INSERT INTO entity_mentions VALUES(970,'Check Point IPSO',6,428,'others'); -INSERT INTO entity_mentions VALUES(971,'Gaia Kernel version 2.7',6,428,'others'); -INSERT INTO entity_mentions VALUES(972,'Checkpoint',6,428,'others'); -INSERT INTO entity_mentions VALUES(973,'Check Point Gaia',6,428,'others'); -INSERT INTO entity_mentions VALUES(974,'Gaia Kernel version 2.6',6,428,'others'); -INSERT INTO entity_mentions VALUES(975,'Debian Linux',6,429,'others'); -INSERT INTO entity_mentions VALUES(976,'Debian GNU/Linux 8 (64-bit)',6,429,'others'); -INSERT INTO entity_mentions VALUES(977,'Debian',6,429,'others'); -INSERT INTO entity_mentions VALUES(978,'Debian Linux 8',6,429,'others'); -INSERT INTO entity_mentions VALUES(979,'LINUX Debian 6.0',6,429,'others'); -INSERT INTO entity_mentions VALUES(980,'Debian GNU/Linux 5 (64-bit)',6,429,'others'); -INSERT INTO entity_mentions VALUES(981,'Junos OS',6,430,'others'); -INSERT INTO entity_mentions VALUES(982,'JunOS',6,430,'others'); -INSERT INTO entity_mentions VALUES(983,'JunOS 8.0R14',6,430,'others'); -INSERT INTO entity_mentions VALUES(984,'JunOS 8.0R13',6,430,'others'); -INSERT INTO entity_mentions VALUES(985,'OpenSuse',6,431,'others'); -INSERT INTO entity_mentions VALUES(986,'SUSE openSUSE (64-bit)',6,431,'others'); -INSERT INTO entity_mentions VALUES(987,'Oracle - Linux Server - 7.5 Beta',6,432,'others'); -INSERT INTO entity_mentions VALUES(988,'Oracle Linux 7',6,432,'others'); -INSERT INTO entity_mentions VALUES(989,'LINUX Oracle EL 6.6 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(990,'OEL',6,432,'others'); -INSERT INTO entity_mentions VALUES(991,'LINUX Oracle EL 6.3 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(992,'LINUX Oracle EL 7.4 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(993,'OEL 6.5 (Oracle Linux)3.8.13-16.2.1.el6uek.x86_64',6,432,'others'); -INSERT INTO entity_mentions VALUES(994,'LINUX Oracle EL 5.11 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(995,'LINUX Oracle EL 5.10 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(996,'LINUX Oracle EL 5.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(997,'Oracle Linux 6.1',6,432,'others'); -INSERT INTO entity_mentions VALUES(998,'Oracle Linux 4/5 or later (64-bit)',6,432,'others'); -INSERT INTO entity_mentions VALUES(999,'LINUX Oracle EL 6.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(1000,'LINUX Oracle EL 6.8 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1001,'Oracle Linux 5 (64-bit)',6,432,'others'); -INSERT INTO entity_mentions VALUES(1002,'Oracle Enterprise Server 7.5',6,432,'others'); -INSERT INTO entity_mentions VALUES(1003,'Oracle Linux 5u10',6,432,'others'); -INSERT INTO entity_mentions VALUES(1004,'OEL6.7 - 3.8.13-68.3.4.el6uek.x86_64',6,432,'others'); -INSERT INTO entity_mentions VALUES(1005,'Oracle Linux Server 6.10',6,432,'others'); -INSERT INTO entity_mentions VALUES(1006,'LINUX Oracle EL 6.9 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1007,'LINUX Oracle EL 6.7 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1008,'Oracle Linux Server release 6.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(1009,'Oracle Linux Server 6.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(1010,'LINUX Oracle EL 5.8 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1011,'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_63',6,432,'others'); -INSERT INTO entity_mentions VALUES(1012,'Oracle Linux Server 6.7',6,432,'others'); -INSERT INTO entity_mentions VALUES(1013,'Oracle Enterprise Linux',6,432,'others'); -INSERT INTO entity_mentions VALUES(1014,'Oracle Linux',6,432,'others'); -INSERT INTO entity_mentions VALUES(1015,'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_62',6,432,'others'); -INSERT INTO entity_mentions VALUES(1016,'Oracle Linux 4 (64-bit)',6,432,'others'); -INSERT INTO entity_mentions VALUES(1017,'Photon OS',6,433,'others'); -INSERT INTO entity_mentions VALUES(1018,'VMware Photon',6,433,'others'); -INSERT INTO entity_mentions VALUES(1019,'VMware Photon 1',6,433,'others'); -INSERT INTO entity_mentions VALUES(1020,'Red Hat Enterprise Linux Server 6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1021,'Red Hat Enterprise Linux Server 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1022,'Linux - Redhat 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1023,'LINUX RedHat ES 5.7 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1024,'Red Hat Enterprise Linux Server 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1025,'Red Hat Enterprise Linux AS release 4 (Nahant Update 8)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1026,'Red Hat Enterprise Linux Server release 6.9 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1027,'RED HAT ENTERPRISE LINUX 5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1028,'Red Hat Enterprise Linux Server 6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1029,'LINUX RedHat EL 7.3 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1030,'RHEL',6,434,'others'); -INSERT INTO entity_mentions VALUES(1031,'Redhat Linux 5.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1032,'Linux Red Hat 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1033,'Red Hat Enterprise Linux Server 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1034,'Red Hat Enterprise Linux Server 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1035,'Red Hat(Linux)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1036,'LINUX Red Hat Enterprise Linux Server 5.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1037,'LINUX RedHat EL 5.7 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1038,'Linux Red Hat5.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1039,'Linux Red Hat3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1040,'LINUXRed Hat Enterprise Linux Server 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1041,'Red Hat Enterprise Linux Server 5.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1042,'LINUX RedHat EL 6.8 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1043,'RHEL 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1044,'Redhat - Redhat Linux 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1045,'Linux RH6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1046,'Red Hat Enterprise Linux 6 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1047,'RED HAT ENTERPRISE LINUX SERVER 6.X (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1048,'RHEL 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1049,'Red Hat Enterprise Linux 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1050,'LINUXRed Hat Enterprise Linux Server 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1051,'RHEL 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1052,'Red Hat Enterprise Linux Santiago 6.3 32 Bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1053,'LINUX RedHat EL 6.6 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1054,'RED HAT ENTERPRISE LINUX 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1055,'RED HAT ENTERPRISE LINUX SERVER 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1056,'Linux Red Hat6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1057,'RED HAT ENTERPRISE LINUX SERVER 7.X (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1058,'Red Hat Enterprise Linux Server release 7.3 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1059,'RHEL7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1060,'Linux Red Hat Enterprise Server 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1061,'Red Hat Enterprise Linux Server 7.6 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1062,'Red Hat Enterprise Linux 5 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1063,'Linux Red Hat6.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1064,'RHEL 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1065,'RHEL 7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1066,'RED HAT ENTERPRISE LINUX 4.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1067,'Red Hat Enterprise Linux 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1068,'Red Hat Enterprise Linux Server 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1069,'LINUX RedHat EL 7.5 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1070,'LINUXRed Hat Enterprise Linux Server 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1071,'LINUX RED HAT ENTERPRISE SERVER 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1072,'Unix Linux Redhat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1073,'LINUX RED HAT ENTERPRISE SERVER 6 X64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1074,'Red Hat Linux',6,434,'others'); -INSERT INTO entity_mentions VALUES(1075,'LINUX RED HAT ENTERPRISE SERVER 6.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1076,'RHEL6.6 - 2.6.32-504.el6.x86_64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1077,'RED HAT ENTERPRISE LINUX 5.X',6,434,'others'); -INSERT INTO entity_mentions VALUES(1078,'Linux Red Hat Enterprise Server 7.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1079,'Linux Red Hat4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1080,'Linux Red Hat Enterprise Server 6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1081,'Red Hat Enterprise Linux Server release 5.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1082,'Red Hat Linux x64 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1083,'Red Hat Enterprise Linux Server 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1084,'Linux Red Hat6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1085,'LINUX RED HAT ENTERPRISE SERVER 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1086,'Red Hat Enterprise Linux Server release 6.6 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1087,'RED HAT ENTERPRISE LINUX 6.X',6,434,'others'); -INSERT INTO entity_mentions VALUES(1088,'Red Hat Enterprise Linux Server 6.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1089,'RedHat Enterprise Linux 6 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1090,'RED HAT ENTERPRISE LINUX',6,434,'others'); -INSERT INTO entity_mentions VALUES(1091,'Redhat - Redhat Linux 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1092,'RED HAT ENTERPRISE LINUX 5.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1093,'RED HAT ENTERPRISE LINUX 5.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1094,'RED HAT ENTERPRISE LINUX 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1095,'Red Hat Enterprise Linux Server 5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1096,'Redhat - RHEL 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1097,'RHEL7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1098,'Red Hat Enterprise Linux Server release 7.5 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1099,'Red Hat Enterprise Linux 6 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1100,'Red Hat Entreprise Linux 6.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1101,'RED HAT ENTERPRISE LINUX 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1102,'RHEL 5.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1103,'Red Hat Enterprise Linux 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1104,'LINUX RedHat EL 6.2 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1105,'Linux Red Hat6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1106,'RED HAT ENTERPRISE LINUX 5.11 - 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1107,'Red Hat Enterprise Linux Server 5.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1108,'Redhat 6 64-Bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1109,'Red Hat Enterprise Linux 5 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1110,'Red Hat Enterprise Linux Server 7.',6,434,'others'); -INSERT INTO entity_mentions VALUES(1111,'RHEL 6.6 ((64 bit x86_64)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1112,'Red Hat Enterprise Linux Server Release 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1113,'LINUX RED HAT ENTERPRISE ES 4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1114,'Linux Red Hat Enterprise Server 5.11 (2.6.18-419.el5)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1115,'Red Hat Enterprise Linux Server release 6.8 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1116,'RED HAT ENTERPRISE LINUX 4.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1117,'Redhat Linux 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1118,'Red Hat Enterprise Linux AS',6,434,'others'); -INSERT INTO entity_mentions VALUES(1119,'RED HAT ADVANCED SERVER 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1120,'LINUX RED HAT ENTERPRISE SERVER 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1121,'RHEL6.7 - 2.6.32-573.el6.x86_64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1122,'Red Hat Enterprise Linux Server 5.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1123,'LINUX RedHat EL 5 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1124,'Red Hat Enterprise Linux 7.2 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1125,'LINUX RedHat EL 5.11 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1126,'RHEL 6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1127,'RHEL 6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1128,'Red Hat Enterprise Linux Server',6,434,'others'); -INSERT INTO entity_mentions VALUES(1129,'Red Hat Enterprise Linux Server 5.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1130,'Red Hat Enterprise Linux Santiago 6.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1131,'RED HAT ENTERPRISE LINUX 6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1132,'RED HAT ENTERPRISE LINUX 7.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1133,'Red Hat Enterprise Linux Server release 5.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1134,'RHEL Server',6,434,'others'); -INSERT INTO entity_mentions VALUES(1135,'Linux RHEL',6,434,'others'); -INSERT INTO entity_mentions VALUES(1136,'redhat6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1137,'RHEL 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1138,'Redhat - Redhat Linux 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1139,'Linux RH',6,434,'others'); -INSERT INTO entity_mentions VALUES(1140,'Red Hat Enterprise Linux Server release 6.10 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1141,'Red Hat Enterprise Linux 3 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1142,'Redhat - Red Hat(Linux)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1143,'RED HAT ENTERPRISE LINUX 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1144,'RED HAT ENTERPRISE LINUX SERVER 4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1145,'Redhat Linux 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1146,'Linux RH7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1147,'Red Hat Enterprise Linux Server release 5 (Tikanga)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1148,'RHEL 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1149,'LINUX Red Hat Enterprise Linux Server 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1150,'Red Hat Enterprise Linux Server 6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1151,'Red Hat Enterprise Linux Server release 7.4 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1152,'Red Hat V6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1153,'Redhat Linux',6,434,'others'); -INSERT INTO entity_mentions VALUES(1154,'RHEL 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1155,'RED HAT ENTERPRISE LINUX 6.X TPM',6,434,'others'); -INSERT INTO entity_mentions VALUES(1156,'Linux Red Hat5.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1157,'Linux Red Hat5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1158,'Linux RH5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1159,'Red Hat Enterprise Linux Santiago 6.3 64 Bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1160,'rehl5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1161,'RED HAT ENTERPRISE LINUX ES 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1162,'Red Hat Enterprise Linux Server release 7.6 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1163,'LINUX RED HAT ENTERPRISE SERVER 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1164,'Red Hat Enterprise Linux 4 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1165,'RHEL 7.xx',6,434,'others'); -INSERT INTO entity_mentions VALUES(1166,'Red Hat Enterprise Linux Server 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1167,'Red Hat Enterprise Linux Server release 7.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1168,'Red Hat Enterprise Linux 7 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1169,'Red Hat Enterprise Linux 5 Update 3 (RHEL 5.3) for x86-64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1170,'LINUX RED HAT ENTERPRISE AS 4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1171,'RHEL Linux',6,434,'others'); -INSERT INTO entity_mentions VALUES(1172,'RHEL 7.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1173,'RED HAT ENTERPRISE LINUX 4.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1174,'RED HAT ENTERPRISE LINUX 6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1175,'Linux Red Hat6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1176,'RHEL 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1177,'RHEL 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1178,'RED HAT ENTERPRISE LINUX 5.X TPM',6,434,'others'); -INSERT INTO entity_mentions VALUES(1179,'RED HAT ENTERPRISE LINUX ES 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1180,'LINUX RedHat EL 7.4 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1181,'Red Hat Enterprise Linux Server release 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1182,'Red Hat Linux 5.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1183,'LINUX RED HAT ENTERPRISE SERVER 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1184,'LINUX RedHat EL 5.0 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1185,'Red Hat Enterprise Linux Server release 6.3 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1186,'RED HAT ENTERPRISE LINUX SERVER 5.X (Tikanga)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1187,'Red Hat Enterprise Linux Server 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1188,'Linux Red Hat 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1189,'Linux Red Hat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1190,'Red Hat 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1191,'LINUX Red Hat Enterprise Linux Server 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1192,'LINUX Red Hat Enterprise Linux Server 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1193,'Red Hat Enterprise Linux Server 5.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1194,'RHEL7.xx',6,434,'others'); -INSERT INTO entity_mentions VALUES(1195,'RHEL 6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1196,'Linux Red Hat5.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1197,'Red Hat Enterprise Linux Server 7.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1198,'Red Hat Enterprise Linux Server release 6.5 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1199,'Linux Red Hat6.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1200,'Red Hat Enterprise Linux Server 6.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1201,'LINUXRed Hat Enterprise Linux Server 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1202,'Red Hat Enterprise Linux 7.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1203,'Red Hat Enterprise Linux Server 7.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1204,'Redhat Linux 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1205,'red hat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1206,'LINUX RedHat EL 6.10 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1207,'Red Hat Enterprise Linux 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1208,'Red Hat Enterprise Linux Server release 6.7 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1209,'Linux Red Hat5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1210,'Red Hat Enterprise Linux 7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1211,'Red Hat Linux 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1212,'RED HAT ENTERPRISE LINUX 7.X',6,434,'others'); -INSERT INTO entity_mentions VALUES(1213,'RHEL x86-64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1214,'LINUX RED HAT ENTERPRISE SERVER 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1215,'Red Hat Enterprise Linux Server 4.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1216,'RED HAT ENTERPRISE LINUX 5 (64 Bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1217,'Redhat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1218,'RED HAT ENTERPRISE LINUX 7.X TPM',6,434,'others'); -INSERT INTO entity_mentions VALUES(1219,'Red Hat Enterprise Linux Server 6.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1220,'Red Hat Enterprise Linux Server 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1221,'RED HAT ENTERPRISE LINUX SERVER 6.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1222,'RedHat 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1223,'Redhat Linux 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1224,'LINUX RED HAT 5 EL',6,434,'others'); -INSERT INTO entity_mentions VALUES(1225,'LINUX RedHat EL 6.9 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1226,'RED HAT ENTERPRISE LINUX 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1227,'suse enterprise server 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1228,'SUSE Linux Enterprise Server 12 x86_64',6,435,'others'); -INSERT INTO entity_mentions VALUES(1229,'SUSE11',6,435,'others'); -INSERT INTO entity_mentions VALUES(1230,'SUSE Linux Enterprise 10 (32-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1231,'SUSE Linux Enterprise 10 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1232,'Linux SuSE12',6,435,'others'); -INSERT INTO entity_mentions VALUES(1233,'SUSE Linux Enterprise 12 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1234,'Linux SuSE2.6.32-504.12.2.el6.x86_64',6,435,'others'); -INSERT INTO entity_mentions VALUES(1235,'LINUXSUSE_SLES 11.4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1236,'SUSE Linux Enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1237,'SUSE10',6,435,'others'); -INSERT INTO entity_mentions VALUES(1238,'SUSE Linux 12',6,435,'others'); -INSERT INTO entity_mentions VALUES(1239,'LINUX SUSE_SLES 11.4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1240,'LINUX SuSE Enterprise Server 11 64bit',6,435,'others'); -INSERT INTO entity_mentions VALUES(1241,'SLES 11 SP4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1242,'SUSE Enterprise Server 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1243,'SUSELinux Enterprise 11.x',6,435,'others'); -INSERT INTO entity_mentions VALUES(1244,'SUSE Linux Enterprise Server 11 x86_64',6,435,'others'); -INSERT INTO entity_mentions VALUES(1245,'SUSE Enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1246,'SUSE Enterprise 10 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1247,'suse enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1248,'SUSE LINUX ENTERPRISE SERVER 11, SERVICE PACK SERVICE PACK SP4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1249,'SUSE Linux 11',6,435,'others'); -INSERT INTO entity_mentions VALUES(1250,'SUSE Linux 11 SP3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1251,'SUSE Linux Eneterprise Server (SLES) 11.0',6,435,'others'); -INSERT INTO entity_mentions VALUES(1252,'SUSE Linux',6,435,'others'); -INSERT INTO entity_mentions VALUES(1253,'SLES 9',6,435,'others'); -INSERT INTO entity_mentions VALUES(1254,'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1255,'Linux SuSE11',6,435,'others'); -INSERT INTO entity_mentions VALUES(1256,'SUSE',6,435,'others'); -INSERT INTO entity_mentions VALUES(1257,'SUSELinux Enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1258,'LINUX SuSE Enterprise Server 9',6,435,'others'); -INSERT INTO entity_mentions VALUES(1259,'LINUX SuSE 10.0 Enterprise',6,435,'others'); -INSERT INTO entity_mentions VALUES(1260,'SUSE LINUX ENTERPRISE SERVER 11.3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1261,'SUSE LINUX Enterprise Server 9 (i586) VERSION = 9 PATCHLEVEL = 3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1262,'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 1',6,435,'others'); -INSERT INTO entity_mentions VALUES(1263,'SUSE Linux Enterprise 11 SP4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1264,'SuseLinux',6,435,'others'); -INSERT INTO entity_mentions VALUES(1265,'SLES 12 SP2 for Power/SAP',6,435,'others'); -INSERT INTO entity_mentions VALUES(1266,'SUSE Linux Enterprise Server',6,435,'others'); -INSERT INTO entity_mentions VALUES(1267,'LINUX Ubuntu 12.04.1 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1268,'Ubuntu - Ubuntu Server - 16.04.1 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1269,'Ubuntu Linux (32-bit)',6,436,'others'); -INSERT INTO entity_mentions VALUES(1270,'LINUX Ubuntu 16.04 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1271,'Ubuntu Linux Server 10 (64-bit)',6,436,'others'); -INSERT INTO entity_mentions VALUES(1272,'Ubuntu',6,436,'others'); -INSERT INTO entity_mentions VALUES(1273,'LINUX Ubuntu 14.04 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1274,'UBUNTU LINUX (64-BIT)',6,436,'others'); -INSERT INTO entity_mentions VALUES(1275,'Ubuntu Linux',6,436,'others'); -INSERT INTO entity_mentions VALUES(1276,'LINUX UBUNTU 16.04',6,436,'others'); -INSERT INTO entity_mentions VALUES(1277,'LINUX Ubuntu',6,436,'others'); -INSERT INTO entity_mentions VALUES(1278,'Linux - Ubuntu Server 16.04.1 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1279,'zLinux',6,437,'others'); -INSERT INTO entity_mentions VALUES(1280,'Lisp',9,341,'others'); -INSERT INTO entity_mentions VALUES(1281,'Lotus Domino',8,270,'others'); -INSERT INTO entity_mentions VALUES(1282,'domino8.5',8,270,'others'); -INSERT INTO entity_mentions VALUES(1283,'Domino 8.x',8,270,'others'); -INSERT INTO entity_mentions VALUES(1284,'Lotus Notes',2,93,'others'); -INSERT INTO entity_mentions VALUES(1285,'Lotus Notes Internal',2,93,'others'); -INSERT INTO entity_mentions VALUES(1286,'Lucee',8,271,'others'); -INSERT INTO entity_mentions VALUES(1287,'Lucee 5.2.6.60',8,271,'others'); -INSERT INTO entity_mentions VALUES(1288,'MaaS360',2,94,'others'); -INSERT INTO entity_mentions VALUES(1289,'mac OS',6,438,'others'); -INSERT INTO entity_mentions VALUES(1290,'macOS',6,438,'others'); -INSERT INTO entity_mentions VALUES(1291,'Darwin',6,438,'others'); -INSERT INTO entity_mentions VALUES(1292,'Malwarebytes Anti-Malware',2,95,'others'); -INSERT INTO entity_mentions VALUES(1293,'Malwarebytes Corporation - Malwarebytes Anti-Malware 3.4',2,95,'others'); -INSERT INTO entity_mentions VALUES(1294,'Malwarebytes',2,95,'others'); -INSERT INTO entity_mentions VALUES(1295,'ManageEngine ADSelfService Plus',2,96,'others'); -INSERT INTO entity_mentions VALUES(1296,'Manage Engine ADSelfService Porta',2,96,'others'); -INSERT INTO entity_mentions VALUES(1297,'Marklogic',2,97,'others'); -INSERT INTO entity_mentions VALUES(1298,'MarkLogic DB',2,97,'others'); -INSERT INTO entity_mentions VALUES(1299,'Memcache',2,98,'others'); -INSERT INTO entity_mentions VALUES(1300,'Memcached',2,98,'others'); -INSERT INTO entity_mentions VALUES(1301,'ACCDB',2,99,'others'); -INSERT INTO entity_mentions VALUES(1302,'Microsoft Access',2,99,'others'); -INSERT INTO entity_mentions VALUES(1303,'Access DB',2,99,'others'); -INSERT INTO entity_mentions VALUES(1304,'MS Access 2016',2,99,'others'); -INSERT INTO entity_mentions VALUES(1305,'MS Access',2,99,'others'); -INSERT INTO entity_mentions VALUES(1306,'Microsoft BizTalk Adapters for Host Systems 2.0',2,100,'others'); -INSERT INTO entity_mentions VALUES(1307,'Microsoft BizTalk Adapters for Host Systems',2,100,'others'); -INSERT INTO entity_mentions VALUES(1308,'Microsoft Dynamics AX',2,101,'others'); -INSERT INTO entity_mentions VALUES(1309,'MS Dynamics AX 4',2,101,'others'); -INSERT INTO entity_mentions VALUES(1310,'Microsoft - Microsoft System Center Configuration Manager 2012',2,102,'others'); -INSERT INTO entity_mentions VALUES(1311,'SCCM',2,102,'others'); -INSERT INTO entity_mentions VALUES(1312,'Microsoft Endpoint Configuration Manager (SCCM)',2,102,'others'); -INSERT INTO entity_mentions VALUES(1313,'ConfigMgr',2,102,'others'); -INSERT INTO entity_mentions VALUES(1314,'Microsoft - Microsoft System Center Configuration Manager Client 5',2,102,'others'); -INSERT INTO entity_mentions VALUES(1315,'Microsoft Endpoint Configuration Manager',2,102,'others'); -INSERT INTO entity_mentions VALUES(1316,'MS System Centre Configuration Manager',2,102,'others'); -INSERT INTO entity_mentions VALUES(1317,'MS Excel',2,103,'others'); -INSERT INTO entity_mentions VALUES(1318,'Excel',2,103,'others'); -INSERT INTO entity_mentions VALUES(1319,'Microsoft Excel 2010',2,103,'others'); -INSERT INTO entity_mentions VALUES(1320,'Microsoft Excel',2,103,'others'); -INSERT INTO entity_mentions VALUES(1321,'Excel 2010',2,103,'others'); -INSERT INTO entity_mentions VALUES(1322,'Microsoft Exchange Server',2,104,'others'); -INSERT INTO entity_mentions VALUES(1323,'MS Exchange 2010 Enterprise',2,104,'others'); -INSERT INTO entity_mentions VALUES(1324,'Veeam Explorer',5,464,'others'); -INSERT INTO entity_mentions VALUES(1325,'Microsoft Forefront Identity Manager (FIM)',2,105,'others'); -INSERT INTO entity_mentions VALUES(1326,'Microsoft Forefront Identity Manager',2,105,'others'); -INSERT INTO entity_mentions VALUES(1327,'FIM SQL Development Server',2,105,'others'); -INSERT INTO entity_mentions VALUES(1328,'InfoPath',2,106,'others'); -INSERT INTO entity_mentions VALUES(1329,'Microsoft InfoPath',2,106,'others'); -INSERT INTO entity_mentions VALUES(1330,'Microsoft - Internet Explor',2,107,'others'); -INSERT INTO entity_mentions VALUES(1331,'Microsoft - Internet Explorer 11',2,107,'others'); -INSERT INTO entity_mentions VALUES(1332,'Microsoft Internet Explorer',2,107,'others'); -INSERT INTO entity_mentions VALUES(1333,'Internet Explor',2,107,'others'); -INSERT INTO entity_mentions VALUES(1334,'ISA Server',2,108,'others'); -INSERT INTO entity_mentions VALUES(1335,'Microsoft ISA Server',2,108,'others'); -INSERT INTO entity_mentions VALUES(1336,'Microsoft MQ',2,109,'others'); -INSERT INTO entity_mentions VALUES(1337,'System Center Endpoint Protection for Mac',2,110,'others'); -INSERT INTO entity_mentions VALUES(1338,'System Center 2012 Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1339,'Microsoft System Center 2012 Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1340,'Microsoft - Microsoft System Center 2012 Endpoint Protection 2.2',2,110,'others'); -INSERT INTO entity_mentions VALUES(1341,'SCEP for Linux',2,110,'others'); -INSERT INTO entity_mentions VALUES(1342,'System Center Endpoint Protection for Linux',2,110,'others'); -INSERT INTO entity_mentions VALUES(1343,'Microsoft System Center Endpoint Protection 2012',2,110,'others'); -INSERT INTO entity_mentions VALUES(1344,'System Center 2012 R2 Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1345,'SCEP for Mac',2,110,'others'); -INSERT INTO entity_mentions VALUES(1346,'Microsoft System Center Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1347,'System Center Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1348,'Microsoft - Microsoft Visual Studio 2010',2,111,'others'); -INSERT INTO entity_mentions VALUES(1349,'Microsoft Visual Studio 2010',2,111,'others'); -INSERT INTO entity_mentions VALUES(1350,'Microsoft Visual Studio',2,111,'others'); -INSERT INTO entity_mentions VALUES(1351,'Visual Studio',2,111,'others'); -INSERT INTO entity_mentions VALUES(1352,'Microsoft Web Deploy 2.0',2,112,'others'); -INSERT INTO entity_mentions VALUES(1353,'Microsoft Web Deploy',2,112,'others'); -INSERT INTO entity_mentions VALUES(1354,'Web Deploy',2,112,'others'); -INSERT INTO entity_mentions VALUES(1355,'msdeploy',2,112,'others'); -INSERT INTO entity_mentions VALUES(1356,'Web Farm Framework',2,113,'others'); -INSERT INTO entity_mentions VALUES(1357,'Microsoft Web Farm Framework Version 2.2',2,113,'others'); -INSERT INTO entity_mentions VALUES(1358,'Microsoft Web Farm Framework',2,113,'others'); -INSERT INTO entity_mentions VALUES(1359,'WFF',2,113,'others'); -INSERT INTO entity_mentions VALUES(1360,'Microsoft Web Farm Framework (WFF)',2,113,'others'); -INSERT INTO entity_mentions VALUES(1361,'WebPI',2,114,'others'); -INSERT INTO entity_mentions VALUES(1362,'Web Platform Installer',2,114,'others'); -INSERT INTO entity_mentions VALUES(1363,'Microsoft Web Platform Installer',2,114,'others'); -INSERT INTO entity_mentions VALUES(1364,'Microsoft Web Platform Installer 3.0',2,114,'others'); -INSERT INTO entity_mentions VALUES(1365,'Web PI',2,114,'others'); -INSERT INTO entity_mentions VALUES(1366,'MDW 6',2,115,'others'); -INSERT INTO entity_mentions VALUES(1367,'MDW Framework',2,115,'others'); -INSERT INTO entity_mentions VALUES(1368,'MDW',2,115,'others'); -INSERT INTO entity_mentions VALUES(1369,'Model Driven Workflow',2,115,'others'); -INSERT INTO entity_mentions VALUES(1370,'Model Driven Workflow (MDW)',2,115,'others'); -INSERT INTO entity_mentions VALUES(1371,'MONGO-DB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1372,'Mango DB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1373,'Mongo DB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1374,'MangoDB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1375,'MongoDB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1376,'Mozilla.org - Firefox 38.5',2,117,'others'); -INSERT INTO entity_mentions VALUES(1377,'Firefox',2,117,'others'); -INSERT INTO entity_mentions VALUES(1378,'Mozilla.org',2,117,'others'); -INSERT INTO entity_mentions VALUES(1379,'Mozilla.org - Firefox 68',2,117,'others'); -INSERT INTO entity_mentions VALUES(1380,'Mozilla Firefox',2,117,'others'); -INSERT INTO entity_mentions VALUES(1381,'Mozilla.or',2,117,'others'); -INSERT INTO entity_mentions VALUES(1382,'MQ Client 7.5',2,118,'others'); -INSERT INTO entity_mentions VALUES(1383,'MQ Client',2,118,'others'); -INSERT INTO entity_mentions VALUES(1384,'MS Office 365',2,119,'others'); -INSERT INTO entity_mentions VALUES(1385,'Office 365',2,119,'others'); -INSERT INTO entity_mentions VALUES(1386,'O365',2,119,'others'); -INSERT INTO entity_mentions VALUES(1387,'MS SQL Server 2008 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1388,'MS SQL 2008R2SP2ENT (10.52.4042.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1389,'MS SQL Server 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1390,'SQL Server 11.0.2100.60',2,581,'others'); -INSERT INTO entity_mentions VALUES(1391,'MS SQL 2016 SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1392,'SQL 2012 Development Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1393,'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.5',2,581,'others'); -INSERT INTO entity_mentions VALUES(1394,'Microsoft - Microsoft SQL Server 2012 for Microsoft SQL Server 2012 Standard Edition 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1395,'MS SQL Server MS SQL Server 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1396,'SQL Server 2016 SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1397,'SQL Server 2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1398,'SQL Server 2005 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1399,'Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (X64)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1400,'MICROSOFT SQL SERVER 2005 STANDARD EDITION 9.*',2,581,'others'); -INSERT INTO entity_mentions VALUES(1401,'Microsoft SQL Server SQL Server 2008 R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1402,'MICROSOFT SQL SERVER 2012 DEVELOPER EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1403,'Microsoft SQL Server 2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1404,'MS SQL Server 2008 R2 Express',2,581,'others'); -INSERT INTO entity_mentions VALUES(1405,'SQL Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1406,'SQL Server 2012 SP3',2,581,'others'); -INSERT INTO entity_mentions VALUES(1407,'SQL Server 2003',2,581,'others'); -INSERT INTO entity_mentions VALUES(1408,'Microsoft SQL Server 2016 - Service pack 2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1409,'SQL SERVER 2008 R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1410,'MS SQL Server 2008 Enterprise R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1411,'MS SQL Server 2014 Express',2,581,'others'); -INSERT INTO entity_mentions VALUES(1412,'SQL Server 2008 R2 SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1413,'SQL Server 2008 R2 Enterprize SP2 64Bit',2,581,'others'); -INSERT INTO entity_mentions VALUES(1414,'MICROSOFT SQL SERVER 2012 STANDARD EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1415,'MS SQL Server 2008 Developer',2,581,'others'); -INSERT INTO entity_mentions VALUES(1416,'SQL 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1417,'MICROSOFT SQL SERVER 2008 DEVELOPER EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1418,'Microsoft SQL Server 2012 (SP4-GDR)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1419,'MS SQL Server 2012 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1420,'Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1421,'MS SQL Server 2005 Express',2,581,'others'); -INSERT INTO entity_mentions VALUES(1422,'SQL Server 2016',2,581,'others'); -INSERT INTO entity_mentions VALUES(1423,'Microsoft SQL Server 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1424,'Microsoft SQL Server SQL Server 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1425,'MS SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1426,'sql server 2009 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1427,'Microsoft - Microsoft SQL - 13.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1428,'MSSQL Database Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1429,'SQL Server 2008 R2 SP3',2,581,'others'); -INSERT INTO entity_mentions VALUES(1430,'sql server 2013 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1431,'SQL 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1432,'Microsoft SQL Server 2000 (SP4)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1433,'MS SQL Server 2012 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1434,'MSSQL2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1435,'MS SQL server 2008 R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1436,'MS SQL Server 2000 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1437,'MS SQLServer',2,581,'others'); -INSERT INTO entity_mentions VALUES(1438,'microsoft sql',2,581,'others'); -INSERT INTO entity_mentions VALUES(1439,'MS SQL 2008R2SP2STD (10.52.4042.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1440,'MS SQL Server 2008 R2 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1441,'MS SQL Server 2005 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1442,'MS SQL Server 2008 Standard R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1443,'SQL Server 12.0.2000.8',2,581,'others'); -INSERT INTO entity_mentions VALUES(1444,'MS SQL 2008R2SP3STD (10.53.6220.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1445,'SQL Server 11.0.5388.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1446,'sql server 2011 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1447,'MS SQL Server 2014 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1448,'sql server 2008 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1449,'SQl 2016',2,581,'others'); -INSERT INTO entity_mentions VALUES(1450,'Microsoft SQL Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1451,'SQL Server 2014 SP2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1452,'SQL Server 2008 R2 RTM',2,581,'others'); -INSERT INTO entity_mentions VALUES(1453,'Microsoft SQL Server Standard Edition',2,581,'others'); -INSERT INTO entity_mentions VALUES(1454,'MS SQL Server 2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1455,'sql2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1456,'SQL Server 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1457,'Microsoft SQL Server 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1458,'SQL Server 10.0.5538.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1459,'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Express Edition 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1460,'MICROSOFT SQL SERVER 2014 ENTERPRISE EDITION 12',2,581,'others'); -INSERT INTO entity_mentions VALUES(1461,'SQL Server 11.0.3156.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1462,'SQLServer',2,581,'others'); -INSERT INTO entity_mentions VALUES(1463,'SQL Server 2000 SP4',2,581,'others'); -INSERT INTO entity_mentions VALUES(1464,'SQL Server 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1465,'SQL Server 2008 R2 STD SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1466,'sql server 2010 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1467,'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1468,'Microsoft SQL Server 2012 (SP4) (KB4018073) - 11.0.7001.0 (X64)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1469,'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12',2,581,'others'); -INSERT INTO entity_mentions VALUES(1470,'MS SQL SERVER 08',2,581,'others'); -INSERT INTO entity_mentions VALUES(1471,'SQL Server 10.50.2550.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1472,'Microsoft SQL Server 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1473,'SQL 2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1474,'sql server 2012 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1475,'MS SQL Server 2017',2,581,'others'); -INSERT INTO entity_mentions VALUES(1476,'MS SQL Server 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1477,'MS SQL Server 2008 R2 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1478,'SQL Server 9.0.1399.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1479,'MS SQL 2008SP2STD (10.2.4067.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1480,'SQL Server 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1481,'Microsoft SQL Server 8.1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1482,'Microsoft - Microsoft SQL Server 2005 for Microsoft SQL Server 2005 Express Edition 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1483,'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Standard Edition 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1484,'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.*',2,581,'others'); -INSERT INTO entity_mentions VALUES(1485,'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION 10.5',2,581,'others'); -INSERT INTO entity_mentions VALUES(1486,'MS SQL 2005SP3STD (9.3.4340)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1487,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1488,'SQL Server 2017 RTM',2,581,'others'); -INSERT INTO entity_mentions VALUES(1489,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11.0"',2,581,'others'); -INSERT INTO entity_mentions VALUES(1490,'SQL 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1491,'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Express Edition 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1492,'Microsoft SQL Server 2008R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1493,'SQL Server 2008 SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1494,'MICROSOFT SQL SERVER 2005 ENTERPRISE EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1495,'SQLSVR2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1496,'MICROSOFT SQL SERVER 2008 ENTERPRISE EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1497,'SQL Server 9.0.5069.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1498,'MS SQL Instance',2,581,'others'); -INSERT INTO entity_mentions VALUES(1499,'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Standard Edition 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1500,'MICROSOFT SQL SERVER 2008 STANDARD EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1501,'SQL Server 2012 SP4',2,581,'others'); -INSERT INTO entity_mentions VALUES(1502,'Microsoft SQL sever 2008 R2 SP 3',2,581,'others'); -INSERT INTO entity_mentions VALUES(1503,'SQL Server 2012 SP2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1504,'Microsoft SQL Server 2016',2,581,'others'); -INSERT INTO entity_mentions VALUES(1505,'MS SQL Server 2012 Developer',2,581,'others'); -INSERT INTO entity_mentions VALUES(1506,'MS SQL 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1507,'MS SQL Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1508,'MS SQL Server 2005 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1509,'SQL Server 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1510,'MS SQL Server 2016',2,581,'others'); -INSERT INTO entity_mentions VALUES(1511,'MICROSOFT SQL SERVER 2012 STANDARD EDITION 11',2,581,'others'); -INSERT INTO entity_mentions VALUES(1512,'SQL Server 10.0.2531.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1513,'MICROSOFT SQL SERVER 2000 STANDARD EDITION 8.*',2,581,'others'); -INSERT INTO entity_mentions VALUES(1514,'MS SQL Server 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1515,'Microsoft - SQL Server Express LocalDB 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1516,'MS SQL 2012SP3STD (11.3.6020.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1517,'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1518,'MSSQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1519,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11',2,581,'others'); -INSERT INTO entity_mentions VALUES(1520,'Microsoft - Microsoft SQL Server 2008 for Microsoft SQL Server 2008 Express Edition 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1521,'SQL Server 2008 SP4',2,581,'others'); -INSERT INTO entity_mentions VALUES(1522,'Microsoft SQL Server 2008 R2 Policies 10.50.1600.1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1523,'Microsoft SQL Server 1997 (SP4)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1524,'MS SQL Server 2008 Express',2,581,'others'); -INSERT INTO entity_mentions VALUES(1525,'MS SQL 2005SP4STD (9.4.5324)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1526,'SQL 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1527,'MS SQL Server 2008 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1528,'MS SQL Server 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1529,'SQL 2008 R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1530,'Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (X64)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1531,'MS SQL Server 2014 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1532,'SQL Server 2016 SP2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1533,'Microsoft SQL Server 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1534,'Microsoft SQL Server Browser 10.52.4000.0',5,465,'others'); -INSERT INTO entity_mentions VALUES(1535,'MS SQL Server Browser',5,465,'others'); -INSERT INTO entity_mentions VALUES(1536,'MS SQL Server Compact',2,121,'others'); -INSERT INTO entity_mentions VALUES(1537,'Microsoft SQL Server Compact 3.5 SP2 ENU 3.5.8080.0',2,121,'others'); -INSERT INTO entity_mentions VALUES(1538,'Microsoft SQL Server Compact 3.5 SP2 Query Tools ENU 3.5.8080.0',2,121,'others'); -INSERT INTO entity_mentions VALUES(1539,'MS DTS',5,466,'others'); -INSERT INTO entity_mentions VALUES(1540,'Data Transformation Services',5,466,'others'); -INSERT INTO entity_mentions VALUES(1541,'Microsoft - Microsoft SQL Server Replication Logreader Agent 9',5,467,'others'); -INSERT INTO entity_mentions VALUES(1542,'Log Reader Agent',5,467,'others'); -INSERT INTO entity_mentions VALUES(1543,'SQL Server Analysis Services 10.50.2500.0',5,468,'others'); -INSERT INTO entity_mentions VALUES(1544,'SQL Server Analysis Services 11.0.2218.0',5,468,'others'); -INSERT INTO entity_mentions VALUES(1545,'SQL Server Analysis Services',5,468,'others'); -INSERT INTO entity_mentions VALUES(1546,'Microsoft - Microsoft SQL Server Analysis Services 2012 for Microsoft SQL Server 2012 Standard Edition 2012',5,468,'others'); -INSERT INTO entity_mentions VALUES(1547,'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014',5,468,'others'); -INSERT INTO entity_mentions VALUES(1548,'SSAS 2012',5,468,'others'); -INSERT INTO entity_mentions VALUES(1549,'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014',5,468,'others'); -INSERT INTO entity_mentions VALUES(1550,'SQL Server Analysis Services 12.0.2000.8',5,468,'others'); -INSERT INTO entity_mentions VALUES(1551,'SQL Server Analysis Services (SSAS)',5,468,'others'); -INSERT INTO entity_mentions VALUES(1552,'SQL Server Analysis Services 11.0.3000.0',5,468,'others'); -INSERT INTO entity_mentions VALUES(1553,'SSAS',5,468,'others'); -INSERT INTO entity_mentions VALUES(1554,'6+ SSAS databases',5,468,'others'); -INSERT INTO entity_mentions VALUES(1555,'25+ SSAS databases',5,468,'others'); -INSERT INTO entity_mentions VALUES(1556,'SQL Server Database Engine',5,469,'others'); -INSERT INTO entity_mentions VALUES(1557,'Microsoft - Microsoft SQL Server Database Engine Services 10.1',5,469,'others'); -INSERT INTO entity_mentions VALUES(1558,'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014',5,470,'others'); -INSERT INTO entity_mentions VALUES(1559,'SSIS',5,470,'others'); -INSERT INTO entity_mentions VALUES(1560,'SSIS 2008 R3',5,470,'others'); -INSERT INTO entity_mentions VALUES(1561,'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014',5,470,'others'); -INSERT INTO entity_mentions VALUES(1562,'SSIS 2008 R4',5,470,'others'); -INSERT INTO entity_mentions VALUES(1563,'SQL Server Integration Services',5,470,'others'); -INSERT INTO entity_mentions VALUES(1564,'SSIS 2008 R2',5,470,'others'); -INSERT INTO entity_mentions VALUES(1565,'SSIS - 2008',5,470,'others'); -INSERT INTO entity_mentions VALUES(1566,'SQL Server Integration Services (SSIS)',5,470,'others'); -INSERT INTO entity_mentions VALUES(1567,'Microsoft - Microsoft SQL Server Management Studio 16',5,471,'others'); -INSERT INTO entity_mentions VALUES(1568,'Microsoft SQL Server Management studio2016',5,471,'others'); -INSERT INTO entity_mentions VALUES(1569,'SQL Management Studio',5,471,'others'); -INSERT INTO entity_mentions VALUES(1570,'SQL server mgmt studio 2012',5,471,'others'); -INSERT INTO entity_mentions VALUES(1571,'SQL Server Management Studio',5,471,'others'); -INSERT INTO entity_mentions VALUES(1572,'Microsoft - SQL Server Management Studio 2012',5,471,'others'); -INSERT INTO entity_mentions VALUES(1573,'Microsoft - Microsoft SQL Report Builder 10.5',5,472,'others'); -INSERT INTO entity_mentions VALUES(1574,'SQL Server Report Builder',5,472,'others'); -INSERT INTO entity_mentions VALUES(1575,'SQL Server Reporting Services 10.50.2500.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1576,'SQL Server Reporting Services',5,473,'others'); -INSERT INTO entity_mentions VALUES(1577,'SQL Server Reporting Services 11.0.5058.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1578,'SQL Server Reporting Services 12.0.2000.8',5,473,'others'); -INSERT INTO entity_mentions VALUES(1579,'SQL Server Reporting Services 11.0.2218.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1580,'Microsoft - Microsoft SQL Server Reporting Services 2012 for Microsoft SQL Server 2012 Express Edition 2012',5,473,'others'); -INSERT INTO entity_mentions VALUES(1581,'SQL Server Reporting Services 11.0.3000.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1582,'SSRS 2016',5,473,'others'); -INSERT INTO entity_mentions VALUES(1583,'SSRS',5,473,'others'); -INSERT INTO entity_mentions VALUES(1584,'SQL Server Reporting Services (SSRS)',5,473,'others'); -INSERT INTO entity_mentions VALUES(1585,'MICROSOFT SQL SERVER REPORTING SERVICES 10.*',5,473,'others'); -INSERT INTO entity_mentions VALUES(1586,'MVS',6,577,'others'); -INSERT INTO entity_mentions VALUES(1587,'OS/390',6,440,'others'); -INSERT INTO entity_mentions VALUES(1588,'ZOS V1R9',6,441,'others'); -INSERT INTO entity_mentions VALUES(1589,'ZOS Base 1.12',6,441,'others'); -INSERT INTO entity_mentions VALUES(1590,'IBM Z/OS V2.1',6,441,'others'); -INSERT INTO entity_mentions VALUES(1591,'z/OS 1.9',6,441,'others'); -INSERT INTO entity_mentions VALUES(1592,'z/OS',6,441,'others'); -INSERT INTO entity_mentions VALUES(1593,'zOS',6,441,'others'); -INSERT INTO entity_mentions VALUES(1594,'z/OS 1.8',6,441,'others'); -INSERT INTO entity_mentions VALUES(1595,'zOS 11.1',6,441,'others'); -INSERT INTO entity_mentions VALUES(1596,'z/OS Base',6,441,'others'); -INSERT INTO entity_mentions VALUES(1597,'MySQL Instance',2,122,'others'); -INSERT INTO entity_mentions VALUES(1598,'MySQL AB - MySQL - 15.1',2,122,'others'); -INSERT INTO entity_mentions VALUES(1599,'My SQL 0',2,122,'others'); -INSERT INTO entity_mentions VALUES(1600,'MYSQL',2,122,'others'); -INSERT INTO entity_mentions VALUES(1601,'Sun - Sun Microsystems MySQL Server Community Edition 5.6',2,122,'others'); -INSERT INTO entity_mentions VALUES(1602,'MySQL AB - MySQL Server 5.5',2,122,'others'); -INSERT INTO entity_mentions VALUES(1603,'MySQL AB - MySQL Server 5.7',2,122,'others'); -INSERT INTO entity_mentions VALUES(1604,'MySQL Enterprise Server - 8.0.16',2,122,'others'); -INSERT INTO entity_mentions VALUES(1605,'mysql on linux',2,122,'others'); -INSERT INTO entity_mentions VALUES(1606,'Neo4',2,123,'others'); -INSERT INTO entity_mentions VALUES(1607,'Neo4J',2,123,'others'); -INSERT INTO entity_mentions VALUES(1608,'Net Optics Network TAPs',4,297,'others'); -INSERT INTO entity_mentions VALUES(1609,'Net Optics Taps',4,297,'others'); -INSERT INTO entity_mentions VALUES(1610,'NAS',8,272,'others'); -INSERT INTO entity_mentions VALUES(1611,'Netscape Application Server',8,272,'others'); -INSERT INTO entity_mentions VALUES(1612,'Netscape Application Server (NAS)',8,272,'others'); -INSERT INTO entity_mentions VALUES(1613,'NES',8,273,'others'); -INSERT INTO entity_mentions VALUES(1614,'Netscape Enterprise Server',8,273,'others'); -INSERT INTO entity_mentions VALUES(1615,'Netscape En',8,273,'others'); -INSERT INTO entity_mentions VALUES(1616,'Netscape Enterprise Server (NES)',8,273,'others'); -INSERT INTO entity_mentions VALUES(1617,'Nexus',2,124,'others'); -INSERT INTO entity_mentions VALUES(1618,'Nexus Repository OSS',2,124,'others'); -INSERT INTO entity_mentions VALUES(1619,'Nginx (Linux)',8,274,'others'); -INSERT INTO entity_mentions VALUES(1620,'Nginx 3 (Linux)',8,274,'others'); -INSERT INTO entity_mentions VALUES(1621,'Nginx 1 (Linux)',8,274,'others'); -INSERT INTO entity_mentions VALUES(1622,'Nginx',8,274,'others'); -INSERT INTO entity_mentions VALUES(1623,'Nginx 1',8,274,'others'); -INSERT INTO entity_mentions VALUES(1624,'Nginx 3',8,274,'others'); -INSERT INTO entity_mentions VALUES(1625,'Niakwa Programming Language (NPL)',9,342,'others'); -INSERT INTO entity_mentions VALUES(1626,'NPL (Niakwa Inc)',9,342,'others'); -INSERT INTO entity_mentions VALUES(1627,'Niakwa Programming Language',9,342,'others'); -INSERT INTO entity_mentions VALUES(1628,'NIX',2,125,'others'); -INSERT INTO entity_mentions VALUES(1629,'Nix package manager',2,125,'others'); -INSERT INTO entity_mentions VALUES(1630,'Node.js',10,507,'others'); -INSERT INTO entity_mentions VALUES(1631,'Node.js 0.10 (Linux)',10,507,'others'); -INSERT INTO entity_mentions VALUES(1632,'Nodejs Foundation - nodejs - node.js 11.7.0',10,507,'others'); -INSERT INTO entity_mentions VALUES(1633,'TS-Node.js 6',10,507,'others'); -INSERT INTO entity_mentions VALUES(1634,'Node.js 4',10,507,'others'); -INSERT INTO entity_mentions VALUES(1635,'Node.js 6',10,507,'others'); -INSERT INTO entity_mentions VALUES(1636,'Node.js 10',10,507,'others'); -INSERT INTO entity_mentions VALUES(1637,'Node.js 8',10,507,'others'); -INSERT INTO entity_mentions VALUES(1638,'TS-Node.js 8',10,507,'others'); -INSERT INTO entity_mentions VALUES(1639,'TS-Node.js 0.10',10,507,'others'); -INSERT INTO entity_mentions VALUES(1640,'node',10,507,'others'); -INSERT INTO entity_mentions VALUES(1641,'Node.js 0.8',10,507,'others'); -INSERT INTO entity_mentions VALUES(1642,'Node.js 0.10',10,507,'others'); -INSERT INTO entity_mentions VALUES(1643,'Node.js 4 (Linux)',10,507,'others'); -INSERT INTO entity_mentions VALUES(1644,'TS-Node.js 11',10,507,'others'); -INSERT INTO entity_mentions VALUES(1645,'Node.js 5',10,507,'others'); -INSERT INTO entity_mentions VALUES(1646,'Nodejs',10,507,'others'); -INSERT INTO entity_mentions VALUES(1647,'Node.js 0.12',10,507,'others'); -INSERT INTO entity_mentions VALUES(1648,'Objective C',9,343,'others'); -INSERT INTO entity_mentions VALUES(1649,'Objective-C',9,343,'others'); -INSERT INTO entity_mentions VALUES(1650,'Obj-C',9,343,'others'); -INSERT INTO entity_mentions VALUES(1651,'OpenEdge ABL',9,344,'others'); -INSERT INTO entity_mentions VALUES(1652,'Progress',9,344,'others'); -INSERT INTO entity_mentions VALUES(1653,'OpenEdge',9,344,'others'); -INSERT INTO entity_mentions VALUES(1654,'Progress OpenEdge',9,344,'others'); -INSERT INTO entity_mentions VALUES(1655,'Symas OpenLDAP',2,126,'others'); -INSERT INTO entity_mentions VALUES(1656,'OpenLDAP',2,126,'others'); -INSERT INTO entity_mentions VALUES(1657,'HPExstream',2,127,'others'); -INSERT INTO entity_mentions VALUES(1658,'OpenText Exstream',2,127,'others'); -INSERT INTO entity_mentions VALUES(1659,'VMS 8.4',6,442,'others'); -INSERT INTO entity_mentions VALUES(1660,'OPENVMS 7.3.2',6,442,'others'); -INSERT INTO entity_mentions VALUES(1661,'VMS',6,442,'others'); -INSERT INTO entity_mentions VALUES(1662,'OpenVMS',6,442,'others'); -INSERT INTO entity_mentions VALUES(1663,'OPENVMS 8.4',6,442,'others'); -INSERT INTO entity_mentions VALUES(1664,'OpenVPN',2,128,'others'); -INSERT INTO entity_mentions VALUES(1665,'Oracle Access Management',2,129,'others'); -INSERT INTO entity_mentions VALUES(1666,'OAM 12c',2,129,'others'); -INSERT INTO entity_mentions VALUES(1667,'ADF 12c',2,130,'others'); -INSERT INTO entity_mentions VALUES(1668,'Oracle ADF',2,130,'others'); -INSERT INTO entity_mentions VALUES(1669,'Oracle APEX',2,131,'others'); -INSERT INTO entity_mentions VALUES(1670,'Apex',2,131,'others'); -INSERT INTO entity_mentions VALUES(1671,'Oracle HTTP Server 12c',8,610,'others'); -INSERT INTO entity_mentions VALUES(1672,'OHS',8,610,'others'); -INSERT INTO entity_mentions VALUES(1673,'Oracle Application Server 9i',8,610,'others'); -INSERT INTO entity_mentions VALUES(1674,'Oracle HTTP Server powered by Apache',8,610,'others'); -INSERT INTO entity_mentions VALUES(1675,'j2eeoracleca',8,610,'others'); -INSERT INTO entity_mentions VALUES(1676,'Oracle Application Server',8,610,'others'); -INSERT INTO entity_mentions VALUES(1677,'Oracle HTTP',8,610,'others'); -INSERT INTO entity_mentions VALUES(1678,'Oracle HTTP server',8,610,'others'); -INSERT INTO entity_mentions VALUES(1679,'Oracle - Oracle Application Server OC4J Instance 11.2',8,610,'others'); -INSERT INTO entity_mentions VALUES(1680,'Oracle Web App Server',8,610,'others'); -INSERT INTO entity_mentions VALUES(1681,'9i AS server',8,610,'others'); -INSERT INTO entity_mentions VALUES(1682,'Oracle Applications 11.5.10CU2',8,610,'others'); -INSERT INTO entity_mentions VALUES(1683,'Oracle Application R12.1.3',8,610,'others'); -INSERT INTO entity_mentions VALUES(1684,'OC4J',8,610,'others'); -INSERT INTO entity_mentions VALUES(1685,'Oracle Appache 1.0.22',8,610,'others'); -INSERT INTO entity_mentions VALUES(1686,'Oracle Transparent Gateway',7,494,'others'); -INSERT INTO entity_mentions VALUES(1687,'Weblogic BI Publisher',2,132,'others'); -INSERT INTO entity_mentions VALUES(1688,'Oracle BI Publisher 10g (10.1.3.4)',2,132,'others'); -INSERT INTO entity_mentions VALUES(1689,'Oracle BI Publisher',2,132,'others'); -INSERT INTO entity_mentions VALUES(1690,'Oracle Business Intelligence',2,133,'others'); -INSERT INTO entity_mentions VALUES(1691,'OBI',2,133,'others'); -INSERT INTO entity_mentions VALUES(1692,'OBIEE',2,133,'others'); -INSERT INTO entity_mentions VALUES(1693,'OBI Reporting',2,133,'others'); -INSERT INTO entity_mentions VALUES(1694,'Oracle 12c Enterprise',2,134,'others'); -INSERT INTO entity_mentions VALUES(1695,'Oracle 12 c',2,134,'others'); -INSERT INTO entity_mentions VALUES(1696,'Oracle 12.2 Client',2,134,'others'); -INSERT INTO entity_mentions VALUES(1697,'Oracle 11gR1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1698,'Oracle 18c',2,134,'others'); -INSERT INTO entity_mentions VALUES(1699,'Oracle 9.2.0.7.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1700,'Oracle 10.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1701,'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1702,'Oracle 11.2 (Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit) RAC',2,134,'others'); -INSERT INTO entity_mentions VALUES(1703,'Oracle 18',2,134,'others'); -INSERT INTO entity_mentions VALUES(1704,'Oracle 9i',2,134,'others'); -INSERT INTO entity_mentions VALUES(1705,'Oracle 12c (v12.2.0.1) ORACLE',2,134,'others'); -INSERT INTO entity_mentions VALUES(1706,'Oracle Database 12.1.0.2.190716',2,134,'others'); -INSERT INTO entity_mentions VALUES(1707,'Oracle 12.1.0.2.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1708,'Oracle 12.1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1709,'Oracle Database 11g R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1710,'Oracle 11 on AIX',2,134,'others'); -INSERT INTO entity_mentions VALUES(1711,'Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit',2,134,'others'); -INSERT INTO entity_mentions VALUES(1712,'Oracle Database 11.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1713,'Oracle Database 10g 10.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1714,'Oracle 11 on EXA',2,134,'others'); -INSERT INTO entity_mentions VALUES(1715,'Oracle Database 11.1.0.7.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1716,'Oracle Database Server',2,134,'others'); -INSERT INTO entity_mentions VALUES(1717,'Oracle DB Server',2,134,'others'); -INSERT INTO entity_mentions VALUES(1718,'Oracle (9i,10g,11g,12c,18c)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1719,'Oracle 12C',2,134,'others'); -INSERT INTO entity_mentions VALUES(1720,'Oracle 10.2.0.5',2,134,'others'); -INSERT INTO entity_mentions VALUES(1721,'Oracle-OracleDB-10g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1722,'Oracle 11.2.0.2.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1723,'Oracle 10',2,134,'others'); -INSERT INTO entity_mentions VALUES(1724,'Oracle 8',2,134,'others'); -INSERT INTO entity_mentions VALUES(1725,'Oracle 11G R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1726,'Oracle Database 10g Release 10.2.0.4.0 - 64bit Production',2,134,'others'); -INSERT INTO entity_mentions VALUES(1727,'Oarcle 11G',2,134,'others'); -INSERT INTO entity_mentions VALUES(1728,'Oracle 12C R2 ORACLE',2,134,'others'); -INSERT INTO entity_mentions VALUES(1729,'Oracle 11x',2,134,'others'); -INSERT INTO entity_mentions VALUES(1730,'Oracle 11.2.4',2,134,'others'); -INSERT INTO entity_mentions VALUES(1731,'Oracle Database 11gR2 Enterprise Edition 11.2.0.1 (64-bit)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1732,'Oracle',2,134,'others'); -INSERT INTO entity_mentions VALUES(1733,'Oracle 12.1.0.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1734,'Oracle Database 10g R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1735,'Oracle 12x',2,134,'others'); -INSERT INTO entity_mentions VALUES(1736,'Oracle - 12.1.0.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1737,'Oracle 10g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1738,'DB - Oracle inbuilt',2,134,'others'); -INSERT INTO entity_mentions VALUES(1739,'Oracle 12g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1740,'Oracle Database 10g Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1741,'Oracle 11.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1742,'Oracle 11 g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1743,'Oracle 9.2.0.8.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1744,'Oracle Database 12.2.1.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1745,'Oracle 10.2.0.4.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1746,'Oracle 10g (10.2.0.3.0 on 32-bit windows)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1747,'Oracle 11g (11.2.0.3.0 on 64-bit windows)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1748,'Oracle-Oracle DB-8i',2,134,'others'); -INSERT INTO entity_mentions VALUES(1749,'Oracle DB',2,134,'others'); -INSERT INTO entity_mentions VALUES(1750,'Oracle Database',2,134,'others'); -INSERT INTO entity_mentions VALUES(1751,'Oracle - Oracle Database - 10g Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1752,'Oracle 10x',2,134,'others'); -INSERT INTO entity_mentions VALUES(1753,'Oracle 11.2.0.4.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1754,'Oracle 11g RAC',2,134,'others'); -INSERT INTO entity_mentions VALUES(1755,'Oracle Database 11g Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1756,'Oracle Server',2,134,'others'); -INSERT INTO entity_mentions VALUES(1757,'Oracle Database 12c R1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1758,'Oracle 10.2.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1759,'Oracle 11.2.0.4.0 64-bit',2,134,'others'); -INSERT INTO entity_mentions VALUES(1760,'Oracle 10.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1761,'Oracle 9.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1762,'Oracle DB 11g EER 11.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1763,'ORACLE RELATIONAL DATABASE MANAGEMENT SYSTEM VERSION 11.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1764,'Oracle Database 9i Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1765,'Oracle 11.1.0.7.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1766,'Oracle Database 11g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1767,'Oracle DB 11.2.0.3',2,134,'others'); -INSERT INTO entity_mentions VALUES(1768,'Oracle 12.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1769,'Oracle 11g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1770,'Oracle Database 12c Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1771,'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production',2,134,'others'); -INSERT INTO entity_mentions VALUES(1772,'Oracle 11.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1773,'Oracle 10.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1774,'Oracle 12',2,134,'others'); -INSERT INTO entity_mentions VALUES(1775,'Oracle Database 12c R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1776,'Oracle 12C on linux',2,134,'others'); -INSERT INTO entity_mentions VALUES(1777,'oracle 11g ORACLE',2,134,'others'); -INSERT INTO entity_mentions VALUES(1778,'Oracle - 11.2.0.3',2,134,'others'); -INSERT INTO entity_mentions VALUES(1779,'Oracle 12c (Oracle Database 12c Enterprise Edition Release 11.2.0.3.0 - 64bit)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1780,'Oracle9i Enterprise Edition Release 9.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1781,'OracleDB EE11.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1782,'Oracle 11g on linux',2,134,'others'); -INSERT INTO entity_mentions VALUES(1783,'Oracle 11gEssbase',2,134,'others'); -INSERT INTO entity_mentions VALUES(1784,'Oracle12',2,134,'others'); -INSERT INTO entity_mentions VALUES(1785,'Oracle Database 12c Release 1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1786,'JServer Release 9.2.0.5.0',5,474,'others'); -INSERT INTO entity_mentions VALUES(1787,'Jserver',5,474,'others'); -INSERT INTO entity_mentions VALUES(1788,'ORACLE SPATIAL',5,475,'others'); -INSERT INTO entity_mentions VALUES(1789,'Oracle Spatial and Graph',5,475,'others'); -INSERT INTO entity_mentions VALUES(1790,'Designer 6i',2,135,'others'); -INSERT INTO entity_mentions VALUES(1791,'Oracle Designer',2,135,'others'); -INSERT INTO entity_mentions VALUES(1792,'Enterprise Manager 12.2.1.1',2,136,'others'); -INSERT INTO entity_mentions VALUES(1793,'Enterprise Manager 12.2.1.2',2,136,'others'); -INSERT INTO entity_mentions VALUES(1794,'Enterprise Manager 11.1.1.7',2,136,'others'); -INSERT INTO entity_mentions VALUES(1795,'Oracle Enterprise Manager',2,136,'others'); -INSERT INTO entity_mentions VALUES(1796,'Exadata X6-2',4,298,'others'); -INSERT INTO entity_mentions VALUES(1797,'Oracle Exadata',4,298,'others'); -INSERT INTO entity_mentions VALUES(1798,'Oracle Exadata 11g',4,298,'others'); -INSERT INTO entity_mentions VALUES(1799,'Oracle - Exadata X6-2',4,298,'others'); -INSERT INTO entity_mentions VALUES(1800,'Oracle Forms',2,137,'others'); -INSERT INTO entity_mentions VALUES(1801,'Hyperion Interactive Reporting',2,138,'others'); -INSERT INTO entity_mentions VALUES(1802,'Oracle Hyperion Interactive Reporting version 9.3',2,138,'others'); -INSERT INTO entity_mentions VALUES(1803,'Hyperion Planning Server',2,139,'others'); -INSERT INTO entity_mentions VALUES(1804,'Hyperion Planning',2,139,'others'); -INSERT INTO entity_mentions VALUES(1805,'Oracle Net Services',2,140,'others'); -INSERT INTO entity_mentions VALUES(1806,'Oracle, Nets',2,140,'others'); -INSERT INTO entity_mentions VALUES(1807,'Oracle Real Application Clusters (RAC)',2,141,'others'); -INSERT INTO entity_mentions VALUES(1808,'Oracle RAC',2,141,'others'); -INSERT INTO entity_mentions VALUES(1809,'Oracle Real Application Clusters',2,141,'others'); -INSERT INTO entity_mentions VALUES(1810,'Oracle Retail Point-of-Service',2,142,'others'); -INSERT INTO entity_mentions VALUES(1811,'ORPOS 13.3.3',2,142,'others'); -INSERT INTO entity_mentions VALUES(1812,'ORPOS 13.3.5',2,142,'others'); -INSERT INTO entity_mentions VALUES(1813,'ORPOS 13.3.4',2,142,'others'); -INSERT INTO entity_mentions VALUES(1814,'Oracle Service Bus',2,143,'others'); -INSERT INTO entity_mentions VALUES(1815,'Oracle Service Bus 11.1.1.7',2,143,'others'); -INSERT INTO entity_mentions VALUES(1816,'Oracle Service Bus 12.2.1.2',2,143,'others'); -INSERT INTO entity_mentions VALUES(1817,'OSB Servers',2,143,'others'); -INSERT INTO entity_mentions VALUES(1818,'Oracle Service Bus 12.2.1.1',2,143,'others'); -INSERT INTO entity_mentions VALUES(1819,'Oracle Smart View',2,144,'others'); -INSERT INTO entity_mentions VALUES(1820,'Hyperian Smart View',2,144,'others'); -INSERT INTO entity_mentions VALUES(1821,'Oracle SOA Suite',2,145,'others'); -INSERT INTO entity_mentions VALUES(1822,'Oracle SOA Suite 12.2.1.3.0',2,145,'others'); -INSERT INTO entity_mentions VALUES(1823,'Oracle SQL Developer',2,146,'others'); -INSERT INTO entity_mentions VALUES(1824,'Oracle - Oracle Sql Developer 1.5',2,146,'others'); -INSERT INTO entity_mentions VALUES(1825,'Oracle TimesTen In-Memory Database',2,147,'others'); -INSERT INTO entity_mentions VALUES(1826,'Oracle TT',2,147,'others'); -INSERT INTO entity_mentions VALUES(1827,'Oracle VM 3.3.3',3,567,'others'); -INSERT INTO entity_mentions VALUES(1828,'Oracle VM',3,567,'others'); -INSERT INTO entity_mentions VALUES(1829,'Oracle VM 3.3',3,567,'others'); -INSERT INTO entity_mentions VALUES(1830,'OWB 10g',2,148,'others'); -INSERT INTO entity_mentions VALUES(1831,'Oracle Warehouse Builder',2,148,'others'); -INSERT INTO entity_mentions VALUES(1832,'Oracle Warehouse Builder (OWB)',2,148,'others'); -INSERT INTO entity_mentions VALUES(1833,'WebCenter Content Server',8,276,'others'); -INSERT INTO entity_mentions VALUES(1834,'Oracle WebCenter Content Server',8,276,'others'); -INSERT INTO entity_mentions VALUES(1835,'IDOC SCRIPT',7,495,'others'); -INSERT INTO entity_mentions VALUES(1836,'Orbix',2,149,'others'); -INSERT INTO entity_mentions VALUES(1837,'IONA Orbix',2,149,'others'); -INSERT INTO entity_mentions VALUES(1838,'OS/2',6,443,'others'); -INSERT INTO entity_mentions VALUES(1839,'OWASP Enterprise Security API (ESAPI)',12,416,'others'); -INSERT INTO entity_mentions VALUES(1840,'OWASP Enterprise Security API',12,416,'others'); -INSERT INTO entity_mentions VALUES(1841,'Esapi',12,416,'others'); -INSERT INTO entity_mentions VALUES(1842,'Pascal',9,599,'others'); -INSERT INTO entity_mentions VALUES(1843,'Object Pascal',9,346,'others'); -INSERT INTO entity_mentions VALUES(1844,'Clascal',9,346,'others'); -INSERT INTO entity_mentions VALUES(1845,'Pentaho',2,150,'others'); -INSERT INTO entity_mentions VALUES(1846,'peoplesoft',2,151,'others'); -INSERT INTO entity_mentions VALUES(1847,'Oracle-HR-9.2',2,151,'others'); -INSERT INTO entity_mentions VALUES(1848,'Perkin Elmer Informatics',2,152,'others'); -INSERT INTO entity_mentions VALUES(1849,'Perkin Elmer Informatics (PKI)',2,152,'others'); -INSERT INTO entity_mentions VALUES(1850,'Perl',9,585,'others'); -INSERT INTO entity_mentions VALUES(1851,'Perl 5.8.4',9,585,'others'); -INSERT INTO entity_mentions VALUES(1852,'ActivePerl',9,348,'others'); -INSERT INTO entity_mentions VALUES(1853,'ActiveState Tool Corp. - ActivePerl 5.12',9,348,'others'); -INSERT INTO entity_mentions VALUES(1854,'ActiveState Tool Corp. - ActivePerl 5.8',9,348,'others'); -INSERT INTO entity_mentions VALUES(1855,'ORAPERL',12,417,'others'); -INSERT INTO entity_mentions VALUES(1856,'REX',9,349,'others'); -INSERT INTO entity_mentions VALUES(1857,'Pervasive',2,153,'others'); -INSERT INTO entity_mentions VALUES(1858,'Pervasive PSQL',2,153,'others'); -INSERT INTO entity_mentions VALUES(1859,'PHP 5.4',9,586,'others'); -INSERT INTO entity_mentions VALUES(1860,'PHP',9,586,'others'); -INSERT INTO entity_mentions VALUES(1861,'Pipeflo',2,154,'others'); -INSERT INTO entity_mentions VALUES(1862,'PIPE-FLO',2,154,'others'); -INSERT INTO entity_mentions VALUES(1863,'TCServer V6',8,277,'others'); -INSERT INTO entity_mentions VALUES(1864,'Pivotal tc Server',8,277,'others'); -INSERT INTO entity_mentions VALUES(1865,'IBM PKWARE PKZip 2',2,155,'others'); -INSERT INTO entity_mentions VALUES(1866,'PKZIP',2,155,'others'); -INSERT INTO entity_mentions VALUES(1867,'PL/I',9,351,'others'); -INSERT INTO entity_mentions VALUES(1868,'PL1',9,351,'others'); -INSERT INTO entity_mentions VALUES(1869,'pli',9,351,'others'); -INSERT INTO entity_mentions VALUES(1870,'PL/1',9,351,'others'); -INSERT INTO entity_mentions VALUES(1871,'PLQSL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1872,'Oracle - SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1873,'PL/SQL TEMPLATING LANGUAGE',9,352,'others'); -INSERT INTO entity_mentions VALUES(1874,'PL/SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1875,'Oracle SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1876,'PLSQL;',9,352,'others'); -INSERT INTO entity_mentions VALUES(1877,'Oracle PL/SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1878,'Oracle PLSQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1879,'plsql',9,352,'others'); -INSERT INTO entity_mentions VALUES(1880,'pl-sql',9,352,'others'); -INSERT INTO entity_mentions VALUES(1881,'PL SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1882,'Planview',2,156,'others'); -INSERT INTO entity_mentions VALUES(1883,'Projectplace',2,156,'others'); -INSERT INTO entity_mentions VALUES(1884,'postgres',2,157,'others'); -INSERT INTO entity_mentions VALUES(1885,'PostGreSQL',2,157,'others'); -INSERT INTO entity_mentions VALUES(1886,'PostgreSQL 0',2,157,'others'); -INSERT INTO entity_mentions VALUES(1887,'Postgress',2,157,'others'); -INSERT INTO entity_mentions VALUES(1888,'PowerBuilder 6.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1889,'Powerbuilder V12.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1890,'Power Builder',2,158,'others'); -INSERT INTO entity_mentions VALUES(1891,'Powerbuilder v11.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1892,'Power Builder 6.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1893,'Powerbuilder',2,158,'others'); -INSERT INTO entity_mentions VALUES(1894,'Primavera',2,159,'others'); -INSERT INTO entity_mentions VALUES(1895,'Primavera P6',2,159,'others'); -INSERT INTO entity_mentions VALUES(1896,'PRO*C',9,353,'others'); -INSERT INTO entity_mentions VALUES(1897,'PRO C',9,353,'others'); -INSERT INTO entity_mentions VALUES(1898,'ProC',9,353,'others'); -INSERT INTO entity_mentions VALUES(1899,'Pro*Cobol',2,160,'others'); -INSERT INTO entity_mentions VALUES(1900,'ProjectWise',2,161,'others'); -INSERT INTO entity_mentions VALUES(1901,'ProjectWise Oracle Server',2,161,'others'); -INSERT INTO entity_mentions VALUES(1902,'Projectwise Server (XM)',2,162,'others'); -INSERT INTO entity_mentions VALUES(1903,'ProjectWise JJ',2,162,'others'); -INSERT INTO entity_mentions VALUES(1904,'Projectwise Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1905,'Projectwise Setup for PEMEX',2,162,'others'); -INSERT INTO entity_mentions VALUES(1906,'ProjectWise Web Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1907,'ProjectWise Application Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1908,'ProjectWise Cache Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1909,'PVCS Version Manager',2,163,'others'); -INSERT INTO entity_mentions VALUES(1910,'Serena PVCS Version Manager 8.4',2,163,'others'); -INSERT INTO entity_mentions VALUES(1911,'Python Software Foundation - Python 2.6',9,587,'others'); -INSERT INTO entity_mentions VALUES(1912,'Python - Python - Python 2',9,587,'others'); -INSERT INTO entity_mentions VALUES(1913,'Python 2',9,587,'others'); -INSERT INTO entity_mentions VALUES(1914,'Python',9,587,'others'); -INSERT INTO entity_mentions VALUES(1915,'QlikView',2,164,'others'); -INSERT INTO entity_mentions VALUES(1916,'R',9,355,'others'); -INSERT INTO entity_mentions VALUES(1917,'RMQ',2,165,'others'); -INSERT INTO entity_mentions VALUES(1918,'rabbit mq',2,165,'others'); -INSERT INTO entity_mentions VALUES(1919,'RabbitMQ',2,165,'others'); -INSERT INTO entity_mentions VALUES(1920,'ClearCase Build Utility 1',2,166,'others'); -INSERT INTO entity_mentions VALUES(1921,'Rational ClearCase',2,166,'others'); -INSERT INTO entity_mentions VALUES(1922,'Clearquest',2,167,'others'); -INSERT INTO entity_mentions VALUES(1923,'Rational ClearQuest',2,167,'others'); -INSERT INTO entity_mentions VALUES(1924,'redis',2,168,'others'); -INSERT INTO entity_mentions VALUES(1925,'Remedy',2,169,'others'); -INSERT INTO entity_mentions VALUES(1926,'Remedy ARS',2,169,'others'); -INSERT INTO entity_mentions VALUES(1927,'Resin Web Server',8,278,'others'); -INSERT INTO entity_mentions VALUES(1928,'Resin',8,278,'others'); -INSERT INTO entity_mentions VALUES(1929,'rexx',9,356,'others'); -INSERT INTO entity_mentions VALUES(1930,'Riak',2,170,'others'); -INSERT INTO entity_mentions VALUES(1931,'RightFax client 10',2,171,'others'); -INSERT INTO entity_mentions VALUES(1932,'RightFax',2,171,'others'); -INSERT INTO entity_mentions VALUES(1933,'RPG',9,357,'others'); -INSERT INTO entity_mentions VALUES(1934,'Ruby',9,588,'others'); -INSERT INTO entity_mentions VALUES(1935,'Ruby on Rails',10,508,'others'); -INSERT INTO entity_mentions VALUES(1936,'Rumba',2,172,'others'); -INSERT INTO entity_mentions VALUES(1937,'Salesforce Object Query Language (SOQL)',9,359,'others'); -INSERT INTO entity_mentions VALUES(1938,'SOQL',9,359,'others'); -INSERT INTO entity_mentions VALUES(1939,'Salesforce Object Query Language',9,359,'others'); -INSERT INTO entity_mentions VALUES(1940,'SAP Business Objects',2,173,'others'); -INSERT INTO entity_mentions VALUES(1941,'Business Objects 12',2,173,'others'); -INSERT INTO entity_mentions VALUES(1942,'BusinessObjects 4.2 SP7',2,173,'others'); -INSERT INTO entity_mentions VALUES(1943,'SAP BI 4.2 Sp5',2,173,'others'); -INSERT INTO entity_mentions VALUES(1944,'SAP BusinessObjects BI server',2,173,'others'); -INSERT INTO entity_mentions VALUES(1945,'SAP ERP',2,174,'others'); -INSERT INTO entity_mentions VALUES(1946,'SAP EHP 7',5,476,'others'); -INSERT INTO entity_mentions VALUES(1947,'SAP EHP',5,476,'others'); -INSERT INTO entity_mentions VALUES(1948,'SAP - SAP Kernel 7.1',5,477,'others'); -INSERT INTO entity_mentions VALUES(1949,'SAP Kernel',5,477,'others'); -INSERT INTO entity_mentions VALUES(1950,'SAP HANA ON SUSEOracle 11g on Linux',2,175,'others'); -INSERT INTO entity_mentions VALUES(1951,'HANA',2,175,'others'); -INSERT INTO entity_mentions VALUES(1952,'SAP HANA DB',2,175,'others'); -INSERT INTO entity_mentions VALUES(1953,'SAP - HANA 2.0',2,175,'others'); -INSERT INTO entity_mentions VALUES(1954,'SAP MaxDB',2,176,'others'); -INSERT INTO entity_mentions VALUES(1955,'NetWeaver',8,279,'others'); -INSERT INTO entity_mentions VALUES(1956,'SAP NetWeaver App Server',8,279,'others'); -INSERT INTO entity_mentions VALUES(1957,'ABAP',7,496,'others'); -INSERT INTO entity_mentions VALUES(1958,'SAP NetWeaver Business Warehouse',2,177,'others'); -INSERT INTO entity_mentions VALUES(1959,'SAP BW 7.5 SP10 - BW has 10 App servers for load balancing',2,177,'others'); -INSERT INTO entity_mentions VALUES(1960,'SAP BW DB server has one instance and 13 servers for load balancing',2,177,'others'); -INSERT INTO entity_mentions VALUES(1961,'SAP BW 7.5 SP10',2,177,'others'); -INSERT INTO entity_mentions VALUES(1962,'SAP - SAP SQL Anywhere Network Database Server 12',2,178,'others'); -INSERT INTO entity_mentions VALUES(1963,'SAP SQL Anywhere',2,178,'others'); -INSERT INTO entity_mentions VALUES(1964,'SAP - SAP SQL Anywhere Network Database Server 11',2,178,'others'); -INSERT INTO entity_mentions VALUES(1965,'SAP - SAP SQL Anywhere Personal Database Server 16',2,178,'others'); -INSERT INTO entity_mentions VALUES(1966,'SAP Web Dynpro',2,179,'others'); -INSERT INTO entity_mentions VALUES(1967,'Web-Dynpro',2,179,'others'); -INSERT INTO entity_mentions VALUES(1968,'SAS',9,360,'others'); -INSERT INTO entity_mentions VALUES(1969,'SAS 9.2',9,360,'others'); -INSERT INTO entity_mentions VALUES(1970,'SCSS',9,361,'others'); -INSERT INTO entity_mentions VALUES(1971,'Sass',9,361,'others'); -INSERT INTO entity_mentions VALUES(1972,'Scala',9,362,'others'); -INSERT INTO entity_mentions VALUES(1973,'Scalla',9,362,'others'); -INSERT INTO entity_mentions VALUES(1974,'Sentry',2,180,'others'); -INSERT INTO entity_mentions VALUES(1975,'Sentry 1.13',2,180,'others'); -INSERT INTO entity_mentions VALUES(1976,'Sharepoints 2010',2,603,'others'); -INSERT INTO entity_mentions VALUES(1977,'Microsoft SPS 2010',2,603,'others'); -INSERT INTO entity_mentions VALUES(1978,'SharePoint',2,603,'others'); -INSERT INTO entity_mentions VALUES(1979,'SharePoint 2013',2,603,'others'); -INSERT INTO entity_mentions VALUES(1980,'Sharepoint 2007',2,603,'others'); -INSERT INTO entity_mentions VALUES(1981,'Sharepoint 2010',2,603,'others'); -INSERT INTO entity_mentions VALUES(1982,'SQL Server SP2013 Database Server',2,603,'others'); -INSERT INTO entity_mentions VALUES(1983,'Sharepoint 2016',2,603,'others'); -INSERT INTO entity_mentions VALUES(1984,'Siebel IP 2015',2,182,'others'); -INSERT INTO entity_mentions VALUES(1985,'Siebel 7.8.2.16',2,182,'others'); -INSERT INTO entity_mentions VALUES(1986,'Siebel',2,182,'others'); -INSERT INTO entity_mentions VALUES(1987,'Siebel CRM',2,182,'others'); -INSERT INTO entity_mentions VALUES(1988,'Smalltalk',9,363,'others'); -INSERT INTO entity_mentions VALUES(1989,'SNA Manager',2,183,'others'); -INSERT INTO entity_mentions VALUES(1990,'SNA Manager 8.0.3608.0',2,183,'others'); -INSERT INTO entity_mentions VALUES(1991,'Techsmith Corporation - SnagIt 8',2,184,'others'); -INSERT INTO entity_mentions VALUES(1992,'SnagIt',2,184,'others'); -INSERT INTO entity_mentions VALUES(1993,'Solid development server',2,185,'others'); -INSERT INTO entity_mentions VALUES(1994,'solidDB',2,185,'others'); -INSERT INTO entity_mentions VALUES(1995,'SonarSource - SonarSource SonarQube Server 5.1',2,186,'others'); -INSERT INTO entity_mentions VALUES(1996,'SonarQube',2,186,'others'); -INSERT INTO entity_mentions VALUES(1997,'SpaceMonger',2,187,'others'); -INSERT INTO entity_mentions VALUES(1998,'Sixty-Five Software - SpaceMonger 1.4',2,187,'others'); -INSERT INTO entity_mentions VALUES(1999,'Spark',8,280,'others'); -INSERT INTO entity_mentions VALUES(2000,'Splunk',2,188,'others'); -INSERT INTO entity_mentions VALUES(2001,'SQLPlus',5,478,'others'); -INSERT INTO entity_mentions VALUES(2002,'SQL Plus',5,478,'others'); -INSERT INTO entity_mentions VALUES(2003,'SQL*Plus',5,478,'others'); -INSERT INTO entity_mentions VALUES(2004,'SQLIO 1.0',2,189,'others'); -INSERT INTO entity_mentions VALUES(2005,'SQLIO',2,189,'others'); -INSERT INTO entity_mentions VALUES(2007,'Sun ONE Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2008,'Sun Java Web Server 7.0 Update 2',8,281,'others'); -INSERT INTO entity_mentions VALUES(2009,'iPlanet Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2010,'Oracle iPlanet Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2011,'Sun Java Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2012,'SunOne',8,281,'others'); -INSERT INTO entity_mentions VALUES(2013,'Swift',9,364,'others'); -INSERT INTO entity_mentions VALUES(2014,'Sybase SQL Server',2,190,'others'); -INSERT INTO entity_mentions VALUES(2015,'Sybase',2,190,'others'); -INSERT INTO entity_mentions VALUES(2016,'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12.5"',2,190,'others'); -INSERT INTO entity_mentions VALUES(2017,'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12',2,190,'others'); -INSERT INTO entity_mentions VALUES(2018,'SAP - Sybase Adaptive Server Enterprise 12.5',2,190,'others'); -INSERT INTO entity_mentions VALUES(2019,'SAP - Sybase Adaptive Server Enterprise 16',2,190,'others'); -INSERT INTO entity_mentions VALUES(2020,'SAP - Sybase Adaptive Server Enterprise 12',2,190,'others'); -INSERT INTO entity_mentions VALUES(2021,'Sybase Central',5,479,'others'); -INSERT INTO entity_mentions VALUES(2022,'SAP - Sybase Central 4.3',5,479,'others'); -INSERT INTO entity_mentions VALUES(2023,'SAP - Sybase Dsedit 12.5',5,480,'others'); -INSERT INTO entity_mentions VALUES(2024,'Sybase Dsedit',5,480,'others'); -INSERT INTO entity_mentions VALUES(2025,'Sysncsort',2,191,'others'); -INSERT INTO entity_mentions VALUES(2026,'syncsort',2,191,'others'); -INSERT INTO entity_mentions VALUES(2027,'Sysinternals LLC - AccessEnum 1 1',2,194,'others'); -INSERT INTO entity_mentions VALUES(2028,'AccessEnum',2,194,'others'); -INSERT INTO entity_mentions VALUES(2029,'Sysinternals LLC - ClockRes 2',2,195,'others'); -INSERT INTO entity_mentions VALUES(2030,'ClockRes',2,195,'others'); -INSERT INTO entity_mentions VALUES(2031,'Sysinternals LLC - Coreinfo 3.21',2,196,'others'); -INSERT INTO entity_mentions VALUES(2032,'Coreinfo',2,196,'others'); -INSERT INTO entity_mentions VALUES(2033,'Sysinternals LLC - DiskExt 1.1',2,197,'others'); -INSERT INTO entity_mentions VALUES(2034,'DiskExt',2,197,'others'); -INSERT INTO entity_mentions VALUES(2035,'Sysinternals LLC - DiskMon 2.01',2,198,'others'); -INSERT INTO entity_mentions VALUES(2036,'DiskMon',2,198,'others'); -INSERT INTO entity_mentions VALUES(2037,'Hex2dec',2,199,'others'); -INSERT INTO entity_mentions VALUES(2038,'Sysinternals LLC - Hex2dec 1',2,199,'others'); -INSERT INTO entity_mentions VALUES(2039,'Sysinternals LLC - Junction 1.6',2,200,'others'); -INSERT INTO entity_mentions VALUES(2040,'Junction',2,200,'others'); -INSERT INTO entity_mentions VALUES(2041,'Sysinternals LLC - LDMDump 1.02',2,201,'others'); -INSERT INTO entity_mentions VALUES(2042,'LDMDump',2,201,'others'); -INSERT INTO entity_mentions VALUES(2043,'Sysinternals LLC - LoadOrder 1',2,202,'others'); -INSERT INTO entity_mentions VALUES(2044,'LoadOrder',2,202,'others'); -INSERT INTO entity_mentions VALUES(2045,'PipeList',2,203,'others'); -INSERT INTO entity_mentions VALUES(2046,'Sysinternals LLC - PipeList 1.01',2,203,'others'); -INSERT INTO entity_mentions VALUES(2047,'Process Explorer',2,204,'others'); -INSERT INTO entity_mentions VALUES(2048,'Sysinternals LLC - Process Explorer 16.5',2,204,'others'); -INSERT INTO entity_mentions VALUES(2049,'Sysinternals LLC - PsKill 1.15',2,205,'others'); -INSERT INTO entity_mentions VALUES(2050,'PsKill',2,205,'others'); -INSERT INTO entity_mentions VALUES(2051,'Sysinternals LLC - PsPasswd 1.23',2,206,'others'); -INSERT INTO entity_mentions VALUES(2052,'PsPasswd',2,206,'others'); -INSERT INTO entity_mentions VALUES(2053,'SDelete',2,207,'others'); -INSERT INTO entity_mentions VALUES(2054,'Sysinternals LLC - SDelete 1.61',2,207,'others'); -INSERT INTO entity_mentions VALUES(2055,'Sysinternals LLC - ShareEnum 1.6',2,208,'others'); -INSERT INTO entity_mentions VALUES(2056,'ShareEnum',2,208,'others'); -INSERT INTO entity_mentions VALUES(2057,'Sysinternals LLC - Sync 2.2',2,209,'others'); -INSERT INTO entity_mentions VALUES(2058,'Sync',2,209,'others'); -INSERT INTO entity_mentions VALUES(2059,'Sysinternals LLC - Sysinternals TCPView 3.5',2,210,'others'); -INSERT INTO entity_mentions VALUES(2060,'TCPView',2,210,'others'); -INSERT INTO entity_mentions VALUES(2061,'Sysinternals LLC - VMMap 3.11',2,211,'others'); -INSERT INTO entity_mentions VALUES(2062,'VMMap',2,211,'others'); -INSERT INTO entity_mentions VALUES(2063,'Sysinternals LLC - Whois 1.11',2,212,'others'); -INSERT INTO entity_mentions VALUES(2064,'Whois',2,212,'others'); -INSERT INTO entity_mentions VALUES(2065,'Tableau',2,213,'others'); -INSERT INTO entity_mentions VALUES(2066,'TCL',9,365,'others'); -INSERT INTO entity_mentions VALUES(2067,'TCPLink Enterprise Server 6',2,214,'others'); -INSERT INTO entity_mentions VALUES(2068,'(Canon IT Solutions) TCPLink Enterprise Server 6',2,214,'others'); -INSERT INTO entity_mentions VALUES(2069,'TERADATA',2,215,'others'); -INSERT INTO entity_mentions VALUES(2070,'Teradata hors Radia',2,215,'others'); -INSERT INTO entity_mentions VALUES(2071,'Teradata QS Server',2,216,'others'); -INSERT INTO entity_mentions VALUES(2072,'TERADATA QUERY SCHEDULER SERVER VERSION 15',2,216,'others'); -INSERT INTO entity_mentions VALUES(2073,'TIBCO Business Works',2,217,'others'); -INSERT INTO entity_mentions VALUES(2074,'Tibco BW',2,217,'others'); -INSERT INTO entity_mentions VALUES(2075,'BusinessWorks',2,217,'others'); -INSERT INTO entity_mentions VALUES(2076,'TIBCO Business Works (BW)',2,217,'others'); -INSERT INTO entity_mentions VALUES(2077,'Integration Manager',5,481,'others'); -INSERT INTO entity_mentions VALUES(2078,'Tibco-IM',5,481,'others'); -INSERT INTO entity_mentions VALUES(2079,'Tibco Integration Manager',5,481,'others'); -INSERT INTO entity_mentions VALUES(2080,'Tibco InConcert',2,218,'others'); -INSERT INTO entity_mentions VALUES(2081,'TIBCO Rendezvous (RV)',2,219,'others'); -INSERT INTO entity_mentions VALUES(2082,'TIBCO Rendezvous',2,219,'others'); -INSERT INTO entity_mentions VALUES(2083,'Tivoli Access Manager (TAM)',2,220,'others'); -INSERT INTO entity_mentions VALUES(2084,'Tivoli Access Manager 6.1',2,220,'others'); -INSERT INTO entity_mentions VALUES(2085,'TortoiseCVS',2,221,'others'); -INSERT INTO entity_mentions VALUES(2086,'TortoiseSVN',2,222,'others'); -INSERT INTO entity_mentions VALUES(2087,'TortoiseSVN 1.8',2,222,'others'); -INSERT INTO entity_mentions VALUES(2088,'TSQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2089,'Transact-SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2090,'Trasact SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2091,'T-SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2092,'Transact SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2093,'TSO/ISPF',2,223,'others'); -INSERT INTO entity_mentions VALUES(2094,'ispf',2,223,'others'); -INSERT INTO entity_mentions VALUES(2095,'TSO',2,223,'others'); -INSERT INTO entity_mentions VALUES(2096,'TSO ISPF',2,223,'others'); -INSERT INTO entity_mentions VALUES(2097,'TWS zCentric 8.4',2,224,'others'); -INSERT INTO entity_mentions VALUES(2098,'TWS Zcentric',2,224,'others'); -INSERT INTO entity_mentions VALUES(2099,'TypeScript',9,367,'others'); -INSERT INTO entity_mentions VALUES(2100,'UltiDev Web Server Pro (UWS)',8,282,'others'); -INSERT INTO entity_mentions VALUES(2101,'UltiDev Web Server Pro',8,282,'others'); -INSERT INTO entity_mentions VALUES(2102,'UltiDev Web Server Pro 2',8,282,'others'); -INSERT INTO entity_mentions VALUES(2103,'UltiDev Cassini Pro',8,282,'others'); -INSERT INTO entity_mentions VALUES(2104,'Uniface',2,225,'others'); -INSERT INTO entity_mentions VALUES(2105,'Unix',6,578,'others'); -INSERT INTO entity_mentions VALUES(2106,'IBM AIX 6.1 6100 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2107,'AIX 7.1 7100-04-06-1806',6,445,'others'); -INSERT INTO entity_mentions VALUES(2108,'AIX-6',6,445,'others'); -INSERT INTO entity_mentions VALUES(2109,'AIX Enterprise',6,445,'others'); -INSERT INTO entity_mentions VALUES(2110,'IBM AIX',6,445,'others'); -INSERT INTO entity_mentions VALUES(2111,'AIX7.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2112,'AIX 7100-05-03-1838',6,445,'others'); -INSERT INTO entity_mentions VALUES(2113,'IBM - AIX Standard Edition 7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2114,'IBM AIX 5.3, SERVICE PACK TL12 SP08',6,445,'others'); -INSERT INTO entity_mentions VALUES(2115,'AIX7.2.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2116,'AIX 6.1.0.0.09',6,445,'others'); -INSERT INTO entity_mentions VALUES(2117,'AIX 7.2.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2118,'AIX 5.3 5300-12-07-1241',6,445,'others'); -INSERT INTO entity_mentions VALUES(2119,'AIX 6.1.9.101',6,445,'others'); -INSERT INTO entity_mentions VALUES(2120,'AIX 5.3.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2121,'AIX 7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2122,'AIX 7.1 7100-05-03-1846',6,445,'others'); -INSERT INTO entity_mentions VALUES(2123,'AIX 5.3.0.0.08',6,445,'others'); -INSERT INTO entity_mentions VALUES(2124,'AIX 6.1 6100-09-09-1717',6,445,'others'); -INSERT INTO entity_mentions VALUES(2125,'AIX 7.1 7100-04-01-1543',6,445,'others'); -INSERT INTO entity_mentions VALUES(2126,'AIX 6100-09-09-1717',6,445,'others'); -INSERT INTO entity_mentions VALUES(2127,'IBM AIX 6.1 Enterprise 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2128,'AIX 7.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2129,'IBM AIX 7.1 x',6,445,'others'); -INSERT INTO entity_mentions VALUES(2130,'AIX 7.1 7100-05-03-1838',6,445,'others'); -INSERT INTO entity_mentions VALUES(2131,'AIX7.2',6,445,'others'); -INSERT INTO entity_mentions VALUES(2132,'AIX 6.1 6100-09-12-1838',6,445,'others'); -INSERT INTO entity_mentions VALUES(2133,'AIX (Linux)',6,445,'others'); -INSERT INTO entity_mentions VALUES(2134,'IBM - AIX Express Edition 7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2135,'AIX 5.3.0.0.12',6,445,'others'); -INSERT INTO entity_mentions VALUES(2136,'AIX',6,445,'others'); -INSERT INTO entity_mentions VALUES(2137,'IBM AIX 6.1 6100 32 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2138,'AIX: 7.2',6,445,'others'); -INSERT INTO entity_mentions VALUES(2139,'AIX 6.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2140,'AIX 5.3',6,445,'others'); -INSERT INTO entity_mentions VALUES(2141,'IBM AIX 5.3 5300 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2142,'AIX 5.2.0.0.09',6,445,'others'); -INSERT INTO entity_mentions VALUES(2143,'AIX 5.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2144,'AIX 7100-05-03-1846',6,445,'others'); -INSERT INTO entity_mentions VALUES(2145,'AIX 7.2 7200-03-03-1914',6,445,'others'); -INSERT INTO entity_mentions VALUES(2146,'AIX6.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2147,'IBM AIX 7.1 7100 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2148,'AIX 7.1 7100-05-04-1914',6,445,'others'); -INSERT INTO entity_mentions VALUES(2149,'IBM AIX 5.x',6,445,'others'); -INSERT INTO entity_mentions VALUES(2150,'AIX 6.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2151,'AIX 7.1.5.16',6,445,'others'); -INSERT INTO entity_mentions VALUES(2152,'AIX 6.1.0.0 UNIX LPAR',6,445,'others'); -INSERT INTO entity_mentions VALUES(2153,'AIX 5300-12-07-1241',6,445,'others'); -INSERT INTO entity_mentions VALUES(2154,'IBM AIX 5.3, SERVICE PACK TL12 SP01',6,445,'others'); -INSERT INTO entity_mentions VALUES(2155,'IBM - AIX 6.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2156,'IBM AIX 6.1x',6,445,'others'); -INSERT INTO entity_mentions VALUES(2157,'AIX7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2158,'AIX 7100-04-05-1720',6,445,'others'); -INSERT INTO entity_mentions VALUES(2159,'AIX Express',6,445,'others'); -INSERT INTO entity_mentions VALUES(2160,'IBM AIX 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2161,'AIX Standard',6,445,'others'); -INSERT INTO entity_mentions VALUES(2162,'AIX 6.1.8.16',6,445,'others'); -INSERT INTO entity_mentions VALUES(2163,'FreeBSD (64-bit)',6,447,'others'); -INSERT INTO entity_mentions VALUES(2164,'FreeBSD',6,447,'others'); -INSERT INTO entity_mentions VALUES(2165,'FreeBSD 8.X',6,447,'others'); -INSERT INTO entity_mentions VALUES(2166,'FreeBSD 8.4',6,447,'others'); -INSERT INTO entity_mentions VALUES(2167,'Sun Solaris 10 OS',6,448,'others'); -INSERT INTO entity_mentions VALUES(2168,'Solaris 11.2 SPARC',6,448,'others'); -INSERT INTO entity_mentions VALUES(2169,'Solaris UNIX',6,448,'others'); -INSERT INTO entity_mentions VALUES(2170,'Unix Servers (Solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2171,'Oracle Solaris 11.3 SPARC',6,448,'others'); -INSERT INTO entity_mentions VALUES(2172,'SUN 5.10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2173,'SOLARIS 10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2174,'Sun Solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2175,'Solaris 5.10 (Generic_150400-61)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2176,'Solaris 5.10 (Generic_150400-62)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2177,'Solaris (Sun OS 5.9)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2178,'Solaris 5.10 (Generic_150400-55)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2179,'SUNOS 5.10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2180,'Sun Solaris - 5.10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2181,'Solaris 10 (SunOS 5.10)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2182,'Oracle Solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2183,'Unix - SunOS - 5.10 Generic_147147-26',6,448,'others'); -INSERT INTO entity_mentions VALUES(2184,'Solaris 1 (SPARC)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2185,'SUN OS',6,448,'others'); -INSERT INTO entity_mentions VALUES(2186,'solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2187,'SunSolaris 10.0',6,448,'others'); -INSERT INTO entity_mentions VALUES(2188,'SOLARIS 9',6,448,'others'); -INSERT INTO entity_mentions VALUES(2189,'SunOS',6,448,'others'); -INSERT INTO entity_mentions VALUES(2190,'SUN 5.9',6,448,'others'); -INSERT INTO entity_mentions VALUES(2191,'SOLARIS 8',6,448,'others'); -INSERT INTO entity_mentions VALUES(2192,'SunOS 5.1',6,448,'others'); -INSERT INTO entity_mentions VALUES(2193,'SunOS 5.11',6,448,'others'); -INSERT INTO entity_mentions VALUES(2194,'Oracle Solaris 10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2195,'Sun Solaris 10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2196,'HPUX 11i V1',6,449,'others'); -INSERT INTO entity_mentions VALUES(2197,'HP-UX 11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2198,'HPUX 11i V3',6,449,'others'); -INSERT INTO entity_mentions VALUES(2199,'HP/UXB.11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2200,'HPUX B.11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2201,'HPUX 11',6,449,'others'); -INSERT INTO entity_mentions VALUES(2202,'hp-ux',6,449,'others'); -INSERT INTO entity_mentions VALUES(2203,'HPUX 11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2204,'HP-UX B.11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2205,'HPUX 11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2206,'HP-UX 11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2207,'HP-UX B.11.00',6,449,'others'); -INSERT INTO entity_mentions VALUES(2208,'HP-UX B.11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2209,'HP-UX B.11.11',6,449,'others'); -INSERT INTO entity_mentions VALUES(2210,'HP 10.20',6,449,'others'); -INSERT INTO entity_mentions VALUES(2211,'HP Unix',6,449,'others'); -INSERT INTO entity_mentions VALUES(2212,'HP UX',6,449,'others'); -INSERT INTO entity_mentions VALUES(2213,'HP-UX 11.11',6,449,'others'); -INSERT INTO entity_mentions VALUES(2214,'HPUX',6,449,'others'); -INSERT INTO entity_mentions VALUES(2215,'HPUX-11i V3',6,449,'others'); -INSERT INTO entity_mentions VALUES(2216,'HP-UX B.10.20',6,449,'others'); -INSERT INTO entity_mentions VALUES(2217,'HP/UXB.11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2218,'HP-UX 10.20',6,449,'others'); -INSERT INTO entity_mentions VALUES(2219,'Visual Basic .Net',9,368,'others'); -INSERT INTO entity_mentions VALUES(2220,'VB.NET',9,368,'others'); -INSERT INTO entity_mentions VALUES(2221,'VB Script',9,369,'others'); -INSERT INTO entity_mentions VALUES(2222,'VBscript',9,369,'others'); -INSERT INTO entity_mentions VALUES(2223,'NetManage-ViewNow',2,226,'others'); -INSERT INTO entity_mentions VALUES(2224,'ViewNow X Server',2,226,'others'); -INSERT INTO entity_mentions VALUES(2225,'Virtual I/O Server',2,227,'others'); -INSERT INTO entity_mentions VALUES(2226,'VIO 2.2.0.10',2,227,'others'); -INSERT INTO entity_mentions VALUES(2227,'VIOS',2,227,'others'); -INSERT INTO entity_mentions VALUES(2228,'visibroker',2,228,'others'); -INSERT INTO entity_mentions VALUES(2229,'VB6',9,370,'others'); -INSERT INTO entity_mentions VALUES(2230,'VB 6.0',9,370,'others'); -INSERT INTO entity_mentions VALUES(2231,'visualbasic',9,370,'others'); -INSERT INTO entity_mentions VALUES(2232,'VB',9,370,'others'); -INSERT INTO entity_mentions VALUES(2233,'VISUAL BASIC 6',9,370,'others'); -INSERT INTO entity_mentions VALUES(2234,'Visual Basic',9,370,'others'); -INSERT INTO entity_mentions VALUES(2235,'Visual Basic 6.0',9,370,'others'); -INSERT INTO entity_mentions VALUES(2236,'Visusal Basic',9,370,'others'); -INSERT INTO entity_mentions VALUES(2237,'Visual Basic for Applications (VBA)',9,371,'others'); -INSERT INTO entity_mentions VALUES(2238,'Visual Basic for Applications',9,371,'others'); -INSERT INTO entity_mentions VALUES(2239,'VBA',9,371,'others'); -INSERT INTO entity_mentions VALUES(2240,'Access VB',9,371,'others'); -INSERT INTO entity_mentions VALUES(2241,'Visual FoxPro',9,372,'others'); -INSERT INTO entity_mentions VALUES(2242,'vfoxpro',9,372,'others'); -INSERT INTO entity_mentions VALUES(2243,'VisualForce',10,509,'others'); -INSERT INTO entity_mentions VALUES(2244,'ESXi',3,568,'others'); -INSERT INTO entity_mentions VALUES(2245,'ESXi 5.1',3,568,'others'); -INSERT INTO entity_mentions VALUES(2246,'VM ESXi 5.1',3,568,'others'); -INSERT INTO entity_mentions VALUES(2247,'VM ESXi 6.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2248,'VM ESXi 5.5',3,568,'others'); -INSERT INTO entity_mentions VALUES(2249,'VMWARE ESXI SERVER 5.5',3,568,'others'); -INSERT INTO entity_mentions VALUES(2250,'VM ESXi 5.0.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2251,'VMware ESXi 5.5.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2252,'VM ESXi 6.5',3,568,'others'); -INSERT INTO entity_mentions VALUES(2253,'VMWare ESX',3,568,'others'); -INSERT INTO entity_mentions VALUES(2254,'VM ESXi 5.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2255,'VMWare ESXi',3,568,'others'); -INSERT INTO entity_mentions VALUES(2256,'VMWARE ESXI SERVER 5.1',3,568,'others'); -INSERT INTO entity_mentions VALUES(2257,'VMware Appliance',3,569,'others'); -INSERT INTO entity_mentions VALUES(2258,'VMware Server',3,569,'others'); -INSERT INTO entity_mentions VALUES(2259,'VMware Solution Exchange Marketplace (VSX)',2,229,'others'); -INSERT INTO entity_mentions VALUES(2260,'VSX',2,229,'others'); -INSERT INTO entity_mentions VALUES(2261,'VMware Solution Exchange Marketplace',2,229,'others'); -INSERT INTO entity_mentions VALUES(2262,'VMware - VMware Tools 10.2',2,230,'others'); -INSERT INTO entity_mentions VALUES(2263,'VMware Tools',2,230,'others'); -INSERT INTO entity_mentions VALUES(2264,'VMware - VMware vCenter Server 5.5',2,231,'others'); -INSERT INTO entity_mentions VALUES(2265,'VMware vCenter',2,231,'others'); -INSERT INTO entity_mentions VALUES(2266,'VoiceXML',9,373,'others'); -INSERT INTO entity_mentions VALUES(2267,'VXML',9,373,'others'); -INSERT INTO entity_mentions VALUES(2268,'WebFOCUS',2,232,'others'); -INSERT INTO entity_mentions VALUES(2269,'Web Focus',2,232,'others'); -INSERT INTO entity_mentions VALUES(2270,'FOCEXEC',2,232,'others'); -INSERT INTO entity_mentions VALUES(2271,'Web Logic Integration',2,233,'others'); -INSERT INTO entity_mentions VALUES(2272,'WLI 8',2,233,'others'); -INSERT INTO entity_mentions VALUES(2273,'WebLogic Integration',2,233,'others'); -INSERT INTO entity_mentions VALUES(2274,'Web Logic Integration 9.2.0.0',2,233,'others'); -INSERT INTO entity_mentions VALUES(2275,'webMethods Integration Server',8,283,'others'); -INSERT INTO entity_mentions VALUES(2276,'WebMethods',8,283,'others'); -INSERT INTO entity_mentions VALUES(2277,'Webmethods 9.7',8,283,'others'); -INSERT INTO entity_mentions VALUES(2278,'WAS 7',8,284,'others'); -INSERT INTO entity_mentions VALUES(2279,'websphere 8.0.0.4',8,284,'others'); -INSERT INTO entity_mentions VALUES(2280,'IBM WEBSPHERE APPLICATION SERVER VERSION 6.1.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2281,'WEBSPHERE APPLICATION SERVER - BASE VERSION 8.5.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2282,'WEBSPHERE APPLICATION SERVER 8',8,284,'others'); -INSERT INTO entity_mentions VALUES(2283,'Websphere Application Server 6.x',8,284,'others'); -INSERT INTO entity_mentions VALUES(2284,'websphere',8,284,'others'); -INSERT INTO entity_mentions VALUES(2285,'WebSphere Application Server 9.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2286,'IBM WebSphere Application Server Network Deployment, 8.0.0.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2287,'WebSphere Application Server (WAS)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2288,'IBM WebSphere Application Server Network Deployment 7',8,284,'others'); -INSERT INTO entity_mentions VALUES(2289,'WebSphere Application Server 8.5.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2290,'WAS ND8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2291,'WAS7',8,284,'others'); -INSERT INTO entity_mentions VALUES(2292,'WebSphere Application Server 5.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2293,'WebSphere Application Server 8.5.5.6',8,284,'others'); -INSERT INTO entity_mentions VALUES(2294,'WebSphere Application Server 5.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2295,'WebSphere Application Server 8.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2296,'IBM WebSphere 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2297,'Websphere 9.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2298,'WebSphere 7.0.0.27',8,284,'others'); -INSERT INTO entity_mentions VALUES(2299,'IBM - WebSphere Application Server - Base 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2300,'WebSphere Application Server 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2301,'WEBSPHERE APPLICATION SERVER 8.5.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2302,'WebSphere Application Server 8.5 (WAS)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2303,'Websphere AS (JVM)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2304,'WebSphere App Server',8,284,'others'); -INSERT INTO entity_mentions VALUES(2305,'WebSphere Application Server 6.1 (WAS)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2306,'WEBSPHERE APPLICATION SERVER',8,284,'others'); -INSERT INTO entity_mentions VALUES(2307,'WAS 6.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2308,'WebSphere 8.0.0.4',8,284,'others'); -INSERT INTO entity_mentions VALUES(2309,'WEBSPHERE APPLICATION SERVER 6.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2310,'IBM WebSphere',8,284,'others'); -INSERT INTO entity_mentions VALUES(2311,'Websphere Application Server 8.5.5.11',8,284,'others'); -INSERT INTO entity_mentions VALUES(2312,'WebSphere Application Server 8.5.5.8',8,284,'others'); -INSERT INTO entity_mentions VALUES(2313,'IBM WebSphere Application Server 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2314,'Websphere (WAS7)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2315,'IBM WebSphere Application',8,284,'others'); -INSERT INTO entity_mentions VALUES(2316,'WAS 6.x',8,284,'others'); -INSERT INTO entity_mentions VALUES(2317,'WAS',8,284,'others'); -INSERT INTO entity_mentions VALUES(2318,'IBM OpenStack Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2319,'IBM WebSphere Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2320,'Open Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2321,'IBM Open Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2322,'WebSphere Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2323,'IBM WebSphere Application Server Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2324,'IBM WAS Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2325,'WebSphere Application Server Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2326,'WAS Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2327,'IBM Cloud WebSphere Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2328,'OpenStack Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2329,'WebSphere Commerce Suite (WCS)',2,234,'others'); -INSERT INTO entity_mentions VALUES(2330,'WebSphere Commerce',2,234,'others'); -INSERT INTO entity_mentions VALUES(2331,'WMB 6.1',2,235,'others'); -INSERT INTO entity_mentions VALUES(2332,'WebSphere Message Broker v6.0',2,235,'others'); -INSERT INTO entity_mentions VALUES(2333,'WebSphere Message Broker',2,235,'others'); -INSERT INTO entity_mentions VALUES(2334,'WebSphere Portal Version 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2335,'WebSphere Portal Enable Limited Use 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2336,'WebSphere Portal Server 6.0',8,286,'others'); -INSERT INTO entity_mentions VALUES(2337,'WebSphere Portal Enable 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2338,'WebSphere Portal Extend 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2339,'WebSphere Portal Server',8,286,'others'); -INSERT INTO entity_mentions VALUES(2340,'WebSphere Portal Limited Use 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2341,'WebSphere Portal Extend Limited Use 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2342,'Websphere Process Server',8,287,'others'); -INSERT INTO entity_mentions VALUES(2343,'Websphere Process Server 8.5',8,287,'others'); -INSERT INTO entity_mentions VALUES(2344,'Wherescape Red',2,236,'others'); -INSERT INTO entity_mentions VALUES(2345,'Windchill 11.1',2,237,'others'); -INSERT INTO entity_mentions VALUES(2346,'Windchill',2,237,'others'); -INSERT INTO entity_mentions VALUES(2347,'windows nt',6,580,'others'); -INSERT INTO entity_mentions VALUES(2348,'Windows',6,580,'others'); -INSERT INTO entity_mentions VALUES(2349,'Windows OS: Windows NT',6,580,'others'); -INSERT INTO entity_mentions VALUES(2350,'Windows NT 6.1 Service Pack 1',6,580,'others'); -INSERT INTO entity_mentions VALUES(2351,'Windows NT 6.1',6,580,'others'); -INSERT INTO entity_mentions VALUES(2352,'Windows NT 4.0',6,580,'others'); -INSERT INTO entity_mentions VALUES(2353,'Microsoft Windows NT 6.1',6,580,'others'); -INSERT INTO entity_mentions VALUES(2354,'Window',6,580,'others'); -INSERT INTO entity_mentions VALUES(2355,'Microsoft Windows NT 4.0',6,580,'others'); -INSERT INTO entity_mentions VALUES(2356,'WINDOWS6.1.7601',6,580,'others'); -INSERT INTO entity_mentions VALUES(2357,'Windows NT 6.1Windows NT 6.1',6,580,'others'); -INSERT INTO entity_mentions VALUES(2358,'Windows Indexing Service',2,238,'others'); -INSERT INTO entity_mentions VALUES(2359,'IIS Index Search Server',2,238,'others'); -INSERT INTO entity_mentions VALUES(2360,'WTS',2,239,'others'); -INSERT INTO entity_mentions VALUES(2361,'Windows Terminal Server',2,239,'others'); -INSERT INTO entity_mentions VALUES(2362,'Windows Terminal Server (WTS)',2,239,'others'); -INSERT INTO entity_mentions VALUES(2363,'Windows 7 Standard',6,451,'others'); -INSERT INTO entity_mentions VALUES(2364,'WINDOWS 10 SERVER STANDARD EDITION X64',6,451,'others'); -INSERT INTO entity_mentions VALUES(2365,'Microsoft Windows 7 (64-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2366,'Microsoft Windows XP Professional (32-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2367,'Windows 7 Professional x64',6,451,'others'); -INSERT INTO entity_mentions VALUES(2368,'Microsoft Microsoft Windows Entreprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2369,'Microsoft Windows 2000',6,451,'others'); -INSERT INTO entity_mentions VALUES(2370,'Microsoft Windows 10',6,451,'others'); -INSERT INTO entity_mentions VALUES(2371,'MS Microsoft Windows 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2372,'Microsoft Windows 7 Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2373,'Microsoft Microsoft Windows 7 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2374,'Microsoft Windows 10 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2375,'Win Desktop',6,451,'others'); -INSERT INTO entity_mentions VALUES(2376,'Windows 10 Pro',6,451,'others'); -INSERT INTO entity_mentions VALUES(2377,'Windows 10',6,451,'others'); -INSERT INTO entity_mentions VALUES(2378,'Windows 7 Ultimate',6,451,'others'); -INSERT INTO entity_mentions VALUES(2379,'Microsoft Windows 8 (64-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2380,'Microsoft Windows XP',6,451,'others'); -INSERT INTO entity_mentions VALUES(2381,'Windows 10 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2382,'Windows XP',6,451,'others'); -INSERT INTO entity_mentions VALUES(2383,'Windows 10 Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2384,'Windows 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2385,'Microsoft Windows 10 (64-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2386,'Win 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2387,'windowsxp',6,451,'others'); -INSERT INTO entity_mentions VALUES(2388,'Microsoft Windows Unknown',6,451,'others'); -INSERT INTO entity_mentions VALUES(2389,'Windows 7 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2390,'Windows XP Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2391,'Windows 7 Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2392,'Window XP',6,451,'others'); -INSERT INTO entity_mentions VALUES(2393,'Microsoft Windows 7 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2394,'Microsoft Windows 7 - SOE',6,451,'others'); -INSERT INTO entity_mentions VALUES(2395,'Windows 7 Enterprise Edition',6,451,'others'); -INSERT INTO entity_mentions VALUES(2396,'Windows 8',6,451,'others'); -INSERT INTO entity_mentions VALUES(2397,'Microsoft Windows 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2398,'Microsoft Windows 7 (32-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2399,'Windows Embedded Standard 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2400,'Win10',6,451,'others'); -INSERT INTO entity_mentions VALUES(2401,'Windows 2003',6,451,'others'); -INSERT INTO entity_mentions VALUES(2402,'Windows Server 2012 R9',6,452,'others'); -INSERT INTO entity_mentions VALUES(2403,'Windows 2003 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2404,'Windows 2008 Enterprise R2 x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2405,'Windows Server 2003 SE x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2406,'Microsoft Windows Server 2008 R2 Standard Service Pack 1, 64-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2407,'WINDOWS SERVER 2004',6,452,'others'); -INSERT INTO entity_mentions VALUES(2408,'WINDOWS 2008R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2409,'Microsoft Windows Server 2008 Standard Editio',6,452,'others'); -INSERT INTO entity_mentions VALUES(2410,'MICROSOFT WINDOWS NT 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2411,'Windows Server 2008 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2412,'Windows Server 2012 R3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2413,'WINDOWS 2003 R2 SERVER STANDARD EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2414,'Windows Server 28 - i386',6,452,'others'); -INSERT INTO entity_mentions VALUES(2415,'Microsoft Microsoft Windows Server 2016 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2416,'Microsoft(R) Windows(R) Server 2003, Enterprise Edition Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2417,'Windows Server 2008 Enterprise x64 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2418,'Windows Server 2016',6,452,'others'); -INSERT INTO entity_mentions VALUES(2419,'Microsoft - Windows server 2012 - R2 - Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2420,'Microsoft(R) Windows(R) Server 2003, Standard Edition R2 Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2421,'Microsoft Windows Server 2008 R2 Standard x64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2422,'WINDOWS6.1.7601 Server 2008 R2 Ent x64 SP 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2423,'Windows Server 2012 R2 Standard (Core)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2424,'WINDOWS 2008 R2 SERVER STANDARD EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2425,'Windows Server 2012 R26',6,452,'others'); -INSERT INTO entity_mentions VALUES(2426,'Microsoft(R) Windows(R) Server 2003 Standard x64 Edition R2 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2427,'Windows 2008 Enterprise 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2428,'Microsoft Windows Server 2003 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2429,'Windows Server 2012 R2 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2430,'Windows 2003 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2431,'Windows 2008 R2 Enterprise 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2432,'Windows Server 2012 R2 Standard 64 bit Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2433,'Microsoft Windows Server 2003 Enterprise Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2434,'Microsoft Windows Server 2000 Advanced',6,452,'others'); -INSERT INTO entity_mentions VALUES(2435,'Microsoft Windows Server 2012 R2 St',6,452,'others'); -INSERT INTO entity_mentions VALUES(2436,'Windows 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2437,'Windows 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2438,'Windows Server 2008 R2 (64 bits)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2439,'Windows X-Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2440,'Windows 2008 R2 Standard 6.1.7601 Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2441,'Windows Server 2003 Standard (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2442,'Windows 2008 Standard x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2443,'Microsoft Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2444,'Microsoft Windows Storage Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2445,'Windows Server 2003 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2446,'Windows 2012 R2 Standard 64-Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2447,'Windows Server 212 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2448,'Windows Server 2012 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2449,'Windows Server 2012 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2450,'Windows Server 2017',6,452,'others'); -INSERT INTO entity_mentions VALUES(2451,'Windows Server 2000 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2452,'Windows Server 2003 Enterprise R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2453,'Windows Server 2003 SP2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2454,'Microsoft Windows 2000 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2455,'w2k12',6,452,'others'); -INSERT INTO entity_mentions VALUES(2456,'WINDOWS 2013',6,452,'others'); -INSERT INTO entity_mentions VALUES(2457,'WINDOWS 2016 SE 64 BIT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2458,'Windows Server 2008 R2 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2459,'Microsoft - Windows 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2460,'Microsoft Windows Server 2016',6,452,'others'); -INSERT INTO entity_mentions VALUES(2461,'Microsoft Windows Server 2000 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2462,'Windows Server 2012 R12',6,452,'others'); -INSERT INTO entity_mentions VALUES(2463,'Window Server 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2464,'WINDOWS SERVER 2008 ENTERPRISE X64 6.0',6,452,'others'); -INSERT INTO entity_mentions VALUES(2465,'Windows server 2008R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2466,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2467,'MICROSOFT WINDOWS 2008 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2468,'Microsoft Windows Server 2012 Standardx64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2469,'MICROSOFT WINDOWS STD 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2470,'Microsoft(R) Windows(R) Server 2003, Standard Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2471,'Windows Server 2012 R23',6,452,'others'); -INSERT INTO entity_mentions VALUES(2472,'WINDOWS 6.3.9600 Server 2012 R2 Std x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2473,'Windows 2008 R2 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2474,'Windows Server 2008 SP1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2475,'Windows server 2008 R2 standard Service Pack1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2476,'MICROSOFT WINDOWS STD 2008 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2477,'Microsoft Windows Server 2008 Standard Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2478,'Windows 2012 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2479,'MICROSOFT WINDOWS NT 2003 ENT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2480,'Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2481,'Windows Server 2016 Standard 64 bit Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2482,'MICROSOFT WINDOWS 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2483,'Windows Server 2003 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2484,'Windows 2003 Standard5.2.3790',6,452,'others'); -INSERT INTO entity_mentions VALUES(2485,'Windows Server 2012 R4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2486,'Windows Server 2012 R7',6,452,'others'); -INSERT INTO entity_mentions VALUES(2487,'Windows Server 2012 R17',6,452,'others'); -INSERT INTO entity_mentions VALUES(2488,'Windows 2012 R',6,452,'others'); -INSERT INTO entity_mentions VALUES(2489,'Windows Server 2012 R8',6,452,'others'); -INSERT INTO entity_mentions VALUES(2490,'WINDOWS SERVER 2012 R2 DATACENTER',6,452,'others'); -INSERT INTO entity_mentions VALUES(2491,'Microsoft Windows Server 2003 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2492,'Windows 2008 Enterprise 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2493,'MICROSOFT WINDOWS 2008 ENT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2494,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2495,'Windows 2012 R2 Standard 6.3.9600',6,452,'others'); -INSERT INTO entity_mentions VALUES(2496,'Windows 2000 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2497,'Windows Server 2012 R20',6,452,'others'); -INSERT INTO entity_mentions VALUES(2498,'Windows Server 2000',6,452,'others'); -INSERT INTO entity_mentions VALUES(2499,'Windows Server 2003 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2500,'Windows Server 2008 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2501,'Windows 2016 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2502,'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2503,'Microsoft Windows Server 2016 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2504,'WINDOWS SERVER 2008 R2 STANDARD 6.1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2505,'Microsoft - Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2506,'Microsoft Windows Server 2012 (64-bit) - Server 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2507,'Microsoft Windows Server 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2508,'Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2509,'Windows 2016 Datacenter10.0.14393',6,452,'others'); -INSERT INTO entity_mentions VALUES(2510,'Windows Server 2008 64-Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2511,'windows server 2008 r2 ent',6,452,'others'); -INSERT INTO entity_mentions VALUES(2512,'Windows Server 212',6,452,'others'); -INSERT INTO entity_mentions VALUES(2513,'windows6.3.9600',6,452,'others'); -INSERT INTO entity_mentions VALUES(2514,'Windows 2012 R2 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2515,'Microsoft Windows Server 2000 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2516,'windows6.3.9600 server 2012 r2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2517,'Windows 2008 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2518,'Microsoft Microsoft Windows Server 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2519,'Windows 2003 Server Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2520,'Windows Server 2012 R16',6,452,'others'); -INSERT INTO entity_mentions VALUES(2521,'Window server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2522,'Microsoft Windows Server 2003 Enterprise Edition Version 5.2.3790 [Build 3790]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2523,'Windows 2003 Server R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2524,'Windows Server 2012 R21',6,452,'others'); -INSERT INTO entity_mentions VALUES(2525,'Microsoft Windows Server 2003 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2526,'Windows Server 2012 R6',6,452,'others'); -INSERT INTO entity_mentions VALUES(2527,'Windows Server 2012 R27',6,452,'others'); -INSERT INTO entity_mentions VALUES(2528,'Windows 2008 Standard without Hyper-V6.0.6003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2529,'WINDOWS SERVER 2012 R2 - Server 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2530,'Windows 2008 R2 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2531,'Microsoft Windows Server 2003 Standard (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2532,'Windows 2012 R2 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2533,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2, 64-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2534,'Windows Server 2018',6,452,'others'); -INSERT INTO entity_mentions VALUES(2535,'Windows 2008 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2536,'WINDOWS6.3.9600 Server 2012 R2 DC x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2537,'Windows 2008 Standard 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2538,'WINDOWS 6.1.7601 Server 2008 R2 Ent x64 SP 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2539,'WINDOWS SERVER 2012 R2 DATACENTER 6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2540,'Microsoft Windows Server 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2541,'Windows Server 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2542,'Windows server Standard SP2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2543,'WINDOWS 2003 R2 SERVER ENTERPRISE EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2544,'Windows 2000',6,452,'others'); -INSERT INTO entity_mentions VALUES(2545,'W2K8R2 Standard 64 BIT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2546,'Windows Server 2008 R2 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2547,'Windows 2008 Standard6.0.6003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2548,'Windows2008 R2 Enterprise 64bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2549,'WINDOWS 2012 R2 SERVER STANDARD EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2550,'Windows Server 2000 Professional',6,452,'others'); -INSERT INTO entity_mentions VALUES(2551,'Microsoft Windows Server 2008 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2552,'WINDOWS SERVER 2003 R2 ENTERPRISE 5.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2553,'Win2008R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2554,'Microsoft Windows Server 2003 Web Edition (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2555,'Windows 2008 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2556,'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7601 [Build 7601]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2557,'Windows Server 2003 Appliance',6,452,'others'); -INSERT INTO entity_mentions VALUES(2558,'Windows server 2012 R2 Standared',6,452,'others'); -INSERT INTO entity_mentions VALUES(2559,'Windows 2008 ENT R2 (64 bits)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2560,'Windows Server 2003 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2561,'Microsoft Windows Server 2003 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2562,'WIN2008R2 6.1.7601',6,452,'others'); -INSERT INTO entity_mentions VALUES(2563,'Microsoft Windows Server 2012 R2 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2564,'microsoft windows std 2012 tpm',6,452,'others'); -INSERT INTO entity_mentions VALUES(2565,'Windows Server 2012 R2 Standardx64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2566,'microsoft windows 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2567,'Microsoft Windows Server 2016 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2568,'Windows 2008 Standard 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2569,'Microsoft Windows 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2570,'Microsoft Windows 2000 Server Service Pack 4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2571,'Microsoft Windows Server 2003 Enterprise x64 Edition Version 5.2.3790 [Build 3790]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2572,'Microsoft Windows Storage Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2573,'Microsoft Windows Server 2003 Standard x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2574,'Window2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2575,'Microsoft Windows NT Server Version 4.0.1381 [Build 1381]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2576,'Windows Server 2003 Ent',6,452,'others'); -INSERT INTO entity_mentions VALUES(2577,'Windows Server 2000 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2578,'Windows 2008 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2579,'Microsoft Windows Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2580,'Microsoft Windows Server 2003 Standard Edition Version 5.2.3790 [Build 3790]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2581,'Windows Server 2003;',6,452,'others'); -INSERT INTO entity_mentions VALUES(2582,'WS03',6,452,'others'); -INSERT INTO entity_mentions VALUES(2583,'WINDOWS 6.0.6002 Server 2008 Ent x64 SP 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2584,'Windows 2008 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2585,'Microsoft Windows Server 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2586,'Windows Server 2008 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2587,'Windows Server 2008 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2588,'windows server 2008 r2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2589,'Windows 2008 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2590,'Windows Server 2003 Std 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2591,'Windows 2008 R2 Standard 64bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2592,'Microsoft Windows Server 2008 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2593,'MS WINDOWS SERVER 08',6,452,'others'); -INSERT INTO entity_mentions VALUES(2594,'Microsoft Windows 2003 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2595,'Windows Server 2012 R25',6,452,'others'); -INSERT INTO entity_mentions VALUES(2596,'MICROSOFT WINDOWS NT 2003 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2597,'Win Server 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2598,'Windows 2003 R2 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2599,'WINDOWS 5.2.3790 Server 2003 Ent SP 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2600,'WIN2014',6,452,'others'); -INSERT INTO entity_mentions VALUES(2601,'Windows Server 2012 R19',6,452,'others'); -INSERT INTO entity_mentions VALUES(2602,'Microsoft Windows Server 2012 R2 Standard Version 6.3.9600 [Build 9600]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2603,'Windows Server 2008 R2 Ent 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2604,'Win 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2605,'Microsoft Windows Server 2008 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2606,'WINDOWS 6.3.9600 Server 2012 R2 DC x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2607,'Windows Server 2012 R24',6,452,'others'); -INSERT INTO entity_mentions VALUES(2608,'Win Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2609,'Windows 2008 Standard R2 x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2610,'Windows Server 2008 R2 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2611,'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 6196 MB memory installed',6,452,'others'); -INSERT INTO entity_mentions VALUES(2612,'Windows2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2613,'Windows 2008 R2 Standard6.1.7601',6,452,'others'); -INSERT INTO entity_mentions VALUES(2614,'Windows 2016',6,452,'others'); -INSERT INTO entity_mentions VALUES(2615,'Windows 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2616,'Windows Server 2008 R2 64Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2617,'Windows Server 2012 R14',6,452,'others'); -INSERT INTO entity_mentions VALUES(2618,'Windows Storage Server 2008 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2619,'Windows Server 2008 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2620,'Microsoft Windows Server 2003 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2621,'Windows OS 2008 Server R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2622,'Microsoft Microsoft Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2623,'Windows Server 28 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2624,'WINDOWS 2003 SERVER ENTERPRISE EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2625,'Microsoft Windows Server 2003 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2626,'Windows Server 2008 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2627,'Windows Server 2003 Std 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2628,'Windows 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2629,'Wintel',6,452,'others'); -INSERT INTO entity_mentions VALUES(2630,'Windows Server 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2631,'Windows Server 2003 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2632,'Microsoft Windows Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2633,'Windows 2000 Standard Server SP4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2634,'WINDOWS6.3.9600 Server 2012 R2 Std x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2635,'Microsoft Windows 2000 Server Version 5.0.2195 [Build 2195]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2636,'Microsoft Windows Server 2016 St',6,452,'others'); -INSERT INTO entity_mentions VALUES(2637,'WINDOWS SERVER 2008 ENTERPRISE 6.0',6,452,'others'); -INSERT INTO entity_mentions VALUES(2638,'Windows Server 2008 R2 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2639,'Windows 2003 Enterprise5.2.3790',6,452,'others'); -INSERT INTO entity_mentions VALUES(2640,'WINDOWS 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2641,'Windows 2008 R2 OS',6,452,'others'); -INSERT INTO entity_mentions VALUES(2642,'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1, 64-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2643,'Windows Server 2008 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2644,'Windows 2003 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2645,'Windows 2008 R2 Enterprise6.1.7601',6,452,'others'); -INSERT INTO entity_mentions VALUES(2646,'Windows 2003 Standard 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2647,'WINDOWS SERVER 2003 APPLIANCE 5.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2648,'Windows Server 2003 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2649,'WS08R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2650,'Windows Storage Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2651,'WINDOWS SERVER 2003 STANDARD 5.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2652,'Windows 2008 Enterprise 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2653,'Microsoft Windows Server 2012 R2 for Microsoft Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2654,'Windows Server 2000 Advanced',6,452,'others'); -INSERT INTO entity_mentions VALUES(2655,'Microsoft Windows Server 2008 R2 Enterprise x64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2656,'WINDOWS 2008 R2 SERVER ENTERPRISE EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2657,'Windows Server 2008 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2658,'Windows Server 2003 Web Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2659,'WINDOWS SERVER 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2660,'Microsoft Windows 2012 R2 Server Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2661,'w2k8r2sp1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2662,'Microsoft Windows Server 2008 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2663,'Windows Server 2003 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2664,'Microsoft Windows Server 2008 R2 Standa',6,452,'others'); -INSERT INTO entity_mentions VALUES(2665,'Win 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2666,'Windows Server 2012 R29',6,452,'others'); -INSERT INTO entity_mentions VALUES(2667,'Microsoft - Windows server 2008 - Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2668,'Microsoft Windows Server 2003 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2669,'Microsoft(R) Windows(R) Server 2003, Enterprise Edition R2 Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2670,'Windows 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2671,'WINDOWS SERVER 2012 R2 STANDARD 6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2672,'Windows Server 2008 Enterprise R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2673,'Microsoft Windows Server 2008 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2674,'Windows 2008 R2 Standard 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2675,'Microsoft Windows Server 2008 R2 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2676,'Windows 2003 Enterprise 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2677,'Microsoft - Microsoft Windows Server 2012 for Microsoft Windows Server 2012 Standard 6.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2678,'Windows 2012 Storage R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2679,'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 4096 MB memory installed',6,452,'others'); -INSERT INTO entity_mentions VALUES(2680,'Microsoft - Windows Server 2012 R2 - 6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2681,'Windows Server 2012 R5',6,452,'others'); -INSERT INTO entity_mentions VALUES(2682,'Microsoft Windows Server 2012 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2683,'MICROSOFT WINDOWS NT 2003 ENT TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2684,'Windows 2012 Server R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2685,'Windows 2016 Standard10.0.14393',6,452,'others'); -INSERT INTO entity_mentions VALUES(2686,'Microsoft Microsoft Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2687,'Windows Server 2003 Ent 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2688,'MICROSOFT WINDOWS 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2689,'WINDOWS 2003 SERVER ENTERPRISE EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2690,'Windows 2012 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2691,'WINDOWS 2000 ADVANCED SERVER 5.0',6,452,'others'); -INSERT INTO entity_mentions VALUES(2692,'Microsoft Windows NT 4.0 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2693,'Windows Server2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2694,'Win Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2695,'Microsoft Windows Server 2008 Enterprise Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2696,'MICROSOFT WINDOWS STD 2012 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2697,'Windows 2003 Enterprise 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2698,'Windows 2008 Enterprise R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2699,'Windows 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2700,'Microsoft Microsoft Windows 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2701,'WINDOWS 2003 SERVER STANDARD EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2702,'windows server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2703,'Microsoft Windows Server 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2704,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2705,'Win Server 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2706,'Windows 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2707,'Microsoft Windows Server 2003 Standard (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2708,'Microsoft Windows Server 2008 R2 Standard. Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2709,'Windows 2000 Server Service Pack 4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2710,'Windows Server 2003 R2 Ent 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2711,'Windows Server 2012 r2 64bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2712,'Windows 2008 Enterprise 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2713,'Microsoft Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2714,'Windows Server 2012 R15',6,452,'others'); -INSERT INTO entity_mentions VALUES(2715,'Windows 2003 Standard 5.2.3790 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2716,'Windows 2012 Standard6.2.9200',6,452,'others'); -INSERT INTO entity_mentions VALUES(2717,'MICROSOFT WINDOWS 2016 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2718,'Microsoft Windows Server 2016 or later (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2719,'Windows Storage Server 2012 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2720,'Windows 2003 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2721,'Windows Server 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2722,'Microsoft Windows Server 2012 R2 Standardx64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2723,'Windows 2008 R2 Enterprise 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2724,'Windows 2003 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2725,'Windows 2012 R2 Standard6.3.9600',6,452,'others'); -INSERT INTO entity_mentions VALUES(2726,'Windows Server Threshold, 64-bit (Build 14393)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2727,'Windows Server 2012 R28',6,452,'others'); -INSERT INTO entity_mentions VALUES(2728,'Windows Server 2012 R13',6,452,'others'); -INSERT INTO entity_mentions VALUES(2729,'Microsoft Microsoft Windows Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2730,'Microsoft Windows Server 2008 R2 Standard Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2731,'Windows Server 2003 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2732,'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7600 [Build 7600]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2733,'Microsoft - Windows server 2003 - Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2734,'Windows 2008 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2735,'MicrosoftWindows Server 2008 R2 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2736,'windows6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2737,'Microsoft - Windows Server 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2738,'Windows 2016 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2739,'Windows Server 2003 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2740,'Windows Server NT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2741,'Windows Server 2012 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2742,'Microsoft Windows Server 2008 R2 Standard Version 6.1.7601 [Build 7601]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2743,'Windows Server 2012 R18',6,452,'others'); -INSERT INTO entity_mentions VALUES(2744,'Windows 2008 Enterprise6.0.6003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2745,'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 1, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2746,'Windows Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2747,'Windows Server 2019 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2748,'windows server 2008 R2 SP1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2749,'Win 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2750,'Win2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2751,'Win2012R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2752,'windows server threshold',6,452,'others'); -INSERT INTO entity_mentions VALUES(2753,'win2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2754,'Windows 2003 Standard x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2755,'Microsoft Windows Storage Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2756,'Windows Server 28',6,452,'others'); -INSERT INTO entity_mentions VALUES(2757,'Microsoft Windows Server 2008 Standard Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2758,'Windows Server 2008 R2 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2759,'Windows Server 2008 R2 with Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2760,'Windows Server 2012 R11',6,452,'others'); -INSERT INTO entity_mentions VALUES(2761,'Windows Server 2012 R10',6,452,'others'); -INSERT INTO entity_mentions VALUES(2762,'Windows Server 2012 R30',6,452,'others'); -INSERT INTO entity_mentions VALUES(2763,'WINDOWS 2016 STANDARD EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2764,'Windows Server 2012 R22',6,452,'others'); -INSERT INTO entity_mentions VALUES(2765,'Windows Server 2003 Standard (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2766,'WINDOWS SERVER 2008 R2 ENTERPRISE 6.1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2767,'Microsoft Windows Server 2008 R2 (64-bit) - Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2768,'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2769,'Windows Server 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2770,'(WingArc) SVF 9.1',2,240,'others'); -INSERT INTO entity_mentions VALUES(2771,'WingArc SVF',2,240,'others'); -INSERT INTO entity_mentions VALUES(2772,'WinMerge',2,241,'others'); -INSERT INTO entity_mentions VALUES(2773,'WinMerge.org - WinMerge 2.14',2,241,'others'); -INSERT INTO entity_mentions VALUES(2774,'RARLab - WinRAR 5.31',2,242,'others'); -INSERT INTO entity_mentions VALUES(2775,'WinRAR',2,242,'others'); -INSERT INTO entity_mentions VALUES(2776,'WinSCP.net - WinSCP 5.11',2,243,'others'); -INSERT INTO entity_mentions VALUES(2777,'WinSCP',2,243,'others'); -INSERT INTO entity_mentions VALUES(2778,'Wise',2,244,'others'); -INSERT INTO entity_mentions VALUES(2779,'Wise Package Studio',2,244,'others'); -INSERT INTO entity_mentions VALUES(2780,'Wordpress',2,245,'others'); -INSERT INTO entity_mentions VALUES(2781,'XAMPP',2,246,'others'); -INSERT INTO entity_mentions VALUES(2782,'Xbase++',9,374,'others'); -INSERT INTO entity_mentions VALUES(2783,'Xbase++ v1.9',9,374,'others'); -INSERT INTO entity_mentions VALUES(2784,'ZAP BI Application Test Server',2,247,'others'); -INSERT INTO entity_mentions VALUES(2785,'ZAP BI Application Stage Server',2,247,'others'); -INSERT INTO entity_mentions VALUES(2786,'ZAP BI',2,247,'others'); -INSERT INTO entity_mentions VALUES(2787,'ZAP BI Application Server',2,247,'others'); -INSERT INTO entity_mentions VALUES(2788,'ZMQ',2,248,'others'); -INSERT INTO entity_mentions VALUES(2789,'ZeroMQ',2,248,'others'); -INSERT INTO entity_mentions VALUES(2790,'Zerto Vritual Appliance',2,249,'others'); -INSERT INTO entity_mentions VALUES(2791,'Zerto Virtual Replication',2,249,'others'); -INSERT INTO entity_mentions VALUES(2792,'Fedora',6,453,'others'); -INSERT INTO entity_mentions VALUES(2793,'Amazon Linux',6,454,'others'); -INSERT INTO entity_mentions VALUES(2794,'Oracle RTD',8,289,'others'); -INSERT INTO entity_mentions VALUES(2795,'Oracle Real-Time Decisions (RTD)',8,289,'others'); -INSERT INTO entity_mentions VALUES(2796,'Oracle Real-Time Decisions',8,289,'others'); -INSERT INTO entity_mentions VALUES(2797,'PowerHA',2,250,'others'); -INSERT INTO entity_mentions VALUES(2798,'IBM High Availability Cluster Multiprocessing',2,250,'others'); -INSERT INTO entity_mentions VALUES(2799,'IBM PowerHA',2,250,'others'); -INSERT INTO entity_mentions VALUES(2800,'IBM PowerHA SystemMirror',2,250,'others'); -INSERT INTO entity_mentions VALUES(2801,'Tivoli Netcool/OMNIbus',2,251,'others'); -INSERT INTO entity_mentions VALUES(2802,'OMNIbus',2,251,'others'); -INSERT INTO entity_mentions VALUES(2803,'Tivoli Netcool',2,251,'others'); -INSERT INTO entity_mentions VALUES(2804,'IBM ILOG Views',2,252,'others'); -INSERT INTO entity_mentions VALUES(2805,'ILOG Views',2,252,'others'); -INSERT INTO entity_mentions VALUES(2806,'IBM ILOG CPLEX',2,253,'others'); -INSERT INTO entity_mentions VALUES(2807,'ILOG CPLEX',2,253,'others'); -INSERT INTO entity_mentions VALUES(2808,'IBM ILOG Jviews',2,254,'others'); -INSERT INTO entity_mentions VALUES(2809,'ILOG Jviews',2,254,'others'); -INSERT INTO entity_mentions VALUES(2810,'IBM ILOG Elixir',2,255,'others'); -INSERT INTO entity_mentions VALUES(2811,'ILOG Elixir',2,255,'others'); -INSERT INTO entity_mentions VALUES(2812,'ILOG Supply Chain Apps',2,256,'others'); -INSERT INTO entity_mentions VALUES(2813,'IBM ILOG Supply Chain Apps',2,256,'others'); -INSERT INTO entity_mentions VALUES(2814,'ILOG Solver',2,257,'others'); -INSERT INTO entity_mentions VALUES(2815,'Websphere ILOG JRules BRMS',2,601,'others'); -INSERT INTO entity_mentions VALUES(2816,'ILOG JRules BRMS',2,601,'others'); -INSERT INTO entity_mentions VALUES(2817,'Application Lifecycle Management',1,511,'others'); -INSERT INTO entity_mentions VALUES(2818,'ALM',1,511,'others'); -INSERT INTO entity_mentions VALUES(2819,'Application Lifecycle Management (ALM)',1,511,'others'); -INSERT INTO entity_mentions VALUES(2820,'Assembler Language',1,512,'others'); -INSERT INTO entity_mentions VALUES(2821,'Assembler',1,512,'others'); -INSERT INTO entity_mentions VALUES(2822,'BMS',1,513,'others'); -INSERT INTO entity_mentions VALUES(2823,'Batch Management Software (BMS)',1,513,'others'); -INSERT INTO entity_mentions VALUES(2824,'Batch Management Software',1,513,'others'); -INSERT INTO entity_mentions VALUES(2825,'Business Object Reports',1,514,'others'); -INSERT INTO entity_mentions VALUES(2826,'Common Gateway Interface (CGI)',1,515,'others'); -INSERT INTO entity_mentions VALUES(2827,'Common Gateway Interface',1,515,'others'); -INSERT INTO entity_mentions VALUES(2828,'CGI',1,515,'others'); -INSERT INTO entity_mentions VALUES(2829,'Compopent Object Model',1,516,'others'); -INSERT INTO entity_mentions VALUES(2830,'COM',1,516,'others'); -INSERT INTO entity_mentions VALUES(2831,'Compopent Object Model (COM)',1,516,'others'); -INSERT INTO entity_mentions VALUES(2832,'Common Object Request Broker Architecture (CORBA)',1,517,'others'); -INSERT INTO entity_mentions VALUES(2833,'Common Object Request Broker Architecture',1,517,'others'); -INSERT INTO entity_mentions VALUES(2834,'CORBA',1,517,'others'); -INSERT INTO entity_mentions VALUES(2835,'CORBA Interface Definition Language (CORBA IDL)',1,518,'others'); -INSERT INTO entity_mentions VALUES(2836,'CORBA Interface Definition Language',1,518,'others'); -INSERT INTO entity_mentions VALUES(2837,'CORBA IDL',1,518,'others'); -INSERT INTO entity_mentions VALUES(2838,'Data Control Language',1,519,'others'); -INSERT INTO entity_mentions VALUES(2839,'DCL',1,519,'others'); -INSERT INTO entity_mentions VALUES(2840,'Database',1,520,'others'); -INSERT INTO entity_mentions VALUES(2841,'DB',1,520,'others'); -INSERT INTO entity_mentions VALUES(2842,'DB (database)',1,520,'others'); -INSERT INTO entity_mentions VALUES(2843,'EDI',1,521,'others'); -INSERT INTO entity_mentions VALUES(2844,'Electronic Data Interchange',1,521,'others'); -INSERT INTO entity_mentions VALUES(2845,'Electronic Data Interchange (EDI)',1,521,'others'); -INSERT INTO entity_mentions VALUES(2846,'Web Server',1,522,'others'); -INSERT INTO entity_mentions VALUES(2847,'Java-based Document Object Model for XML',1,523,'others'); -INSERT INTO entity_mentions VALUES(2848,'Java-based Document Object Model for XML (JDOM)',1,523,'others'); -INSERT INTO entity_mentions VALUES(2849,'JDOM',1,523,'others'); -INSERT INTO entity_mentions VALUES(2850,'Lightweight Directory Access Protocol',1,524,'others'); -INSERT INTO entity_mentions VALUES(2851,'LDAP',1,524,'others'); -INSERT INTO entity_mentions VALUES(2852,'Lightweight Directory Access Protocol (LDAP)',1,524,'others'); -INSERT INTO entity_mentions VALUES(2853,'Open Database Connectivity (ODBC)',1,525,'others'); -INSERT INTO entity_mentions VALUES(2854,'Open Database Connectivity',1,525,'others'); -INSERT INTO entity_mentions VALUES(2855,'ODBC',1,525,'others'); -INSERT INTO entity_mentions VALUES(2856,'Order Management System (OMS)',1,526,'others'); -INSERT INTO entity_mentions VALUES(2857,'Order Management System',1,526,'others'); -INSERT INTO entity_mentions VALUES(2858,'OMS',1,526,'others'); -INSERT INTO entity_mentions VALUES(2859,'Oracle Web Services',1,527,'others'); -INSERT INTO entity_mentions VALUES(2860,'Reporting Services',5,473,'others'); -INSERT INTO entity_mentions VALUES(2861,'REST',1,529,'others'); -INSERT INTO entity_mentions VALUES(2862,'Representational State Transfer',1,529,'others'); -INSERT INTO entity_mentions VALUES(2863,'Representational State Transfer (REST)',1,529,'others'); -INSERT INTO entity_mentions VALUES(2864,'Service-Oriented Architecture',1,530,'others'); -INSERT INTO entity_mentions VALUES(2865,'Service-Oriented Architecture (SOA)',1,530,'others'); -INSERT INTO entity_mentions VALUES(2866,'SOA',1,530,'others'); -INSERT INTO entity_mentions VALUES(2867,'Simple Object Access Protocol (SOAP)',1,531,'others'); -INSERT INTO entity_mentions VALUES(2868,'SOAP',1,531,'others'); -INSERT INTO entity_mentions VALUES(2869,'Simple Object Access Protocol',1,531,'others'); -INSERT INTO entity_mentions VALUES(2870,'Sturctured Query Language',1,572,'others'); -INSERT INTO entity_mentions VALUES(2871,'SQL',1,572,'others'); -INSERT INTO entity_mentions VALUES(2872,'YAML',1,533,'others'); -INSERT INTO entity_mentions VALUES(2873,'MVC',1,574,'others'); -INSERT INTO entity_mentions VALUES(2874,'Application Server',1,535,'others'); -INSERT INTO entity_mentions VALUES(2875,'Cloud',1,536,'others'); -INSERT INTO entity_mentions VALUES(2876,'Competency and Quality Assurance Server',1,537,'others'); -INSERT INTO entity_mentions VALUES(2877,'Device Provisioning Engines',1,538,'others'); -INSERT INTO entity_mentions VALUES(2878,'Device Provisioning Engines (DPE)',1,538,'others'); -INSERT INTO entity_mentions VALUES(2879,'DPE',1,538,'others'); -INSERT INTO entity_mentions VALUES(2880,'E-business solution',1,539,'others'); -INSERT INTO entity_mentions VALUES(2881,'Ebusiness solution',1,539,'others'); -INSERT INTO entity_mentions VALUES(2882,'ESB',1,540,'others'); -INSERT INTO entity_mentions VALUES(2883,'Enterprise Service Bus',1,540,'others'); -INSERT INTO entity_mentions VALUES(2884,'Enterprise Service Bus(ESB)',1,540,'others'); -INSERT INTO entity_mentions VALUES(2885,'File Server',1,541,'others'); -INSERT INTO entity_mentions VALUES(2886,'General Ledger',1,542,'others'); -INSERT INTO entity_mentions VALUES(2887,'HTTP client',1,543,'others'); -INSERT INTO entity_mentions VALUES(2888,'HTTP Server',1,522,'others'); -INSERT INTO entity_mentions VALUES(2889,'Integrated Safe System of Work',1,545,'others'); -INSERT INTO entity_mentions VALUES(2890,'ISSOW',1,545,'others'); -INSERT INTO entity_mentions VALUES(2891,'Integrated Safe System of Work (ISSOW)',1,545,'others'); -INSERT INTO entity_mentions VALUES(2892,'Internet Exchange Point - Full Stack (ixp-ft)',1,546,'others'); -INSERT INTO entity_mentions VALUES(2893,'IMAP',1,547,'others'); -INSERT INTO entity_mentions VALUES(2894,'Internet Message Access Protocol',1,547,'others'); -INSERT INTO entity_mentions VALUES(2895,'Internet Message Access Protocol (IMAP)',1,547,'others'); -INSERT INTO entity_mentions VALUES(2896,'JSON',1,548,'others'); -INSERT INTO entity_mentions VALUES(2897,'KVS Application Server',1,549,'others'); -INSERT INTO entity_mentions VALUES(2898,'KVS File Server',1,550,'others'); -INSERT INTO entity_mentions VALUES(2899,'KVS Proxy Server',1,551,'others'); -INSERT INTO entity_mentions VALUES(2900,'mainframe',1,552,'others'); -INSERT INTO entity_mentions VALUES(2901,'Manufacturing Execution System',1,553,'others'); -INSERT INTO entity_mentions VALUES(2902,'Manufacturing Execution System (MES)',1,553,'others'); -INSERT INTO entity_mentions VALUES(2903,'MES',1,553,'others'); -INSERT INTO entity_mentions VALUES(2904,'Mobile',1,554,'others'); -INSERT INTO entity_mentions VALUES(2905,'NonSQL',1,555,'others'); -INSERT INTO entity_mentions VALUES(2906,'SaaS',1,556,'others'); -INSERT INTO entity_mentions VALUES(2907,'Storage Area Network',1,557,'others'); -INSERT INTO entity_mentions VALUES(2908,'Storage Area Network (SAN)',1,557,'others'); -INSERT INTO entity_mentions VALUES(2909,'SAN',1,557,'others'); -INSERT INTO entity_mentions VALUES(2910,'Supplier Registration System',1,558,'others'); -INSERT INTO entity_mentions VALUES(2911,'Supplier Registration Application Server',1,558,'others'); -INSERT INTO entity_mentions VALUES(2912,'Supplier Registration System Application Server',1,558,'others'); -INSERT INTO entity_mentions VALUES(2913,'Virtual Appliance',1,559,'others'); -INSERT INTO entity_mentions VALUES(2914,'Webtop',1,560,'others'); -INSERT INTO entity_mentions VALUES(2915,'Proxy Server',1,561,'others'); -INSERT INTO entity_mentions VALUES(2916,'Application/Utility',1,562,'others'); -INSERT INTO entity_mentions VALUES(2917,'Utility',1,562,'others'); -INSERT INTO entity_mentions VALUES(2918,'SQLite',2,258,'others'); -INSERT INTO entity_mentions VALUES(2919,'OpenBSD',6,590,'others'); -INSERT INTO entity_mentions VALUES(2920,'z/VSE',6,591,'others'); -INSERT INTO entity_mentions VALUES(2921,'Z/Virtual System Environment',6,591,'others'); -INSERT INTO entity_mentions VALUES(2922,'VSE',6,591,'others'); -INSERT INTO entity_mentions VALUES(2923,'DOS/VSE',6,591,'others'); -INSERT INTO entity_mentions VALUES(2924,'Microsoft Disk Operating System',6,593,'others'); -INSERT INTO entity_mentions VALUES(2925,'Microsoft DOS',6,593,'others'); -INSERT INTO entity_mentions VALUES(2926,'MS DOS',6,593,'others'); -INSERT INTO entity_mentions VALUES(2927,'MS-DOS',6,593,'others'); -INSERT INTO entity_mentions VALUES(2928,'VME/B',6,595,'others'); -INSERT INTO entity_mentions VALUES(2929,'VME',6,595,'others'); -INSERT INTO entity_mentions VALUES(2930,'Virtual Machine Environment',6,595,'others'); -INSERT INTO entity_mentions VALUES(2931,'VME 2900',6,595,'others'); -INSERT INTO entity_mentions VALUES(2932,'OpenVME',6,595,'others'); -INSERT INTO entity_mentions VALUES(2933,'DOS/360',6,597,'others'); -INSERT INTO entity_mentions VALUES(2934,'Disk Operating System/360',6,597,'others'); -INSERT INTO entity_mentions VALUES(2935,'TPF',6,598,'others'); -INSERT INTO entity_mentions VALUES(2936,'z/TPF',6,598,'others'); -INSERT INTO entity_mentions VALUES(2937,'Transaction Processing Facility',6,598,'others'); -INSERT INTO entity_mentions VALUES(2938,'z/VM',6,608,'others'); -INSERT INTO entity_mentions VALUES(2939,'Berkeley Software Distribution',6,579,'others'); -INSERT INTO entity_mentions VALUES(2940,'BSD',6,579,'others'); -INSERT INTO entity_mentions VALUES(2941,'Berkeley System Distribution',6,579,'others'); -INSERT INTO entity_mentions VALUES(2942,'BSD Unix',6,579,'others'); -INSERT INTO entity_mentions VALUES(2943,'Berkeley Unix',6,579,'others'); -INSERT INTO entity_mentions VALUES(2944,'Wildfly',7,493,'others'); -INSERT INTO entity_mentions VALUES(2946,'Job Entry Subsystem 3',2,1,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2947,'Job Entry Subsystem',2,1,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2948,'Job Entry Subsystem 2/3',2,1,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2949,'JES2',2,1,'also_known_as'); -INSERT INTO entity_mentions VALUES(2950,'JES3',2,1,'also_known_as'); -INSERT INTO entity_mentions VALUES(2952,'Acrobat forms',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2953,'Adobe Acrobat 3D',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2954,'Adobe Acrobat Professional',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2955,'Acrobat Professional',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2956,'Adobe Acrobat Pro',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2957,'Acrobat 8',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2958,'Adobe Acrobat Capture',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2960,'Acrobat file',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2961,'Acrobat reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2962,'Adobe Reader X',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2963,'Acrobat 3D',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2964,'Adobe Reader LE',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2965,'Adobe acrobat',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2966,'Acrobat Pro',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2967,'Acrobat 7',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2968,'Adobe Acrobat 9.5.5',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2969,'Adobe reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2970,'Adobe Acrobat Viewer',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2971,'Acrobat Exchange',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2972,'Acrobat document',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2973,'Acroread',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2974,'AdobeR Reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2975,'Adobe Acrobat Distiller',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2976,'Acrobat PDFMaker 10.0 for Word',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2977,'Adobe Acrobat X',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2978,'Adobe Acrobat Reader DC',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2979,'Adobe Reader',2,4,'also_known_as'); -INSERT INTO entity_mentions VALUES(2981,'Ansible software',2,5,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2982,'Activemq',2,6,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2983,'ActiveMQ',2,6,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2984,'HBase',2,7,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2987,'Kafka Streams',2,9,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2988,'Kafka (software)',2,9,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2989,'Apache kafka',2,9,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2991,'Solr',2,11,'also_known_as'); -INSERT INTO entity_mentions VALUES(2992,'Subversion (vcs)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2993,'Commit access',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2994,'Svn (vcs)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2995,'Subverson',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2996,'Subversion branch',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2997,'Svn (software)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2999,'Sub Versioning',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3000,'Apache subversion',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3001,'Svn software',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3002,'Subversion branching',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3003,'SVN branch',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3004,'Subversion (program)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3005,'Subversive branching',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3006,'Svn vcs',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3007,'Subversion (software)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3008,'Svn (Unix)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3009,'Subversion (Software)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3010,'Asterisk operator',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3011,'Asterisk character',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3012,'Asterisks',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3013,'Asterisk (punctuation)',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3014,'Asterick',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3015,'Asterisked form',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3016,'Splat (pronouns)',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3017,'Heavy asterisk',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3018,'Asteract',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3019,'Astrick',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3020,'Bluebeam Revu',2,17,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3021,'BDE (Borland)',2,20,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3022,'Borland BDE',2,20,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3023,'ODAPI',2,20,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3024,'Eclipse BIRT',2,21,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3025,'BIRT Reports',2,21,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3026,'BIRT Report',2,21,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3027,'Advantage:Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3028,'Cool:Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3029,'COOLGen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3030,'COOL:Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3031,'Advantage Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3032,'Coolgen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3033,'Information Engineering Facility',2,22,'also_known_as'); -INSERT INTO entity_mentions VALUES(3035,'CA Panvalet',2,24,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3037,'TELON',2,25,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3038,'Chef (tool)',2,27,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3039,'Chef-Solo',2,27,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3040,'Chef Community Repository',2,27,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3041,'Chef software',2,27,'also_known_as'); -INSERT INTO entity_mentions VALUES(3042,'Citrix XenApp',2,30,'also_known_as'); -INSERT INTO entity_mentions VALUES(3044,'Citrix WinFrame',2,30,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3045,'Winframe',2,30,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3046,'OP3Nvoice',2,33,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3047,'Clarify - Op3nvoice',2,33,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3048,'Laboratory information system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3049,'Laboratory Information Management System',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3050,'Laboratory informatics system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3051,'Lims',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3052,'Laboratory Information Management Systems',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3053,'Lab information system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3054,'Laboratory computer system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3055,'Laboratory Information Management Software',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3056,'Laboratory Information System',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3057,'Cognos Inc.',2,36,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3059,'Macromedia ColdFusion MX',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3060,'ColdFusion MX',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3062,'Adobe cold fusion',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3063,'ColdFusion Components',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3064,'Cold Fusion programming language',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3065,'Abobe coldfusion',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3066,'ColdFusion programming language',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3067,'ColdFusion',2,37,'also_known_as'); -INSERT INTO entity_mentions VALUES(3068,'Macromedia ColdFusion',2,37,'also_known_as'); -INSERT INTO entity_mentions VALUES(3069,'Network Data Mover',2,40,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3072,'Crystal reports',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3073,'SAP Crystal Reports',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3074,'Report application server',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3076,'Db2',2,43,'also_known_as'); -INSERT INTO entity_mentions VALUES(3078,'IBM DB2 Express-C',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3079,'DB2/2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3080,'DB2 Express',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3081,'SQLCA',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3082,'Ibm viper',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3083,'DATABASE 2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3084,'IBM Db2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3085,'Db2 for i',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3086,'DB2 DWE',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3087,'DB/2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3088,'IBM PureQuery',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3089,'DB2 Everyplace',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3090,'PureQuery',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3092,'Db/2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3094,'EMC Documentum',2,44,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3095,'Droopal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3096,'Deanspace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3097,'Drupal theming',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3098,'Droople',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3099,'CivicSpace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3100,'Druscal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3101,'Drupal Con',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3102,'DrupalCon',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3103,'Civic Space',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3104,'Drupla',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3105,'Durpal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3106,'DeanSpace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3107,'Druple',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3108,'Hack4Dean',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3109,'Civicspace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3110,'Acquia Drupal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3111,'Open Atrium',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3112,'Eclipse sdk',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3113,'Mylyn',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3114,'Java Eclipse',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3115,'Web Tools Platform',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3116,'Eclipse software',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3117,'Eclipse SDK',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3118,'Eclipse Kura',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3119,'Eclipse Classic',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3120,'Eclipse ganymede',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3121,'Eclipse Europa',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3122,'Eclipse (computing)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3123,'Eclipse (platform)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3124,'Eclipse IDE',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3125,'Java eclipse',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3126,'Yoxos OnDemand',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3127,'Eclipse java',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3128,'Yoxos',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3129,'Eclipse (IDE)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3130,'Eclipse (SDK)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3131,'Eclipse ide',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3132,'Eclipse (ide)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3133,'Eclipse Galileo',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3134,'Eclipse platform',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3135,'Eclipse RCP',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3136,'Java Emitter Templates',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3137,'Eclipse ADT',2,46,'also_known_as'); -INSERT INTO entity_mentions VALUES(3140,'Filemaker',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3141,'FileMaker II',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3142,'Filemaker Pro',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3143,'FileMaker Server',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3144,'FilemakerPro',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3145,'Google chrome 5',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3146,'Google Chrome Beta',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3147,'Google chrome',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3148,'Google Chrome 12',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3149,'Chrome software',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3150,'Google Chrome 14',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3151,'Chrome (browser)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3152,'Googlechrome',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3153,'Chrome Canary',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3154,'Google Chrome extension',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3155,'Google Chrome browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3156,'Google Chrome for IOS',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3157,'Chrome extension',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3158,'Extension (Google Chrome)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3159,'Incognito mode',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3160,'Chrome browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3161,'Google Chrome for Android',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3162,'Google Chrome Extensions Gallery',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3163,'Google Chrome 4',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3164,'GChrome',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3165,'Google Browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3166,'Chrome google',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3167,'Chrome (software)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3168,'Chrome (Google)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3169,'Chrome web browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3170,'Google Chrome 13',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3171,'Google Chrome 11',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3172,'Google Chrome Canary',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3173,'Chrome Extensions',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3174,'Chromium (engine)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3175,'GBrowser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3176,'Chrome (web browser)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3177,'Google Chrome for iOS',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3178,'Chrome for Android',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3180,'Pivotal Greenplum Database',2,56,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3181,'Greenplum database',2,56,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3182,'Hadoop distributed file system',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3183,'Hadoop Distributed Filesystem',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3184,'Hadoop YARN',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3185,'HDFS',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3186,'Amazon Elastic MapReduce',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3187,'Hadoop Distributed File System',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3188,'YARN',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3190,'NorCroft',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3191,'Norcroft compiler suite',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3192,'Norcroft C',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3193,'Norcroft compiler',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3194,'Norcroft',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3195,'Tivoli Endpoint Manager',2,62,'also_known_as'); -INSERT INTO entity_mentions VALUES(3196,'IBM Endpoint Manager',2,62,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3197,'Datastage',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3198,'IBM InfoSphere',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3199,'DataStage',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3200,'IBM WebSphere DataStage',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3202,'IBM WebSphere Message Broker',2,68,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3204,'IBM MobileFirst',2,72,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3205,'IBM WebSphere ILOG JRules',2,73,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3206,'Spectrum Scale',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3208,'General Parallel File System',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3209,'IBM General Parallel File System',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3210,'Vesta File System',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3211,'Adstar Distributed Storage Manager',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3213,'ADSM',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3214,'ADSTAR Distributed Storage Manager',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3215,'IBM Tivoli Storage Manager FastBack',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3216,'Distributed Storage Manager Client',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3217,'WebSphere Adapters',2,80,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3218,'MQ Series',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3220,'IBM Message Queue Interface',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3221,'Mqseries',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3222,'IBM WebSphere MQ',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3224,'WebSphere MQ',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3225,'MQSeries',2,81,'also_known_as'); -INSERT INTO entity_mentions VALUES(3226,'Hierarchical sequential access method',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3227,'IBM IMS',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3228,'Information Management System',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3229,'IMS DC',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3230,'IMS/DC',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3231,'HSAM (computing)',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3232,'Information management system',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3233,'Hierarchical Sequential Access Method',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3234,'IMS/DB',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3235,'IMS/TM',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3236,'IMS system',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3237,'WiZ',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3238,'Zip (software)',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3239,'Info-Zip',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3240,'InfoZip',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3242,'Berkeley Ingres QUEL',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3243,'IngresCorporation',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3244,'Ingres II',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3245,'Ingres Database',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3246,'University Ingres',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3247,'OpenIngres',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3248,'CA-Ingres',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3249,'Ingres database',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3250,'INGRES',2,88,'also_known_as'); -INSERT INTO entity_mentions VALUES(3252,'Lotus domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3253,'Notes Release 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3254,'Lotus Notes 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3255,'Lotus Notes Mail',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3256,'Lotus Notes 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3257,'Lotus Notes Release 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3258,'Lotus notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3259,'Eproductivity',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3260,'Notes 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3261,'Lodus notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3262,'Domino XML',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3263,'Lodus nodes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3264,'Notes Release 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3265,'Lodus Nodes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3266,'IBM Lotus Notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3267,'IBM Lotus Domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3268,'Notes Storage Facility',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3270,'Dominoblog',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3271,'Lodus Notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3272,'Lotus Notes Release 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3273,'Notes 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3274,'IBM iNotes Webmail Redirect',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3275,'Domino (software)',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3276,'HLC Domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3277,'HCL Notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3278,'EProductivity',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3279,'Notes Storage Format',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3281,'IBM Notes',2,93,'also_known_as'); -INSERT INTO entity_mentions VALUES(3282,'MaaS 360 (Software)',2,94,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3283,'Malwarebytes'' AntiMalware',2,95,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3284,'Malwarebytes'' Anti-Malware',2,95,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3285,'Malware Bytes',2,95,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3287,'Mark Logic',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3288,'MarkMail',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3289,'MarkLogic Corporation',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3290,'Mark logic',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3292,'Memory Cache Daemon',2,98,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3293,'Microsoft Access Development',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3294,'Ms access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3295,'Ms Access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3296,'Microsoft Access 2002',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3297,'Access 2002',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3298,'MS access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3299,'Access 97 SR2',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3300,'Microsoft Access 2007',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3301,'Access 2',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3302,'Accdb',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3304,'MSAccess',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3305,'Office Access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3306,'Microsoft Acces',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3307,'Access 97',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3308,'MSACCESS',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3309,'Microsoft access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3310,'Microsoft Office Access',2,99,'also_known_as'); -INSERT INTO entity_mentions VALUES(3311,'Biztalk',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3312,'BizTalk',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3313,'BizTalk Server',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3314,'Microsoft Biztalk Server',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3315,'Axapta',2,101,'also_known_as'); -INSERT INTO entity_mentions VALUES(3316,'En''tegrate',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3317,'X++',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3318,'En''tegrate Software',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3319,'Dynamics AX',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3320,'MorphX',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3321,'System Management Server',2,102,'also_known_as'); -INSERT INTO entity_mentions VALUES(3323,'System center configuration manager',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3324,'System Centre Configuration Manager',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3325,'Systems Management Server',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3326,'System Center Configuration Manager',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3327,'AssetMetrix',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3328,'SCCM 2007',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3329,'MSSMS',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3330,'Microsoft Systems Management Server',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3331,'MS excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3332,'Excel (Microsoft)',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3333,'Excel macro',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3334,'Microsoft XL',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3335,'Excel function',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3337,'Microsoft excel file formats',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3338,'Microsoft excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3339,'Microsoft(r) Excel(r)',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3340,'XLW',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3341,'Ms Excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3342,'XLS files',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3343,'XLS file',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3344,'Microsoft Excel XP',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3345,'Ms excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3346,'Excel Viewer',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3347,'XLS FILE',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3348,'Microsoft Excel:mac',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3349,'Excel spreadsheet',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3350,'Microsoft Excel 95',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3351,'Microsoft Excel 2002',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3352,'Microsoft Excel 2003',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3353,'Excel 2007',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3354,'Microsoft Excel Viewer',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3355,'Microsoft Excel file format',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3356,'Excel Web App',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3357,'EXCEL',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3358,'Xlw',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3359,'Microsoft Excel 2004',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3360,'MICROSOFT EXCEL',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3361,'Excel table',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3362,'Excel 2003',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3363,'Excel VBA',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3364,'Microsoft Office Excel',2,103,'also_known_as'); -INSERT INTO entity_mentions VALUES(3367,'Office Excel',2,103,'also_known_as'); -INSERT INTO entity_mentions VALUES(3368,'MS Exchange Server',2,104,'also_known_as'); -INSERT INTO entity_mentions VALUES(3369,'Exchange email',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3370,'Exchange 2007',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3371,'Exchange Online',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3372,'Microsoft Exchange Client',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3373,'Exchange Server',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3374,'Cluster continuos replication',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3375,'Exchange 2010',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3376,'Microsoft Exchange 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3377,'Microsoft Exchange Server 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3378,'Microsoft Exchange server',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3379,'LinkAge Software',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3380,'Exchange Server 2007',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3381,'Exchange Server 2003',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3382,'Exchange 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3383,'MS Exchange 2010 SP2',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3384,'Exchange Server 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3385,'Cluster continuous replication',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3386,'Identity Lifecycle Manager',2,105,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3387,'Microsoft Office Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3388,'Microsoft infoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3389,'Microsoft Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3390,'Microsoft infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3391,'Infopath 2007',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3392,'Office Forms Server',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3393,'MS InfoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3394,'Infopath Form Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3395,'MS infoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3396,'Ms Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3397,'Infopath Forms Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3399,'Microsoft InfoPath Filler',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3400,'InfoPath Forms Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3401,'Forms Server',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3402,'Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3403,'Ms infoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3404,'InfoPath Form Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3405,'Infopass',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3406,'Ms infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3407,'Microsoft Office Forms Server',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3408,'Office InfoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3409,'MS infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3410,'InfoPath forms services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3411,'Microsoft Office InfoPath 2007',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3412,'Infopath forms services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3413,'Microsoft InfoPath Designer',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3414,'Microsoft Office InfoPath',2,106,'also_known_as'); -INSERT INTO entity_mentions VALUES(3415,'XDocs',2,106,'also_known_as'); -INSERT INTO entity_mentions VALUES(3417,'MSIE',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3418,'Windows Internet Explorer',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3419,'MS IE',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3420,'Internetexplorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3421,'Microsoft IE',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3422,'Stopie',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3423,'Internut Exploder',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3424,'WinInet',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3425,'Internex',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3426,'Wininet',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3427,'Internet Exploder',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3428,'Iexplorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3429,'Features of internet explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3430,'WinINET',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3431,'MicroSoft Internet Explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3432,'Innerhtml',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3433,'Iexplore',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3434,'MSIE (web browser)',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3435,'Internet explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3436,'Internet exploiter',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3437,'Internet Exploiter',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3438,'MS Internet Explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3439,'InternetExplorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3440,'M.S.I.E.',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3441,'IE browser',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3442,'InnerHTML',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3443,'StopIE',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3444,'Microsoft Proxy Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3445,'Threat Management Gateway',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3446,'Internet Security and Acceleratoin Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3447,'Internet Security and Acceleration Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3449,'Internet Security and Acceleration',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3450,'MS Proxy Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3451,'ISA server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3452,'Forefront Threat Management Gateway',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3454,'Forefront TMG',2,108,'also_known_as'); -INSERT INTO entity_mentions VALUES(3455,'Microsoft Internet Security and Acceleration Server',2,108,'also_known_as'); -INSERT INTO entity_mentions VALUES(3456,'MSMQ',2,109,'also_known_as'); -INSERT INTO entity_mentions VALUES(3457,'Microsoft Message Queue Server',2,109,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3458,'Microsoft Message Queue',2,109,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3459,'Visual Studio .NET',2,111,'also_known_as'); -INSERT INTO entity_mentions VALUES(3460,'Microsoft Visual Studio .NET',2,111,'also_known_as'); -INSERT INTO entity_mentions VALUES(3462,'Vs2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3463,'Visual Studio 97',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3464,'Microsoft Visual Studio 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3465,'Data dude',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3466,'Visual Studio Shell',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3467,'Microsoft Development Environment',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3468,'Visual Studio .NET 2003',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3469,'VS2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3470,'LightSwitch',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3471,'Visual Studio Team Services',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3472,'Visual Studio 2017',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3473,'Microsoft visual studio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3474,'Microsoft Visual Studio 2015',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3475,'Visual Studio Online',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3476,'Visual Studio 11',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3477,'DevBiz Business Solutions',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3478,'Visual Studio .NET 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3479,'Visual Studio .NET 2002',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3480,'Visual Studio Test Professional',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3481,'VS2017',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3482,'Visual Studio 2019',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3483,'VS2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3484,'Microsoft Visual Studio Community',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3485,'Visual Studio.NET 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3486,'Microsoft Visual Studio debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3487,'MSDEV',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3488,'Visual Studio 2013',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3489,'Visual Studio Application Lifecycle Management',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3490,'Visual Studio Team Suite',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3491,'Visual studio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3492,'VS6',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3493,'Microsoft Test professional',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3494,'Visual Studio 2015',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3495,'Azure DevOps Services',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3496,'Visual Studio 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3497,'Microsoft visual studio 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3498,'VS2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3499,'Visual Studio.NET',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3500,'VS 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3501,'DXCore',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3502,'Visual Studio debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3503,'Visual Studio Team Test',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3504,'MS Visual Studio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3505,'RefactorPro',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3506,'Visual Studio Debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3507,'VisualStudio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3508,'Visual Studio LightSwitch',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3509,'Microsoft Orcas',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3510,'Visual Studio ALM',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3511,'Microsoft Visual Studio 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3512,'Visual Studio 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3513,'CodeView and the Visual Studio Debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3514,'Visual Studio Orcas',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3515,'Visual Studio 2022',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3516,'Microsoft Test Professional',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3517,'Visual Studio 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3518,'Microsoft Visual Studio Debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3519,'Vs.net',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3520,'VS05',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3521,'Vs 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3522,'Visual Studio 6.0',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3523,'Visual Studio Community',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3524,'VISUAL STUDIO 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3525,'DevBiz',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3527,'Visual Studio 2012',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3528,'VS 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3529,'Visual Studio Ultimate 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3532,'Mongo db',2,116,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3533,'Mongodb',2,116,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3534,'Firefox (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3535,'Firebird browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3536,'FireBird (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3537,'Mozila Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3538,'Firefox minefield',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3539,'Minefield (trunk build)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3540,'FireFox (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3541,'Firebird (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3542,'Mozilla Phoenix',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3543,'Mozilla/browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3544,'Firefox (software)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3545,'Mozilla firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3546,'M/b',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3547,'Phoenix web browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3548,'Firefox Aurora',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3549,'Mozilla Firerfox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3550,'Firebird (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3551,'Mozilla''s Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3552,'MineField Browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3553,'Firefox (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3554,'Mozilla phoenix',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3555,'SpreadFirefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3556,'FireBird (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3557,'Mozzila Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3558,'FireFox (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3559,'Mozilla Minefield',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3560,'Firefox esr',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3561,'Mozilla FireFox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3562,'Mozilla Firefox''s',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3563,'Mozilla firebird',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3564,'Mozff',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3565,'Mozilla firefox esr',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3566,'Firebird Web Browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3567,'Frefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3568,'Phoenix (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3569,'Spread Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3570,'Forefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3571,'FireFox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3572,'Mozillafirefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3573,'Mozilla Fire Fox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3574,'Firefox Roadmap',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3575,'Firefox roadmap',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3576,'Firebird web browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3577,'Mozilla Firefox (software)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3578,'Mozilla Firefox ESR',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3579,'SpreadFireFox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3580,'Moz firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3581,'Firefox Browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3582,'Firefo',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3583,'Fire Fox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3584,'Mozilla FireBird',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3585,'Mozilla FX',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3586,'Firefox ESR',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3587,'Mozilla ff',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3588,'Phoenix (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3589,'Fire fox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3590,'Firefox web browser',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3591,'Firefox browser',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3592,'Mozilla Firebird',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3594,'MS-Office 365',2,119,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3598,'MS-SQL',2,581,'also_known_as'); -INSERT INTO entity_mentions VALUES(3600,'Sql Server 2000',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3601,'SQL Server 2017',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3602,'Sqlcmd',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3603,'SQL Server 2014 ISO',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3607,'Microsoft SQL Server 2008 R2',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3608,'Microsoft SQL server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3610,'SQL Server 2014 CAB',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3611,'SQL Server 2008 R2',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3612,'Pubs (database)',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3614,'Microsoft SQL',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3616,'Microsoft Sql Server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3617,'SQL 6.5',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3618,'Ms sql server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3620,'Microsoft sql server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3621,'Mssql',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3623,'SQL 7.0',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3624,'SQL Server 2019',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3625,'SQL Server 2005 Compact Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3626,'SQL Server Compact 3.5',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3627,'Microsoft SQL Server Compact Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3628,'SQL Server Compact Edition Database File',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3629,'Sql mobile',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3630,'SQL Server Compact Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3631,'SQL Mobile',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3632,'SQLCE',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3633,'SQL Server Mobile',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3634,'SQLce',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3635,'SQL Server Compact 2005 Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3636,'SQL Server Mobile Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3637,'SQL Server CE',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3638,'Microsoft SQL Server Mobile Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3639,'Microsoft SQL Server Compact',2,121,'also_known_as'); -INSERT INTO entity_mentions VALUES(3640,'SQL CE',2,121,'also_known_as'); -INSERT INTO entity_mentions VALUES(3641,'My sql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3642,'MySQL server',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3643,'Mysql 5.0',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3644,'MySQL Fabric',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3645,'Mysqldump',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3646,'MySql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3648,'MySQL HA',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3649,'SunSQL',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3650,'Libmysqld',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3651,'Mysql-server',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3652,'Mysql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3653,'Mqsql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3654,'My Structured Query Language',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3655,'My SQL',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3656,'MySql 5',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3657,'Mysql 5.1',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3658,'Neo Technology',2,123,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3660,'Nix language',2,125,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3661,'Nix Package Manager',2,125,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3662,'Openldap',2,126,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3664,'PrivateVPN',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3665,'Openvon',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3666,'Openvpn',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3667,'Open VPN',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3668,'ADF Faces',2,130,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3670,'Oracle HTML DB',2,131,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3671,'Html db',2,131,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3672,'HTML DB',2,131,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3674,'Oracle XML Publisher',2,132,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3676,'Oracle11i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3677,'Oracle8i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3678,'Oracle (software)',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3679,'Oracle (database)',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3680,'Ora92',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3681,'Oracle 11i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3682,'Oracle express',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3683,'Oracle XE',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3684,'Oracle (DBMS)',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3685,'Oracle database',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3686,'Instantclient',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3687,'Oracle db',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3689,'Oracle R Enterprise',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3690,'Oracle9i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3691,'Oracle11g',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3692,'Oracle DBMS',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3693,'Oracle8',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3694,'Oracle RDBMS',2,134,'also_known_as'); -INSERT INTO entity_mentions VALUES(3695,'Oracle Designer 2000',2,135,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3698,'Oracle Hyperion|Hyperion Planning',2,139,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3699,'Oracle Net',2,140,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3700,'Real application clusters',2,141,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3702,'Oracle soa',2,145,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3705,'Timesten',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3706,'Smallbase',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3707,'TimesTen In-Memory Database',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3709,'Orbix (Software)',2,149,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3710,'Pentaho Data Integration',2,150,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3711,'Ramsetcube',2,150,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3712,'PeopleSoft Enterprise',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3713,'People Soft',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3714,'PeopleSoft',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3715,'PeopleSoft EnterpriseOne',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3716,'PeopleSoft HRMS',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3717,'Peoplesoft',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3718,'Pervasive psql',2,153,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3719,'Actian Zen',2,153,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3720,'Pervasive sql',2,153,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3721,'PKZip',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3722,'PKSFX',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3723,'PKUNZIP',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3724,'SecureZIP',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3725,'Pkunzip',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3726,'Pkzip',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3727,'Metis (modelling)',2,156,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3728,'Metis (software)',2,156,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3729,'PgSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3730,'PostgreSQL Data Base Management System',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3731,'Postsql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3732,'Postgres95',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3733,'POSTGRES',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3734,'Autovacuum',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3735,'PGSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3736,'PostSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3737,'PostGRES',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3738,'POSTGRES95',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3739,'Psql (PostgreSQL)',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3740,'Pgsql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3741,'PortugueseSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3742,'PostegreSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3743,'PostGRE',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3744,'PostgresSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3745,'Postgresql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3746,'PostGres',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3747,'PostgreSql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3748,'Postgre sql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3750,'Postgre',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3751,'Postgres',2,157,'also_known_as'); -INSERT INTO entity_mentions VALUES(3753,'Sybase PowerBuilder',2,158,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3755,'Oracle Primavera',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3756,'Primavera p6',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3757,'XER (file format)',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3758,'Primavera P3',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3761,'Polytron Version Control System',2,163,'also_known_as'); -INSERT INTO entity_mentions VALUES(3763,'Rabbit MQ',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3764,'Rabbitmq',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3765,'RabbitMq',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3766,'Rabbit mq',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3767,'MultiVersion File System',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3768,'IBM Rational ClearCase',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3769,'Clear case',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3770,'IBM Rational MultiVersion File System',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3771,'Clearcase',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3772,'Rational MultiVersion File System',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3773,'Ibm clear case',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3774,'ClearCase',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3775,'Rational Business Developer Extension',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3776,'Rational Service Tester for SOA Quality',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3777,'Rational Business Developer',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3779,'IBM Rational SQABasic',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3780,'SQABasic',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3781,'IBM Rational Business Developer Extension',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3782,'Rationale Software',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3783,'Rational Machines',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3784,'Rational Application Developer',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3785,'Rational Team Concert',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3786,'Rational Engineering Lifecycle Manager',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3787,'IBM Jazz',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3788,'IBM Rational Team Concert',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3789,'Rational Rose RealTime',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3790,'IBM Rational Business Developer',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3791,'IBM Rational Software',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3792,'Rational Software Corporation',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3793,'Rational Functional Tester',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3794,'Rational Tau',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3795,'Rational robot',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3796,'IBM Rational',2,167,'also_known_as'); -INSERT INTO entity_mentions VALUES(3797,'Redis (data store)',2,168,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3798,'Redis (dbms)',2,168,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3799,'Redis database format',2,168,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3802,'Rumba criolla',2,172,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3803,'Mysap',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3804,'SAP enterprise software',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3805,'SAP Transport management system',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3806,'Profitability Analysis (SAP)',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3807,'MySAP',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3808,'SAP ERP Financials',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3809,'MySAP ERP',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3810,'SAP Basis',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3811,'SAP HCM PA',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3812,'SAP ECC',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3813,'MySAP ERP Operations',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3814,'SAP ERP Human Capital Management',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3815,'MySAP ERP Financials',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3816,'SAP Fiori',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3817,'SAP ERP Operations',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3818,'SAP ERP Corporate Services',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3819,'High-performance Analytical Application',2,175,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3820,'SAP DB',2,176,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3821,'SAPDB',2,176,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3822,'SapDB',2,176,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3823,'SAP Netweaver Business Intelligence',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3824,'SAP NetWeaver Business Intelligence',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3825,'SAP BW',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3826,'SAP Business Information Warehouse',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3827,'Sybase ASA',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3828,'ASA (SQL Anywhere)',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3829,'PowerSoft SQL',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3830,'SAP Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3831,'Sybase asa',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3832,'PowerSoft Watcom SQL',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3833,'Sybase Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3834,'Sql anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3835,'Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3837,'PowerSoft SQL Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3838,'Sybase SQL Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3839,'SAP Sybase Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3840,'SAP Sybase ASA',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3841,'Watcom SQL',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3842,'Sybase Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3843,'SAP ASA',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3844,'Web Dynpro ABAP',2,179,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3845,'Webdynpro',2,179,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3846,'Dynpro',2,179,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3847,'Sentry Risk Table',2,180,'also_known_as'); -INSERT INTO entity_mentions VALUES(3848,'Windows Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3849,'Microsoft SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3850,'MOSS 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3851,'Microsoft Office SharePoint Server 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3852,'SharePoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3853,'Windows sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3854,'Microsoft SharePoint 2010',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3855,'SharePoint 2010',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3856,'Microsoft SharePoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3857,'Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3858,'Share point server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3859,'SharePoint Foundation',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3860,'SharePoint services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3861,'SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3862,'Sharepoint portal server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3863,'Microsoft sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3864,'Windows SharePoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3865,'Microsoft SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3866,'Office SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3867,'Windows SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3868,'MS Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3869,'Windows SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3871,'Windows SharePoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3872,'Share Point',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3873,'Microsoft Office Sharepoint Server 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3874,'Microsoft Windows SharePoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3875,'Microsoft Office SharePoint Portal Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3876,'Microsoft Sharepoint Foundation',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3877,'SharePoint Portal Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3878,'Sharepoint services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3879,'Sharepoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3881,'Microsoft Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3882,'Windows Sharepoint Services 3',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3883,'Sharepoint server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3884,'MS SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3885,'Microsoft Office SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3886,'SharePointCOE',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3887,'Share point',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3888,'Sharepoint collaboration',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3889,'Microsoft SharePoint Foundation',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3890,'SharePoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3891,'SharePoint Resources',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3892,'Windows Sharepoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3893,'Microsoft Office SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3894,'Snaglt',2,184,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3896,'IBM Mobile',2,185,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3897,'SonarLint',2,186,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3898,'Sonarqube',2,186,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3899,'Sonar (software quality)',2,186,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3902,'SAP Sybase DB',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3903,'SAP Sybase SQL Server',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3904,'SAP Sybase ASE',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3905,'Sybase Adaptive Server Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3906,'SAP Adaptive Server Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3907,'SAP Sybase Adaptive Server Enterprise (ASE)',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3908,'Sybase (database)',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3909,'SAP SQL Server',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3910,'SAP Sybase',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3911,'SAP Sybase Adaptive Server Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3912,'Sybase database',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3913,'ASE (SQL Server)',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3914,'Sybase Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3915,'Sybase ASE',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3916,'SAP ASE',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3917,'Sybase DB',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3918,'Syncsort',2,191,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3919,'Teradata Geospatial',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3920,'Teradata FastLoad',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3921,'Teradata Warehouse Miner',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3922,'Fastexport',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3923,'BTEQ',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3924,'Teradata Parallel Transporter',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3925,'FastExport',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3926,'ADAM Software',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3927,'Tibco Rendezvous',2,219,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3928,'Tivoli Access Manager',2,220,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3929,'Tortoise CVS',2,221,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3930,'TSVN',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3931,'Tortoisesvn',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3932,'Tortoise svn',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3933,'Tortoise SVN',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3934,'UNIFACE',2,225,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3935,'VisiBroker',2,228,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3936,'Vcenter',2,231,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3937,'IBM WebSphere Commerce',2,234,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3940,'Index Server',2,238,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3942,'Windows indexing service',2,238,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3943,'WinMerge 2011',2,241,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3944,'Winmerge',2,241,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3945,'Winrar',2,242,'also_known_as'); -INSERT INTO entity_mentions VALUES(3946,'WinRar',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3947,'RAR5',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3948,'Rarlab WinRAR',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3949,'Win RAR',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3950,'WINSCP',2,243,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3951,'Winscp',2,243,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3952,'Word press',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3953,'BbPress',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3954,'Cafelog',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3955,'WordPress MU',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3956,'B2\cafelog',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3958,'B2/cafelog',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3959,'WordPress 2.1.2',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3960,'WordCamp',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3961,'WordPress Foundation',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3962,'Word Press',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3963,'The WordPress Foundation',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3964,'Wordpress foundation',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3965,'B2 (software)',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3966,'Xampp',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3967,'XAMPP Lite',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3968,'Xamp',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3969,'Xampp Lite',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3970,'Apache Friends',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3971,'0MQ',2,248,'also_known_as'); -INSERT INTO entity_mentions VALUES(3973,'Nanomsg',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3974,'Zero MQ',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3975,'ØMQ',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3976,'0mq',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3977,'Zmq',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3978,'Zeromq',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3979,'OMQ',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3981,'HACMP',2,250,'also_known_as'); -INSERT INTO entity_mentions VALUES(3982,'High Availability Cluster Multiprocessing',2,250,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3985,'OPL Development Studio',2,253,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3986,'LogicTools',2,257,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3987,'Sqlite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3988,'SQL Lite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3989,'Sqlite3',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3990,'SqlLite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3991,'SQLLite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3992,'SQLite4',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3993,'SQLlite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3994,'SQLite3',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3995,'SQlite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3996,'SQLLite DB',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3997,'SQLite Manager',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3998,'Sqllite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3999,'SQLITE',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4000,'Apache webserver',8,259,'also_known_as'); -INSERT INTO entity_mentions VALUES(4001,'Apache Server',8,259,'also_known_as'); -INSERT INTO entity_mentions VALUES(4002,'Apache web server',8,259,'also_known_as'); -INSERT INTO entity_mentions VALUES(4003,'Apache WWW Server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4004,'Apache (server)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4005,'Apache (web server)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4006,'Apache httpd',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4007,'Apache server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4008,'Apache2',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4009,'Apache2ctl',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4012,'Apache Web server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4013,'Apache HTTPd',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4014,'Apache http',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4015,'Apache HTTPD',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4016,'Apachectl',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4017,'Apache http server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4018,'Apache HTTP server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4019,'Apache (HTTP server)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4020,'Apache 1.3',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4021,'Apache (webserver)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4022,'Apache 2.2',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4023,'Apache Webserver',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4024,'Apache (computing)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4025,'Tomcat Catalina',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4026,'Apache tomcat',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4027,'Tomcat Jasper',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4028,'Tomcat6',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4030,'Tomcat5',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4031,'Catalina (Tomcat)',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4032,'Tomcat Coyote',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4033,'Tomcat (software)',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4034,'Jakarta Tomcat',8,260,'also_known_as'); -INSERT INTO entity_mentions VALUES(4036,'BEA-WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4037,'Bea Weblogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4038,'Oracle Weblogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4040,'BEA AS',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4041,'BEA WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4043,'BEA Application Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4045,'Oracle WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4047,'Oracle Weblogic Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4048,'WebLogic Application Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4049,'Sun ONE Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4050,'Oracle GlassFish Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4051,'SJSAS',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4052,'Java System Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4053,'Glassfish Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4054,'Sun GlassFish Enterprise Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4055,'Glassfish server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4056,'Sun Java Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4057,'Sun Java System Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4058,'IPlanet Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4059,'Haproxy',8,264,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4061,'Microsoft IIS',8,609,'also_known_as'); -INSERT INTO entity_mentions VALUES(4063,'Internet Information Server',8,609,'also_known_as'); -INSERT INTO entity_mentions VALUES(4064,'IIS 7',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4065,'Microsoft Internet Information Server',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4066,'IIS Media Services',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4067,'Microsoft-IIS',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4068,'MS IIS',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4069,'IIS7',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4070,'IIS Media Pack',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4071,'Microsoft-iis',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4072,'Microsoft IIS server',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4074,'IIS server',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4075,'Red Hat Software',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4076,'RHTS',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4077,'RHAT (NASDAQ)',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4078,'Red Hat Czech',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4079,'PNAELV',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4080,'JBoss (company)',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4081,'RHAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4082,'Redhat.com',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4083,'Red Hat Test Suite',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4084,'Ntsysv',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4085,'FUSE Message Broker',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4086,'JBOSS',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4087,'RESTEasy',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4088,'Red Hat (company)',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4089,'REDHAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4090,'Red.ht',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4091,'CloudForms',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4092,'Red Hat High',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4093,'Red Hat Enterprise MRG',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4095,'RED HAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4096,'JBoss Group',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4097,'Red hat',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4098,'Red Hat',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4099,'Red Hat MGR',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4101,'Red Hat MRG',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4102,'RESTeasy',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4103,'Red Hat Inc',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4104,'Red Hat India',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4105,'Red Hat Inc.',8,268,'also_known_as'); -INSERT INTO entity_mentions VALUES(4106,'RedHat',8,268,'also_known_as'); -INSERT INTO entity_mentions VALUES(4111,'Fuse Message Broker',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4119,'NASDAQ:RHAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4142,'IBM Domino',8,270,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4146,'Nginx plus',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4147,'NGINX',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4148,'Engine X',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4149,'NGINX Unit',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4150,'Oracle OC4J',8,610,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4152,'Oracle Application Server 10g',8,610,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4153,'Oracle Imaging and Process Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4154,'Oracle Content Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4155,'WebCenter',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4156,'Oracle Universal Content Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4157,'Universal Content Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4158,'Oracle WebCenter Imaging',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4159,'Resin Server',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4160,'Resin Application Server',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4161,'Caucho Resin',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4162,'Quercus (software)',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4163,'NetWeawer',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4164,'SAP Netweaver solution',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4165,'Netweaver',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4166,'SAP Central Process Scheduling',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4168,'Apache Spark',8,280,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4169,'Sun Java System Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4170,'Sun Java Enterprise System Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4171,'IPlanet Web Server 4.1',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4174,'Netscape FastTrack Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4176,'IPlanet Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4177,'Sun-Java-System-Web-Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4179,'WebSphere Application Server V3.0',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4180,'WebSphere Application Server V5.0',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4181,'Websphere 6',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4182,'WAS 6',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4183,'WebSphere Application Server',8,284,'also_known_as'); -INSERT INTO entity_mentions VALUES(4184,'WebSphere',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4185,'WebSphere Application Server V5.1 Business Integration Foundation Edition',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4186,'WebSphere Application Server V6.0',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4187,'WebSphere Application Server V5.0 Enterprise Edition',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4188,'IBM WebSphere Real Time',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4189,'Websphere',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4190,'IBM Websphere',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4191,'WebSphere Application Server V4.0',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4192,'Websphere Software',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4193,'IBM WebSphere Information Integration',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4194,'WebSphere Information Integration',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4196,'WebSphere Process Server',8,287,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4197,'Integrity NonStop',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4198,'HP Integrity NonStop',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4199,'HPE NonStop',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4200,'Nonstop kernel',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4201,'NonStop Kernel',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4202,'NonStop OS',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4203,'IBM Power System',4,295,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4204,'Lpar2rrd',4,295,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4205,'Power Systems',4,295,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4206,'L5335',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4207,'Xeon E5-26xx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4208,'Dunnington (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4209,'Cascades (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4210,'Scalable Memory Interconnect',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4211,'X7460',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4212,'Xeon E3-12xx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4213,'Xeonx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4214,'Woodcrest (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4215,'Pentium II Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4216,'Tigerton (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4217,'Jasper Forest (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4218,'XEON',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4219,'Xeon E7-48xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4220,'Clovertown (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4221,'Xeon E5',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4222,'Westmere-EX',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4223,'Drake (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4224,'X5650',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4225,'Xeon E3 v2',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4226,'Wolfdale-DP (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4227,'Quad-Core Intel Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4228,'Tanner (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4229,'Scalable memory interconnect',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4230,'Intel Xeon CPU',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4231,'Quad-Core Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4232,'Intel Xeon E5',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4233,'Xeon E3 v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4234,'Dempsey (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4235,'Xeon Silver',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4236,'Xeon E7-88xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4237,'Harpertown (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4238,'Xeon E5 v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4239,'Intel SMI',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4240,'Gainestown (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4241,'Xeon MP',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4242,'Dual-Core Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4243,'Xeon E5-26xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4244,'Intel Xeon Gold',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4245,'Nancona',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4246,'Haswell-EP',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4247,'Intel Xeon Platinum',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4248,'Sossaman (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4249,'Xeon E3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4250,'Xeon E7 v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4251,'Xeon E7 v2',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4252,'Intel Woodcrest',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4253,'E5310',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4254,'Intel Xeon Bronze',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4255,'Xeon E5 v2',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4256,'Pentium III Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4257,'Nehalem-ex',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4258,'Xeon E5-16xx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4259,'Intel Xeon Silver',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4260,'Beckton (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4261,'Xeon E5-16xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4262,'Xeon Bronze',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4263,'Sossaman',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4264,'Xeon E3-12xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4265,'Intel Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4266,'Xeon Platinum',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4268,'Oracle Database Machine',4,298,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4269,'Exadata',4,298,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4270,'Autoit',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4271,'Autoit script',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4272,'AutoIt3',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4273,'AI3',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4274,'Awk',9,300,'also_known_as'); -INSERT INTO entity_mentions VALUES(4275,'Nawk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4276,'GNU Awk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4277,'GAWK',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4278,'GNU awk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4279,'One true AWK',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4280,'AWK (programming language)',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4281,'AWK programming language',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4282,'Awk (language)',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4283,'Tawk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4284,'One True AWK',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4285,'Gawk (GNU package)',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4286,'Awk language',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4287,'One true awk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4288,'Awk programming language',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4289,'BASAIC programming language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4290,'Beginner All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4291,'Beginner''s All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4292,'Beginners All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4293,'Beginner All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4294,'Beginner''s All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4295,'Basic programming language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4296,'Beginners'' All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4297,'Beginners'' All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4298,'Basic (programming language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4299,'Basic (language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4300,'Basic computer language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4301,'Unstructured BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4302,'B.A.S.I.C.',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4303,'ECMA-55',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4304,'Beginner All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4305,'Compiled BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4306,'Structured BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4307,'Beginners All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4308,'Beginner''s All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4309,'ROM BASIC programming language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4310,'Beginners All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4311,'BASIC language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4312,'BASIC (programming language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4313,'Beginners All-purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4314,'Basic (computer language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4315,'Beginners'' All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4316,'ANSI BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4317,'BASIC programming language',9,301,'also_known_as'); -INSERT INTO entity_mentions VALUES(4318,'Beginner''s All-purpose Symbolic Instruction Code',9,301,'also_known_as'); -INSERT INTO entity_mentions VALUES(4319,'C prog',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4320,'C programming Language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4321,'C-programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4322,'C programming language/Evolution',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4323,'C (computer language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4324,'C (programming langage)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4325,'C lang',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4326,'C (lang)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4327,'C programing language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4328,'C (programming)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4329,'C78 (C version)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4330,'C programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4331,'C Language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4332,'C language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4333,'C Programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4334,'C program',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4335,'C programming language/K and R C',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4336,'C (language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4337,'32/16 bit C programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4338,'C (software)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4339,'C(programming language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4340,'C (Programming Language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4341,'Programming language C',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4342,'Computer language C',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4343,'C programming language',9,303,'also_known_as'); -INSERT INTO entity_mentions VALUES(4344,'C# (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4345,'C++++',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4346,'Visual C Sharp .Net',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4347,'Visual C Sharp Express Edition',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4348,'C♯ (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4349,'Microsoft Visual C ♯',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4350,'C Sharp language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4351,'C# programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4352,'ISO/IEC 23270',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4353,'C Sharp Programming Language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4354,'Microsoft Visual C Sharp',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4355,'C-sharp programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4356,'C ♯ (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4357,'C hash',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4358,'C♯ (language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4359,'C sharp (computing)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4360,'CS (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4361,'C sharp (language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4362,'C Sharp (language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4363,'ECMA-334',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4364,'C-hash',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4365,'C sharp 6.0',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4366,'C♯ programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4367,'Visual C Sharp',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4368,'C Sharp 5.0',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4369,'C-Hash',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4370,'C sharp programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4371,'ISO 23270',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4372,'C Sharp Programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4373,'C Sharp (computing)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4374,'C # (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4375,'C sharp (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4376,'C hashtag',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4377,'C Pound',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4378,'C Sharp programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4379,'C plus plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4380,'C++ 1.0',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4381,'C plus plus programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4382,'ISO/IEC 14882:2003',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4383,'C++ standard',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4384,'Standard C++ Foundation',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4385,'ISO/IEC 14882',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4386,'Sepples',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4387,'Cee plus plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4388,'C++ program',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4389,'C++ (Programming Language)',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4390,'C+++',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4391,'C++ syntax',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4392,'ANSI C++',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4393,'ISO C++',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4394,'C++ (programming language)',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4395,'C++ 2.0',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4396,'C++ language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4397,'Cee Plus Plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4398,'C Plus Plus programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4399,'Core language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4400,'ISO C++ programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4401,'Cplusplus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4402,'C++ programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4403,'C++98',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4404,'ISO/IEC 14882:2014',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4405,'++C',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4406,'CPlusPlus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4407,'ISO/IEC 14882:2015',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4408,'C-plus-plus programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4409,'C-plus-plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4410,'C Plus Plus',9,583,'also_known_as'); -INSERT INTO entity_mentions VALUES(4411,'Microsoft C',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4412,'Visual C++ .NET 2003',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4413,'Embedded Visual C++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4414,'Visual C++ 2002',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4415,'Visual C++ 5.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4416,'Visual C++ 2010',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4417,'Visual C++ .NET 2002',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4418,'Visual C++ 2003',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4419,'Vc++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4420,'MSVC90',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4422,'MSVC 2005',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4423,'Embedded visual c plus plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4424,'Visual C++ 6.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4425,'Visual C++ 2.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4427,'Visual C plus plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4428,'Visual C Plus Plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4429,'MSVC80',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4430,'Visual C++ 4.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4431,'Visual C++ 2012',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4432,'Visual C++ 4.2',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4433,'VisualC++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4434,'MSVC110',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4435,'VC++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4436,'MSVC120',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4437,'Microsoft C compiler',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4438,'MSVC 2010',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4439,'Microsoft Visual C plus plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4440,'MSVC100',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4441,'MSVC71',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4442,'Vc9',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4443,'MSVC 2013',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4444,'Visual C++ 1.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4445,'MSVC 2003',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4446,'Msvc',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4447,'Visual C++ 2013',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4448,'Microsoft Visual C Plus Plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4449,'Visual C++ 2005',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4450,'MSVC 2002',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4451,'MSVC 2008',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4452,'MSVC 2012',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4453,'Visual c',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4454,'MS Visual C++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4455,'Vc6',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4459,'Cascading Stylesheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4460,'Css1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4461,'Cascading Style Sheet',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4462,'CSS stylesheet',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4463,'CSS selector',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4464,'CSS (internet)',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4465,'Cascading style sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4466,'CSS1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4467,'Css 2.1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4468,'Aural Cascading Style Sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4469,'Css3',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4470,'CSS 2',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4471,'CSS2',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4472,'CSs',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4473,'CSS 1.0',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4474,'Text/css',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4475,'Css 2.0',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4476,'CSS4',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4477,'Cascading Style Sheets - CSS',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4478,'Css 3',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4479,'Css',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4480,'Cascading style sheet',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4481,'CSS 4',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4482,'XML/XSL skin',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4483,'CSS styles',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4484,'CSS style sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4485,'Cascading Style Sheets 4',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4486,'CSS styling',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4487,'CSS 3.0',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4488,'CSS style',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4489,'CSS2.1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4490,'Cascading stylesheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4491,'Css2',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4492,'CSS3',9,307,'also_known_as'); -INSERT INTO entity_mentions VALUES(4493,'Clipper programming language',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4494,'CA clipper',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4495,'Clipper prog',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4496,'CA-Clipper',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4497,'Clist',9,309,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4498,'CoBoL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4499,'COBOL-85',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4500,'COBOL 20XX',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4501,'COBOL 85',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4502,'ISO/IEC 1989',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4503,'MF-COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4504,'O-O COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4505,'COBOL programming language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4506,'COBOL-74',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4507,'COBOL 60',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4508,'ISO 1989',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4509,'COBOL 74',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4510,'COBOL74',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4511,'COBOL-68',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4512,'OO COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4513,'COBOL language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4514,'COBOL 1985',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4515,'Common Ordinary Business-Oriented Language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4516,'COBOL 1968',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4517,'COBOL 2014',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4518,'Object-oriented COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4519,'Common Business Oriented Language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4520,'COBOL (programming language)',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4521,'X3J4',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4522,'COBOL68',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4523,'COBOL 1974',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4524,'COBOL85',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4525,'OO-COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4526,'COBOL-60',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4527,'COmmon Business-Oriented Language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4528,'COBOL 1960',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4529,'COBOL 2002',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4530,'RM/COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4531,'COBOL 68',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4532,'Common Business-Oriented Language',9,594,'also_known_as'); -INSERT INTO entity_mentions VALUES(4533,'Cobol',9,594,'also_known_as'); -INSERT INTO entity_mentions VALUES(4535,'Cfml',9,311,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4536,'Data Language/1',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4537,'IBM Data Language One (DL/1)',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4539,'DL/1',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4540,'Borland Delphi 2006',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4541,'Delphi rad',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4542,'Delphi 2006',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4543,'Delphi XE2',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4544,'RAD Studio',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4545,'Embarcadero RAD Studio',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4546,'Delphi 2009',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4547,'Delphi XE',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4548,'CodeGear Delphi',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4549,'Delphi (IDE)',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4550,'Delphi XE4',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4551,'Delphi XE3',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4552,'Borland Delphi',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4553,'Delphi code',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4554,'Delphi 4',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4555,'Embarcadero Delphi',9,313,'also_known_as'); -INSERT INTO entity_mentions VALUES(4558,'Xhtml11',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4559,'Xhtml strict',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4560,'XHTML 1.0',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4561,'XHTML 1.1',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4562,'Xhtml',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4563,'Xht',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4564,'Xhtml 2',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4565,'EXtensible HyperText Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4566,'XHTML2',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4567,'X(HTML)',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4568,'XHTML 2.0',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4569,'Extensible HyperText Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4570,'XHTML 2',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4571,'Extensible Hypertext Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4572,'EXtensible Hypertext Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4573,'(X)HTML',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4574,'XML feed',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4575,'XML feeds',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4576,'Well-formed XML',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4577,'Extended markup language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4578,'EXtensible Markup Language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4579,'Xml:lang',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4580,'Xml parser',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4581,'XML tag set',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4582,'Web3S',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4583,'Extensible markup language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4584,'Xml',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4585,'Extended Markup Language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4586,'Dynamic XML',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4587,'XML parser',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4588,'Text/xml',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4590,'Valid XML document',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4591,'MS XML',9,318,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4592,'Microsoft XML Core Services',9,318,'also_known_as'); -INSERT INTO entity_mentions VALUES(4593,'Xsl',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4594,'Extensible stylesheet language',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4595,'EXtensible Stylesheet Language',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4596,'XSL stylesheet',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4597,'XSL stylesheets',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4599,'XML template engine',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4600,'XSL Transformation',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4601,'XSLT 2.0',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4602,'Xslt',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4603,'XSLT processor',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4604,'XLST',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4605,'XML template processor',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4606,'XSL-T',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4607,'XSL Transformations',9,320,'also_known_as'); -INSERT INTO entity_mentions VALUES(4609,'Focus (software)',9,321,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4610,'Focus software',9,321,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4611,'FORTRAN',9,322,'also_known_as'); -INSERT INTO entity_mentions VALUES(4612,'Formula Translation',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4613,'Fortran 77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4614,'FORTRAN II',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4615,'Formula Translator',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4616,'FORTRAN 66',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4617,'FORTRAN programming language',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4618,'Fortran (programming language)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4619,'Fortran 2018',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4620,'Fortran IV',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4621,'Fortran 2008',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4622,'Format (Fortran 66)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4623,'Fortran 66',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4624,'Fortran programming language',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4625,'FORTRAN77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4626,'ECMA-9',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4627,'Fortran language',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4628,'FORTRAN IV',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4629,'Fortran 95',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4630,'F77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4631,'Fortran 2003',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4632,'FORTRAN 77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4633,'Visual Fortran',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4634,'Fortran 90',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4635,'FORTRAN (programming language)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4636,'FORTRAN 86',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4637,'Formula translation',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4638,'F2003',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4639,'Fort77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4640,'Fortran 5 (programming language)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4641,'F95',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4642,'Fortran 8X',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4643,'Fortran 2015',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4644,'Fortran-66',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4645,'FORTRAN I',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4646,'Go (Programming language)',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4647,'Gccgo',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4648,'Go Programming Language',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4649,'Google go',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4650,'Go language',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4651,'Golang',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4652,'Go google',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4653,'Go (language)',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4654,'GoLang',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4655,'Go lang',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4656,'Go programming language',9,323,'also_known_as'); -INSERT INTO entity_mentions VALUES(4657,'Google Go',9,323,'also_known_as'); -INSERT INTO entity_mentions VALUES(4658,'Graphql',9,324,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4660,'Dynamic Hypertext Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4661,'HTML file',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4662,'Hypertext markup language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4664,'Basic HTML',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4665,'HTM file',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4666,'HTML 4.01',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4667,'ISO/IEC HTML',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4668,'Hyper text Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4670,'Hyper Text Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4671,'HTML2',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4672,'HTML 4',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4673,'HTML 3.2',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4674,'HTML+',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4675,'HLMT',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4676,'ISO/IEC 15445',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4677,'Hyper text markup language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4678,'Html comment',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4679,'HTML code',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4680,'HTML strict',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4681,'HyperText Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4682,'HTML 4.0',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4683,'Html',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4684,'Html language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4685,'Html code',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4686,'HTML File Format',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4687,'HTML syntax',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4688,'HTML 3',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4689,'HMTL',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4690,'Text/html',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4691,'Html coding',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4692,'HTML 2',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4693,'HTML3',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4694,'Html 4.01',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4696,'HLASM',9,328,'also_known_as'); -INSERT INTO entity_mentions VALUES(4697,'IBM High-Level Assembler',9,328,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4699,'AS/400 Control Language',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4700,'CL Programming',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4701,'Control Language Programming',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4702,'CL (OS/400 command interpreter)',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4703,'AS/400 Command Language',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4704,'IBM i Control Language',9,329,'also_known_as'); -INSERT INTO entity_mentions VALUES(4705,'Informix 4GL/SQL',9,330,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4707,'Java programming language',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4708,'Javax',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4709,'Java (software)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4710,'Java (Programming language)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4711,'Javalang',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4712,'Java Programming',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4713,'JPD (file format)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4714,'Java (programming)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4715,'Java (langage)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4716,'Java language',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4717,'Java technology',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4718,'Flow Java',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4719,'Java (language)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4720,'Java programming',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4721,'Java (Programming Language)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4722,'Java prog',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4723,'Java code',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4724,'Java computer language',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4725,'Java Programing Languge',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4732,'JavaEE',9,333,'also_known_as'); -INSERT INTO entity_mentions VALUES(4734,'J2EE',9,333,'also_known_as'); -INSERT INTO entity_mentions VALUES(4735,'Enterprise Java',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4736,'Java enterprise',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4737,'JSR 313',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4738,'Java EE 5',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4739,'Java Platform',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4741,'Java Enterprise Platform',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4742,'JSR 58',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4743,'Java 2 Platform Enterprise',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4744,'Java ee',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4745,'J2EE 1.4',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4746,'Jakarta Enterprise Edition',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4747,'J2EE 1.3',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4748,'Java 2 Enterprise Edition',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4749,'J2EE 1.2',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4750,'JSR 151',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4751,'JSR 244',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4752,'J2ee',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4753,'J2SE',9,334,'also_known_as'); -INSERT INTO entity_mentions VALUES(4754,'Java 2 Platform Standard Edition',9,334,'also_known_as'); -INSERT INTO entity_mentions VALUES(4755,'Java SE',9,334,'also_known_as'); -INSERT INTO entity_mentions VALUES(4756,'JSR 59',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4757,'Javase',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4758,'J2se',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4759,'Java 2 Platform',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4760,'Java 2 Standard Edition',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4761,'Java Standard Edition',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4762,'JavaSE',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4763,'Java se',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4764,'JSR 270',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4765,'Java SE platform',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4766,'JSR 176',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4767,'JSR 152',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4768,'JSP compiler',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4769,'JSP container',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4770,'Jave Page',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4771,'Jakarta Server Pages compiler',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4772,'Jave Server',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4773,'Java server pages',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4774,'Javaserver pages',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4775,'Jsp2',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4776,'JSP files',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4777,'Java Server Page',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4778,'Java Server Pages',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4779,'JSP engine',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4780,'JSPF',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4781,'JSR 245',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4782,'JavaServer Pages compiler',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4783,'JavaServer Page',9,335,'also_known_as'); -INSERT INTO entity_mentions VALUES(4785,'Scriptlets',9,336,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4786,'JavaScripts',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4787,'Live-script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4788,'JavaScript programming language',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4789,'Mocha (programming language)',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4790,'JavaScript rollover',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4791,'Live-Script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4792,'Javascript Console',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4793,'Server side javascript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4794,'Live script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4795,'Javascript programming language',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4796,'JavaScript Forums',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4797,'JavaScript 1.6',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4799,'JavaScript language',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4800,'Escript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4801,'JavaScript (programming language)',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4802,'Client-side JavaScript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4803,'Javascript (programming language)',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4804,'Vanilla JS',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4805,'SSJS',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4806,'Javascript 1.7',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4807,'Java script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4809,'JavaScript 1.7',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4810,'DOM scripting',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4811,'Vanilla JavaScript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4812,'Live Script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4813,'CSJS',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4814,'Server-side JavaScript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4815,'Server-Side JavaScript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4816,'IBM JCL',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4817,'Job Control Statements',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4818,'Job management language',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4819,'Job entry control language',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4820,'JECL',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4821,'Job control language',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4822,'Jscript',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4823,'Microsoft JScript',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4824,'JS script',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4825,'ActiveXObject',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4826,'Managed JScript',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4827,'Lisp computer language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4828,'Lisp language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4829,'Lisp atom',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4830,'LISP (programming language)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4831,'LISP atom',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4832,'Lisp (programming)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4833,'List Processing',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4834,'Lisp (language)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4835,'MuLISP',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4836,'LISP',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4837,'LISP language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4838,'Lisp 1.5',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4839,'LISP programming language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4840,'Lisp programming language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4841,'LISP 1.5',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4842,'Lithp (programming language)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4843,'Lisp renaissance',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4844,'LISP (programming)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4845,'NPL (Programming language)',9,342,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4846,'NPL programming language',9,342,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4848,'ObjC',9,343,'also_known_as'); -INSERT INTO entity_mentions VALUES(4849,'Objc',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4850,'Objective-C 2.0',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4851,'Objective C++',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4852,'Objective-C++',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4854,'Object C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4855,'Objective-C (programming language)',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4856,'Obj-c',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4857,'ObjC programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4858,'Objective c',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4859,'C and Smalltalk',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4860,'Objective-c',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4861,'ObjectiveC',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4862,'Obj C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4863,'Objective-C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4864,'Obj C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4865,'Objective C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4866,'Objective C plus plus',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4867,'Obj-C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4868,'Smalltalk and C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4869,'Object-C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4870,'OpenEdge Advanced Business Language (ABL)',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4871,'OpenEdge Database',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4873,'OpenEdge Advance Business Language (ABL)',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4874,'Progress RDBMS',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4875,'Progress DBMS',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4876,'Advanced Business Language',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4877,'Progress (software)',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4878,'Progress4GL',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4879,'Webspeed',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4880,'Progress 4GL',9,344,'also_known_as'); -INSERT INTO entity_mentions VALUES(4881,'Pascal-SC',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4882,'Pascal-P1',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4883,'Pascal (language)',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4884,'Pascal-P',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4885,'Pascal programming language',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4886,'PASCAL-XSC',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4887,'Pascal-S',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4888,'Pascal Programming Language',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4889,'PASCAL-SC',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4890,'PASCAL (Programming language)',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4891,'Pascal-P2',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4892,'Pascal-P3',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4893,'Pascal-P system',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4894,'Pascal-P System',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4895,'Pascal-F',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4896,'Pascal (command)',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4897,'ISO/IEC 10206',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4898,'Pascal-P5',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4899,'Pascal language',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4900,'Pascal-p2',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4901,'Pascal 86',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4902,'Pascal-P4',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4903,'Pascal-XSC',9,599,'also_known_as'); -INSERT INTO entity_mentions VALUES(4904,'Delphi (language)',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4905,'Delphi programming language',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4906,'Delphi (programming language)',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4907,'Object-Oriented Pascal',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4908,'Delphi language',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4909,'Delphi (Computer Language)',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4910,'Delphi programming',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4911,'Perl 7',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4912,'Perl (programming language)',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4913,'Practical Extraction and Report Language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4914,'Perl interpreter',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4915,'Vanilla Perl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4916,'Practical Extraction And Report Language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4917,'Ponie',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4918,'Embedded Perl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4919,'Perl language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4920,'X-perl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4921,'Perl programming language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4922,'Swiss army chainsaw',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4923,'IndigoPerl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4924,'Perl code',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4925,'Swiss-army chainsaw',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4926,'Perl5',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4927,'PONIE',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4928,'PERL',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4929,'Perl 5',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4930,'Perl programming',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4931,'Perl (language)',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4932,'PerlScript',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4933,'Active Perl',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4934,'Activeperl',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4935,'Perlscript',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4947,'Perl Golf',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4958,'Php language',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4959,'Php (programming language)',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4960,'Zend Engine 3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4961,'Php 5.3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4962,'PHP interpreter',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4963,'PHP (programming language)',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4964,'Php 4',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4965,'PHP 5',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4966,'PHPNG',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4967,'PHP8',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4968,'PHP Next Generation',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4969,'PHP5-FPM',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4970,'PHP5',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4971,'PHP4',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4972,'Php 5.4',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4973,'Php 5.1',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4974,'PHP-FPM',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4975,'Php',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4976,'PHTML',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4977,'PHP/FI',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4978,'Php-fpm',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4979,'Php6',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4980,'PHP 6',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4981,'Php 5.0',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4982,'PHP3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4983,'Php 6.0',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4984,'Zephir (programming language)',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4985,'Php1',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4986,'PHP:Hypertext Preprocessor',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4987,'Php 3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4988,'PHP7',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4989,'PHP programming',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4990,'Phtml',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4991,'Php 5.2',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4992,'Php5',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4993,'Php2',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4994,'Phpng',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4995,'PHP Hypertext Preprocessor (programming language)',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4996,'PHP next generation',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4997,'Php3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4998,'PHP6',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4999,'PHP programing language',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5000,'PHP 7',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5001,'Php 1',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5002,'Php 2',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5003,'Hypertext Preprocessor',9,586,'also_known_as'); -INSERT INTO entity_mentions VALUES(5004,'PHP programming language',9,586,'also_known_as'); -INSERT INTO entity_mentions VALUES(5005,'PHP: Hypertext Preprocessor',9,586,'also_known_as'); -INSERT INTO entity_mentions VALUES(5006,'PHP Hypertext Preprocessor',9,586,'also_known_as'); -INSERT INTO entity_mentions VALUES(5007,'SL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5009,'Pl/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5010,'PL1 language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5011,'PL/I programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5012,'Visual PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5013,'DEC PL/I',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5014,'PL/I-80',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5015,'PL/MP',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5016,'Raincode PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5017,'PL/I-86',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5018,'PLI programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5019,'PL/I (programming language)',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5020,'PL1 programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5021,'PL/MI',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5022,'PLI-86',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5023,'VAX PL/I',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5024,'PL/Ⅰ',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5025,'RainCode PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5026,'PL/1 programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5027,'StepSqlite',9,352,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5028,'PLSQL',9,352,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5029,'P/SQL',9,352,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5031,'Pro*C++',9,353,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5032,'Pro C',9,353,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5033,'Pro*C/C++',9,353,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5034,'Python scripting language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5035,'Python program',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5036,'PythonLanguage',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5037,'Python computer language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5038,'Python code',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5039,'Python3',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5040,'Python (computing)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5041,'Python programming language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5042,'Python programming',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5043,'Pythonistas',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5044,'PEP8',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5045,'Pyston',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5046,'Python language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5047,'Python (lang)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5048,'Python2',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5049,'Python3000',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5050,'Python 3k',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5051,'Python (language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5052,'Coconut (programming language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5053,'Python (software)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5054,'Pythonlang',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5055,'Python prog',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5056,'Python Programming',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5057,'Python Programming Language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5058,'Python (scripting language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5059,'Pythonista',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5060,'Python (programming)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5061,'Python (Programming Language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5062,'Python (computer language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5063,'Python 3K',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5064,'R project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5065,'R (programming)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5066,'R Shiny',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5067,'GNU-S',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5068,'RStat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5069,'R programming language',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5070,'R Statistics',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5071,'R-stat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5072,'R lang',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5073,'RPro',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5074,'R code',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5075,'R-Project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5076,'R (computer language)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5077,'R Project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5078,'R programming',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5079,'R (program)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5080,'R-project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5081,'R (software)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5082,'R-Stat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5083,'Rstat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5084,'RGL (software package)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5085,'R (language)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5086,'Rlang',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5087,'ParallelR',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5088,'R Open',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5089,'GNU R',9,355,'also_known_as'); -INSERT INTO entity_mentions VALUES(5090,'GNU S',9,355,'also_known_as'); -INSERT INTO entity_mentions VALUES(5091,'R language',9,355,'also_known_as'); -INSERT INTO entity_mentions VALUES(5092,'Quercus Personal REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5093,'Personal Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5094,'Personal REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5095,'REstructured eXtended eXecutor',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5096,'Enterprise REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5097,'Rexx programming language',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5098,'IBM REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5099,'Restructured Extended Executor',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5100,'REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5101,'Kilowatt Portable REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5102,'Pmrexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5103,'Enterprise Alternatives REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5104,'Kilowatt Portable Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5105,'Restructured extended executor',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5106,'Quercus Personal Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5107,'REXX (programming language)',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5108,'Portable REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5109,'Portable Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5110,'REXX programming language',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5111,'Report Program Generator',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5112,'Report program generator',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5113,'RPGLE',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5114,'RPG (programming language)',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5115,'IBM RPG (programming language)',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5116,'RPG IV',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5117,'RPG programming language',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5118,'Ruby (Programming Language)',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5119,'Ruby Programming Language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5120,'Ruby programming',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5121,'Ruby Enterprise Edition',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5122,'Ruby language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5123,'Ruby (language)',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5124,'Ruby (programming language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5125,'Ruby (lang)',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5126,'Ruby lang',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5127,'Ruby-gnome2',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5128,'Ruby-language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5129,'Ruby (computing)',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5130,'Ruby programming language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5131,'Rubylang',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5132,'Ruby prog',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5133,'SAS (Software)',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5134,'SAS System',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5135,'SAS (programming language)',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5136,'SAS/STAT',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5137,'Interactive Matrix Language',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5138,'Statistical Analysis System',9,360,'also_known_as'); -INSERT INTO entity_mentions VALUES(5139,'Scss',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5140,'Sass CSS',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5141,'Sass (CSS)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5142,'Sass (Stylesheet Language)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5143,'Sass (markup language)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5144,'SASS (language)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5145,'Sass (software)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5146,'Libsass',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5147,'Scala programming language',9,362,'also_known_as'); -INSERT INTO entity_mentions VALUES(5148,'Scala language',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5149,'Scala.js (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5150,'ScalaNative',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5151,'ScalaNative (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5152,'Scala-JS (Programming Language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5153,'Scala-JS',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5154,'Scala Native',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5155,'ScalaJS (Programming Language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5156,'Scala (programming language',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5157,'ScalaJs (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5158,'Scala.js',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5159,'Scala Native (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5160,'Smalltalk (programming language)',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5161,'Smalltalk programming language',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5162,'Smalltak',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5163,'Smalltalk-80',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5164,'Smalltalk Programming Language',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5165,'Smalltalk-72',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5166,'SmallTalk',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5167,'Smalltalk/V',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5168,'Visual Smalltalk',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5169,'Smalltalk 80',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5170,'SmallTalk programming language',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5171,'Swift (Apple programming language)',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5172,'Swift programming language',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5173,'Swift language',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5174,'Apple Swift',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5175,'SwiftNIO',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5176,'Swiftlang',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5177,'Tool Command Language',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5178,'Safe-Tcl',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5179,'Tcl (computer language)',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5180,'Object-oriented programming in Tcl',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5181,'Tcl (programming language)',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5182,'Tcl programming language',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5183,'Tcl/tk',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5184,'TclTk',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5185,'Tsql',9,366,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5188,'T-sql',9,366,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5190,'Microsoft TypeScript',9,367,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5192,'Microsoft Visual Basic.NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5193,'VB.Net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5194,'VB.net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5195,'Microsoft Visual Basic 2008 Express',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5196,'VB 2005',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5197,'VBx',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5198,'Vb dot net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5199,'Visual Basic 2005',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5201,'Visual BASIC .net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5202,'Visual Basic.NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5203,'Vb.net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5204,'Visual Basic (.NET Version)',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5205,'Visual Basic .NET 2003',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5206,'VB .NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5207,'Visual basic .net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5208,'Visual Basic.net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5209,'Visual Basic.Net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5210,'Microsoft Visual Basic .NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5211,'Visual Basic .net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5212,'Vbscript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5214,'VBS Script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5215,'VBScript (programming language)',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5216,'VBSCRIPT',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5217,'VB script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5218,'Visual Basic Scripting',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5220,'Visual Basic Script Edition',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5221,'Visual Basic Scripting Edition',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5222,'VBSScript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5223,'Visual Basic Script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5224,'VbScript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5225,'VBScript programming language',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5226,'Visual Basic 6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5227,'Visual basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5228,'Microsoft Visual Basic 5.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5229,'Visual basic 6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5230,'Microsoft Visual Basic 6.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5231,'Vbasic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5232,'Microsoft Visual Basic 6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5234,'VB4',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5236,'Classic Visual Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5237,'Microsoft Visual Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5238,'Hummingbird Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5239,'MSVB',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5240,'VBP',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5241,'VB3',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5242,'Visual Basic 6 Portable',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5243,'Visual Basic programming language',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5244,'Microsoft Visual BASIC',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5245,'VBLang',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5246,'Visual Basic Control',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5247,'VisualBasic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5248,'VBDOS 1.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5249,'Virtual Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5250,'Visual BASIC',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5251,'Visual Basic Classic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5252,'Visual Basic 5',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5253,'Microsoft visual basic for applications',9,371,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5254,'Visual Basic for Applications programming language',9,371,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5255,'Visual basic for applications',9,371,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5256,'Visual Foxpro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5257,'Visual Fox pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5258,'Microsoft Visual FoxPro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5259,'Microsoft Visual Fox pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5260,'Microsoft Visual Foxpro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5261,'Visual FoxPro programming language',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5262,'Visual Fox Pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5263,'Microsoft Visual Fox Pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5265,'Voice XML',9,373,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5266,'Voicexml',9,373,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5268,'XBase plus plus',9,374,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5269,'Clucene',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5270,'KinoSearch',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5271,'Kinosearch',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5272,'Solr/Lucene',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5274,'Apache Xerces',12,376,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5275,'Bootstarpping',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5276,'Boot strap',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5277,'Bootstrapped',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5278,'Bootstrap support',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5279,'Bootstrapping (computing)',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5280,'Bootstrapper',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5281,'Boot-strap',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5282,'Bootstrap (word origin)',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5283,'Java|Apache Camel',12,378,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5284,'Java|Apache Commons BeanUtils',12,379,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5286,'Velocity apache',12,381,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5287,'Velocity (software)',12,381,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5288,'Jakarta Velocity',12,381,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5289,'Java|EclipseLink',12,382,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5292,'Enterprise Java Beans',12,383,'also_known_as'); -INSERT INTO entity_mentions VALUES(5293,'Enterprise Beans',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5294,'Enterprise beans',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5295,'Enterprise JavaBean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5296,'Enterprise Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5297,'SLSB',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5298,'Enterprise bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5299,'SFSB',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5300,'Jakarta Enterprise Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5301,'Bean-Managed Persistence',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5302,'Enterprise Java Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5303,'Java Enterprise Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5304,'EJB Container',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5305,'Jakarta Enterprise beans',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5306,'Jakarta Enterprise bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5307,'JSR 153',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5308,'JSR 19',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5309,'EJB container',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5310,'Ejb',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5311,'JSR 220',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5312,'Container-Managed Persistence',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5313,'Message-driven EJB',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5314,'JSNI',12,385,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5315,'Hibernate Query Language',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5316,'Hibernate (Java)',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5317,'Hibernate OGM',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5318,'Hibernate (software)',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5319,'Hibernet',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5320,'Hibernate Core',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5321,'Hibernate (java)',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5322,'Java 2 SDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5324,'Java SDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5325,'J2SDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5326,'Java 2 Software Development Kit',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5327,'JDK 1.2',12,388,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5328,'Java Development Toolkit',12,388,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5329,'Java jdk',12,388,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5330,'JSR 914',12,389,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5331,'Java messaging service',12,389,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5333,'JNLP',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5334,'Web Start',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5335,'Java webstart',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5336,'Java Network Launching Protocol',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5337,'JavaWS',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5338,'Webstart',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5339,'JSR 56',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5340,'Javaws',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5341,'Java web start',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5342,'Java Webstart',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5343,'JSR 127',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5344,'JSR 252',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5345,'Java Server Faces',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5346,'Javaserver faces',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5349,'Jdbc',12,392,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5350,'Java Data Base Connectivity',12,392,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5352,'JRuby programming language',12,393,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5353,'JRuby language',12,393,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5354,'Jruby',12,393,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5355,'Apache Log4net',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5356,'Log4javascript',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5357,'Apache log4net',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5358,'Log4js',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5359,'Log4Net',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5360,'Log4c',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5361,'Log4J',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5362,'Quartz job scheduler',12,395,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5363,'JRMI',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5364,'Remote Method Invokation',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5365,'Java Remote Method Invocation',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5366,'Rmic',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5368,'Free-source',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5369,'Free source',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5370,'Four Freedoms (software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5371,'Free (software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5372,'Software Libre',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5373,'Libre software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5374,'Free-source software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5375,'Free-libre software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5376,'Four Freedoms (Free software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5377,'Libre Software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5378,'Freedom-ware',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5379,'4 software freedoms',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5380,'Free sofware',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5381,'Free-software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5382,'FSF''s "free software" ideal',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5383,'Free and Open Source Software (FOSS) for development',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5384,'Freedomware',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5385,'Free computer software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5386,'Freed Software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5387,'Freedom software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5388,'Software libre',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5389,'Free software development',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5390,'Four Freedoms (free software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5391,'Spring (Java)',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5392,'Spring framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5394,'Spring beans',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5395,'Spring (framework)',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5396,'Spring Boot',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5397,'Java Spring',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5398,'Spring Framework (Java)',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5399,'Springframework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5400,'Spring IOC Framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5401,'Spring AOP framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5402,'Spring AOP',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5403,'The Spring Framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5404,'Java|Spring|Spring Boot',12,399,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5405,'Jakarta Struts',12,402,'also_known_as'); -INSERT INTO entity_mentions VALUES(5406,'Struts Studio',12,402,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5407,'Struts Framework',12,402,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5408,'Java Struts',12,402,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5409,'Swing (java)',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5410,'Swing java',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5411,'Java Swing',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5412,'Javax.swing',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5413,'IT Mill Toolkit',12,404,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5414,'Ajax framework',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5415,'Ajax programming',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5416,'CAJAX',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5417,'Ajax scripts',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5418,'AJAX (programming)',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5419,'AJAXy',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5420,'AJAX framework',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5421,'Ajax desktops',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5422,'Asynchronous Javascript and XML',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5423,'Ajax language',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5424,'Ajax (software)',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5425,'Asynchronous JavaScript and JSON',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5426,'Asynchronous JavaScript and XML',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5427,'AJAX Framework',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5428,'AJAJ',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5431,'Angular.js',12,406,'also_known_as'); -INSERT INTO entity_mentions VALUES(5432,'MVW framework',12,406,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5433,'Scope (AngularJS)',12,406,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5434,'Angularjs',12,406,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5435,'Expressjs',12,408,'also_known_as'); -INSERT INTO entity_mentions VALUES(5436,'Ext Core',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5437,'Extjs',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5438,'Ext (JavaScript library)',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5440,'Ext (javascript library)',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5441,'CssQuery',12,411,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5442,'Jquery Library',12,411,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5443,'Jquery',12,411,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5444,'JQueryUI',12,412,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5445,'React.js',12,413,'also_known_as'); -INSERT INTO entity_mentions VALUES(5447,'Reactjs',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5448,'Facebook React',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5449,'React (web framework)',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5450,'React JS',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5451,'React Fiber',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5452,'JavaScript|script.aculo.us',12,414,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5453,'Android operating system',6,418,'also_known_as'); -INSERT INTO entity_mentions VALUES(5454,'Android OS',6,418,'also_known_as'); -INSERT INTO entity_mentions VALUES(5455,'Google Android',6,418,'also_known_as'); -INSERT INTO entity_mentions VALUES(5456,'Android (software stack)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5457,'Android system',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5458,'Android (phone)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5459,'Android (Google)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5460,'Android phone operating system',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5461,'Google Android Linux OS',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5462,'Android (Operating System)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5463,'Android (mobile device platform)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5464,'Android Apps',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5465,'Android Phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5466,'Android cell phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5467,'Honeycomb',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5468,'Android software',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5469,'Android google',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5470,'Android 3.0 Honeycomb',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5471,'Android platform',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5472,'Android cellphone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5473,'Android device',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5474,'Android mobile phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5475,'Mobile Android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5476,'Android 3.0',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5478,'Android phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5479,'TaintDroid',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5480,'Google android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5481,'Android (system)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5482,'Android Open Source Project',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5483,'Android app',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5484,'Os android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5485,'Android (software)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5486,'Android application',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5487,'Android (os)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5488,'Android.os',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5489,'Android (OS)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5490,'Android Device Manager',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5491,'Android (platform)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5492,'Android client',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5493,'IDroid',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5494,'Android (company)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5495,'Android-powered device',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5496,'Android (mobile phone platform)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5497,'Android Operating System',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5498,'Android devices',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5499,'Google''s Android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5500,'Android mobile',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5501,'Android fork',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5502,'Android (google)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5503,'Surfaceflinger',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5504,'Android os',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5505,'Android mobile phone platform',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5506,'Google Android One',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5507,'B.E.O.S',6,419,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5508,'Be OS',6,419,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5509,'Internetwork Operating System',6,420,'also_known_as'); -INSERT INTO entity_mentions VALUES(5510,'IOS (Cisco)',6,420,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5511,'CIOSS',6,420,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5512,'Interface Descriptor Block',6,420,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5513,'Google Dash',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5514,'ECMA Dart',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5515,'Dart (language)',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5516,'Dart programming language',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5517,'Dart language',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5518,'DartLang',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5519,'ECMA-408',6,421,'also_known_as'); -INSERT INTO entity_mentions VALUES(5520,'Google Dart',6,421,'also_known_as'); -INSERT INTO entity_mentions VALUES(5521,'Fabos',6,422,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5522,'The GNU operating system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5523,'GNU/DOS',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5524,'GNU System',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5525,'GNU Operating System',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5526,'The GNU system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5527,'GNU OS',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5528,'GNU system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5529,'GNU''s Not Unix',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5530,'GNU operating system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5531,'I5os',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5532,'IBM OS/400',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5534,'IBM i5/OS',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5535,'I on Power',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5536,'IBM i on Power',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5538,'I5/OS',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5539,'IBM I5/OS',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5540,'I-OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5541,'OS X iPhone',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5542,'IPhoneOS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5543,'IPhone Operating System',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5544,'IPhone os',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5545,'Mac OS X (iPhone)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5546,'IOS Apple',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5547,'Ipod touch os',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5548,'IPod Touch OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5549,'IPhone OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5550,'Apple iPhone OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5551,'OS X Mobile',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5552,'IOS (Apple Inc.)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5553,'Multitasking (iOS)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5554,'Apple iOS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5555,'Iphone os',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5556,'IPhone operating system',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5557,'AppleiOS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5558,'IOS (Apple)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5559,'IOS (operating system)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5560,'Ios (Apple)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5561,'Linux (operating system)',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5562,'LINUX',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5563,'Linuces',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5564,'GNU/Linux/X11',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5565,'LinuX',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5566,'Linux-based GNU system',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5567,'Gnu/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5568,'Linux+GNU',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5569,'Linux desktop',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5570,'Lienucks',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5571,'GNU-Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5572,'Linux/GNU',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5573,'Desktop GNU/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5574,'Desktop Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5575,'Linux Powered System',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5576,'Linux/gnu',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5577,'Linux server',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5578,'GNU-linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5579,'GNU/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5580,'Linux box',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5581,'GNULinux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5582,'Lynux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5583,'Linux OS',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5584,'Linices',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5585,'Linux-based GNU systems',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5586,'GNU/Linux/X',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5587,'Desktop linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5588,'GNU–Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5589,'Gnu/linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5590,'Linux on the desktop',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5591,'GNU+Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5592,'GNU Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5593,'Linux (GNU/Linux)',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5594,'Lineux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5595,'Linux/X11',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5596,'Linix',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5597,'Linux operating system',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5598,'Linux/X',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5599,'BlackRhino GNU/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5600,'Centos',6,427,'also_known_as'); -INSERT INTO entity_mentions VALUES(5601,'CentOs',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5602,'Centos7',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5603,'Centos Stream',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5604,'CentOS Linux',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5605,'Community Enterprise Operating System',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5606,'CAOS Linux',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5607,'Cent OS',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5608,'CentOS Stream',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5609,'CheckPoint INSPECT Code',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5610,'VPN-1',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5611,'FireWall-1',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5612,'VPN-1 Power',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5613,'FireWall-1/VPN-1',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5615,'Debian GNU/Linux',6,429,'also_known_as'); -INSERT INTO entity_mentions VALUES(5616,'Debian Sid',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5617,'Debian GNU Hurd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5618,'Debian Unstable',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5619,'Debian GNU/kFreeBSD',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5620,'Debian/sid',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5621,'Debian GNU/FreeBSD',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5622,'Debian Live',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5623,'Embedded Debian',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5624,'Debian Project',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5625,'Debian stable',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5626,'Kfreebsd-i386',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5627,'Debian Multimedia Project',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5628,'Debian repository',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5629,'Debian GNU',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5630,'Sid (Debian)',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5631,'Debian LTS',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5632,'GNU/Debian',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5633,'Kfreebsd-amd64',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5634,'Debian gnu/kfreebsd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5635,'Debian OS',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5636,'Embedian',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5637,'KFreeBSD',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5638,'Debian Manifesto',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5639,'Debian Hurd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5640,'Debian GNU/Hurd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5641,'Debian (operating system)',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5643,'Juniper JUNOS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5644,'Juniper OS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5645,'JUNOS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5646,'Juniper Junos',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5647,'Junos SDK',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5648,'Junos',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5649,'OpenSuSE',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5650,'SUSE Linux Professional',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5651,'OpenSUSE 11',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5652,'OpenSUSE Linux',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5653,'Factory (openSUSE)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5654,'Factory (software)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5655,'OpenSuSe',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5656,'Tumbleweed (software)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5657,'OpenSUSE Tumbleweed',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5658,'Open SUSE',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5660,'Tumbleweed (operating system)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5661,'OPENSUSE',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5662,'SUSEWatcher',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5663,'Opensuse',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5664,'Unbreakable Enterprise Kernel',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5665,'Oracle Unbreakable Enterprise Kernel',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5666,'Unbreakable Linux',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5667,'Oracle linux',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5668,'Unbreakable Linux Network',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5669,'Red Hat Compatible Kernel',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5670,'Oracle Unbreakable Linux',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5674,'Red Hat Global Desktop',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5675,'RedHat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5676,'Red hat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5677,'RedHat Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5678,'Redhat Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5679,'Redhat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5680,'Rhel',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5681,'Red hat enterprise',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5682,'Red Hat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5683,'Rhel4',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5684,'Red Hat Global Desktop Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5685,'Red Hat Enterprise Linux (RHEL)',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5686,'Red hat Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5687,'Red Hat Enterprise Linux 3',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5688,'Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5689,'RedPatch',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5690,'SUSE LINUX Enterprise Server',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5691,'SuSE SLES',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5692,'SLES (software)',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5693,'SuSE Linux Enterprise Server',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5694,'SUSE Linux Enterprise',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5695,'SLES (operating system)',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5696,'SuSE Enterprise Linux',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5697,'SUSE SLES',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5698,'Ubunt',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5699,'Ubuntu (GNU/Linux distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5700,'Ubuntu Server Edition',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5701,'Ubuntu Light',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5702,'Ubuntu (linux)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5703,'Ubuntu (Operating system)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5704,'Ubuntulinux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5705,'Uboonto Linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5706,'Easyubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5707,'Ubuntu (os)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5708,'Ubuntu LTS',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5709,'Linux ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5710,'Ubuntu (software)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5711,'Ubuntu desktop',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5712,'Ubuntu (OS)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5713,'Ubuntu (Operating System)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5714,'Ubuntu operating system',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5715,'Ubufox',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5716,'Ubunto Linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5717,'Ubuntu (O.S.)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5718,'Ubuntu Business Desktop Remix',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5719,'Ubuntu GNU/Linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5720,'Ubuntu os',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5721,'Ubuntu Server',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5722,'Ubuntu (distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5723,'Ubuntu (operating system)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5724,'Ubanto',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5725,'Unbuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5726,'Uboonto',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5727,'Ubuntu Linux (operating system based on Debian)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5728,'EasyUbuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5729,'Ubuntu Linux os',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5730,'Portable Ubuntu for Windows',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5731,'Ubuntu distro',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5732,'Ubuntu server',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5733,'Ubuntu distribution',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5734,'Ubuntu linux os',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5735,'Ubuntu (Linux)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5736,'Ubuntu (Linux distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5737,'Ubutnu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5738,'Ubunut',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5739,'Ubuntu Desktop',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5740,'Ubuntu Linux Server Edition',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5741,'Ubuntu Universe',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5742,'Unbutu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5743,'Ubuntu Foundation',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5744,'Linux Ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5745,'Universe ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5746,'Ubuntu operatng system',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5747,'Ubuntu (linux distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5748,'Ubununtu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5749,'Ubuntu Linux distribution',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5750,'Easy Ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5751,'Ubunto',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5752,'Ubuntu Enterprise Cloud',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5753,'ShipIt',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5754,'Ubuntu linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5755,'Ubuntu Linux operating system',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5757,'Ubuntu OS',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5758,'Ubuntu Project',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5759,'Ubuntu GNU/linux',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5760,'Linux on zSeries',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5761,'LinuxONE',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5762,'ZLinux',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5763,'Linux for zSeries',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5764,'Linux on System z9',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5765,'Linux on mainframe',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5766,'S390x',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5767,'Linux/390',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5768,'IBM LinuxONE',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5769,'Linux for mainframe',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5770,'Linux on z Systems',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5771,'Linux on System z',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5772,'Linux on Z Systems',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5773,'Linux for mainframes',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5774,'Linux on zseries',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5775,'Linux on mainframes',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5776,'Mainframe Linux',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5777,'Linux on z',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5778,'Z/Linux',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5779,'Apple OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5780,'Marklar project',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5781,'OS/X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5782,'Max os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5783,'Mac OS X 10',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5784,'OS-X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5785,'Mac os 10',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5786,'Mac osx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5787,'MacOS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5788,'Macintosh OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5789,'Macos',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5790,'Mac OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5791,'MacOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5792,'Macosx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5793,'Apple Macintosh OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5794,'Mac OS/OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5795,'Macintosh OS-X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5796,'Os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5797,'Mac OS-X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5798,'MacOS/X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5799,'Mac Os X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5800,'MAC OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5801,'MacintoshOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5802,'Apple Macintosh OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5803,'Os ten',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5804,'Mac OS/X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5805,'Osx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5806,'IBSD',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5807,'Apple macOS',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5808,'OSx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5809,'Mac os ten',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5810,'OS X (operating system)',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5811,'MacOs',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5812,'Apple Mac OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5813,'Macos x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5814,'MAC OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5815,'Apple OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5816,'Apple Mac OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5817,'Macintosh OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5818,'MOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5819,'Mac os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5820,'Apple MacOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5821,'MacOS 10',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5822,'Apple os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5823,'OSX',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5824,'Mac OS 10',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5825,'Mac OS X',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5826,'OS X',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5827,'MSP (operating system)',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5828,'MVS/ESA',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5829,'OS/MVS',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5830,'MVS Operating System',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5831,'Data Facility Product',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5832,'MVS/XA',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5833,'MVS/370',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5834,'Fujitsu MSP',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5835,'OS/VS2 (MVS)',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5836,'Hitachi VOS3',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5837,'MVS/SP',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5838,'Multiple Virtual Storage',6,577,'also_known_as'); -INSERT INTO entity_mentions VALUES(5839,'MVS|OS/390',6,440,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5840,'ZOS',6,441,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5841,'IBM z/OS',6,441,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5842,'Virtual Memory System',6,442,'also_known_as'); -INSERT INTO entity_mentions VALUES(5843,'VAX/VMS',6,442,'also_known_as'); -INSERT INTO entity_mentions VALUES(5844,'Open vms',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5845,'VMS operating system',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5846,'OpenVMS 7.2',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5847,'DECwindows',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5848,'VMS (operating system)',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5849,'VAX-VMS',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5850,'DEC VMS',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5851,'DECWindows',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5852,'Vax/vms',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5853,'Open VMS',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5854,'Openvms',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5855,'OS/2 Warp',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5856,'Win-OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5857,'DOS/286 (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5858,'NEWDOS (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5859,'Microsoft Betriebssystem/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5860,'Os2 warp',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5861,'OS/2 Warp 3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5862,'OS/2 Warp 3J',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5863,'Warp 3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5864,'IBM BS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5865,'BS/2 1.1',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5866,'Os2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5867,'OS/2 1.21',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5868,'BS/2 1.3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5869,'Advanced DOS',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5870,'OS2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5871,'BS/2 1.0',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5872,'WINOS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5873,'OS/2 Warp 4.5',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5874,'IBM OS2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5875,'OS/2 Special Edition for Windows',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5876,'OS/2 2.1',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5877,'OS/2 Warp 4',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5878,'OS/2 1.3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5879,'WinOS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5880,'OS/2 1.0',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5881,'Warp Server',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5882,'Microsoft OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5883,'WIN-OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5884,'OS/2 Warp Connect',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5885,'Microsoft Operating System/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5886,'IBM OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5887,'OS/2 for Windows',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5888,'OS/2 2.0',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5889,'IBM Operating System/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5890,'OS 2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5891,'Betriebssystem/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5892,'DOS 5 (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5893,'Microsoft BS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5894,'IBM Betriebssystem/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5895,'DOS 286 (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5896,'OS/2 API',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5897,'OS/2 1.1',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5898,'BS/2 1.2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5899,'Os/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5900,'BS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5901,'CP/DOS',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5902,'ADOS (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5903,'OS/2 1.2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5904,'0S/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5905,'Operating System/2',6,443,'also_known_as'); -INSERT INTO entity_mentions VALUES(5906,'Unixes',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5907,'UNIX operating system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5908,'UNIX systems',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5909,'Unix operating system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5910,'Truly Unix',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5911,'UNIX system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5912,'Unix box',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5913,'Unix system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5914,'Traditional Unix',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5915,'UNIX',6,578,'also_known_as'); -INSERT INTO entity_mentions VALUES(5916,'Advanced IBM UNIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5917,'IBM-RT/AIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5918,'IBM AIX (operating system)',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5919,'Object Data Manager',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5920,'AIX (operating system)',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5921,'Aix os',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5922,'IBM System AIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5923,'Ibm lum',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5924,'AIX for Apple Network Server',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5925,'IBM AIX/370',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5926,'Advanced Interactive eXecutive',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5927,'AIX/RT',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5928,'AIX/370',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5929,'AIXv3',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5930,'IBM370/AIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5931,'IBM AIX/PS2',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5932,'VM/IX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5933,'IX/370',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5934,'AIX for ANS',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5935,'IBM AIX/RT',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5936,'AIX Operating System',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5937,'AIX operating system',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5938,'AIX for Apple Network Servers',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5939,'IBM AIX/390',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5940,'AIX/PS2',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5941,'AIX/390',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5943,'BSD operating system',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5944,'Berkeley software distribution',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5945,'4.4BSD-Lite',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5946,'Vmunix',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5947,'BSD Unices',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5948,'HPBSD',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5949,'4.4BSD-Encumbered',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5950,'Berkeley UNIX',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5951,'Berkley Software Distribution',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5952,'Net/1',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5953,'Berkeley UNIX 4.3BSD',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5954,'BSD-based',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5955,'Bsdgames',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5956,'Net/2',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5957,'Bsd',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5958,'*BSD',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5960,'BSD (operating system)',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5962,'BSD UNIX',6,579,'also_known_as'); -INSERT INTO entity_mentions VALUES(5965,'TrustedBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5966,'Freebsd',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5967,'FBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5968,'Free BSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5969,'FreeBSD 8',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5970,'NanoBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5971,'Linuxulator',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5972,'FreeBSD Project',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5973,'FREEBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5974,'FreeBSD kernel',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5975,'FreeBSD 5.0',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5976,'Free bsd',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5978,'Sun os',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5979,'SunOS Unix',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5980,'Sunos',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5981,'SunOS 4.1',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5982,'Sun OS',6,448,'also_known_as'); -INSERT INTO entity_mentions VALUES(5984,'Hewlett Packard Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5985,'HP/UX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5986,'Hewlett-Packard UniX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5987,'Hewlett Packard-Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5988,'Hpux',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5989,'Hewlett-Packard Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5991,'Hewlett-Packard UNIX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5992,'Hewlett Packard UniX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5993,'Hewlett Packard UNIX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5995,'MS Windows',6,580,'also_known_as'); -INSERT INTO entity_mentions VALUES(5997,'Apptimum',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5998,'Windows Operating System',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5999,'Windows OS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6000,'Windows 365',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6001,'Windows the operating system',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6002,'Windows (Operating System)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6003,'WINDOWS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6004,'Windows (OS)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6005,'Microsoft windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6006,'MS-Windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6007,'Windows operating system',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6009,'Mswin',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6010,'Microsoft windows os',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6011,'MICROSOFT WINDOWS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6012,'Widnows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6013,'Windwos',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6014,'Windows (operating system)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6015,'MSWindows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6016,'Alliance OS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6017,'Windows®',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6019,'Ms windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6020,'Windows os',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6021,'MsWindows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6022,'Windows (Operating system)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6023,'32-bit Windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6024,'Microsoft windows operating system',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6025,'Windows Microsoft',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6026,'Freedows OS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6027,'MSWin',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6028,'Windows computers',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6042,'Windows PC',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6052,'PC Windows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6063,'Windows Storage Server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6064,'Microsoft Windows Server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6065,'Windows Web Edition',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6066,'Windows server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6067,'Windows Server 200x',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6068,'Windows Server 2022',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6069,'Microsoft Windows server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6070,'Fedora Rawhide',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6071,'Linux fedora',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6072,'Fedora (OS)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6073,'Fedora AOS',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6074,'Fedora Extras',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6075,'Fedora (GNU/Linux distribution)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6076,'Fedora Core Linux',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6077,'Fedora Workstation',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6078,'Fedora OS',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6079,'Fedora (linux distribution)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6080,'COPR (Fedora)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6081,'Rawhide (operating system)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6082,'Fedora linux',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6083,'Fedora Robotics',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6084,'Cool Other Package Repositories',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6085,'Fedora Linux',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6086,'Fedomatix',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6087,'Fedora (Operating System)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6088,'Rawhide (software)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6089,'Eeedora',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6090,'Fedora operating system',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6091,'Fedora (software)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6092,'Fedora Core',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6093,'Fedora Cloud',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6094,'Rawhide (computing)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6095,'Fedora IoT',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6096,'Fedora Linux Swap',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6097,'Fedora (Linux)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6098,'Fedora Modular Server',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6099,'Fedora (Linux distribution)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6100,'Fedora CoreOS',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6101,'Fedora 10',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6102,'Fedora Silverblue',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6103,'Fedora Atomic Host',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6104,'Fedora spin',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6105,'Fedora Server',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6106,'EPEL',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6107,'Fedora LXQt',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6108,'Fedora core',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6109,'Linux|Amazon Linux',6,454,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6111,'Microsoft Exchange Server|Veeam Explorer',5,464,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6112,'Data Transformation Service',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6113,'DTS package',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6114,'DTS Package',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6115,'Data transformation service',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6116,'DTS Packages',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6117,'DTS Tasks',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6118,'OLAP Services',5,468,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6119,'ADOMD.NET',5,468,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6121,'SSIS package',5,470,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6122,'SSMS',5,471,'also_known_as'); -INSERT INTO entity_mentions VALUES(6123,'SSMSE',5,471,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6124,'Management studio',5,471,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6127,'SQL Reporting Services',5,473,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6128,'Sql server reporting services',5,473,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6129,'Spatial Data Option',5,475,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6130,'GeoRaster',5,475,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6131,'Oracle Spatial',5,475,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6133,'Sqlplus',5,478,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6135,'Run-time library',7,482,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6136,'.NET Framework|log4net',7,483,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6137,'Windows Communications Foundation',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6138,'Indigo Application Server',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6139,'Windows communication foundation',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6141,'Windows Communication Framework',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6142,'Indigo (messaging system)',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6143,'Microsoft Indigo',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6144,'WF4',7,486,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6145,'Workflow Foundation',7,486,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6146,'Windows Overflow Foundation',7,486,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6147,'Windows.Forms',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6148,'Winforms',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6149,'Windows Forms control',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6150,'WindowsForms',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6151,'Windows Forms application',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6153,'ActiveX Data Object',7,488,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6154,'Active X Data Objects',7,488,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6155,'Msado',7,488,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6156,'Jboss seam',7,492,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6157,'JBoss SEAM',7,492,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6158,'Seam framework',7,492,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6159,'JBoss application server',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6161,'JBoss AS',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6162,'Jbossas',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6163,'Jboss as',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6164,'Jboss',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6165,'JBossWS',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6168,'ABAP Objects',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6169,'SAP ABAP',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6170,'Abap Objects',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6171,'ABAP/4',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6172,'Abap IV',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6173,'Abap',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6174,'.NET SDK',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6175,'Dot NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6176,'Microsoft net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6177,'Net Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6178,'Dotnet framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6179,'Netfx',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6180,'Dot Net Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6181,'Dot net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6182,'.NET Enterprise Server',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6183,'.NET framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6184,'NetFX',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6185,'Microsoft .NET framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6186,'Microsoft''s .NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6187,'.NET Server',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6188,'.Net Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6190,'.NET Services',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6191,'.NET platform',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6192,'.Net (programming language)',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6193,'Microsoft .NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6194,'.net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6195,'NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6196,'Active Directory Services',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6197,'Likewise Open',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6198,'Active directory object',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6199,'AD/LDS',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6200,'Active Directory Schema',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6201,'AD DS',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6202,'Microsoft Active Directory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6203,'NT Directory Service',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6204,'Active Directory Site',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6205,'ActiveDirectory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6206,'Active directory authentication module',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6207,'Active Directory Domain Services',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6208,'Active directory objects',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6209,'Active directory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6210,'Micorsoft Active Directory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6211,'Active Directory Service Interfaces',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6212,'Active Directory Service',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6213,'Active Directory Directory Services',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6214,'Microsoft Active Direcory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6215,'Domain tree',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6216,'Active Directory Application Mode',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6217,'AD LDS',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6218,'ASP programming language',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6220,'ASP3',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6221,'Apache::ASP',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6222,'Active server pages',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6224,'Asp Apache',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6225,'Active X',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6226,'ActiveX Control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6227,'Activex',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6228,'ActiveX client',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6229,'ActiveX Object',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6230,'ActiveX control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6231,'ActiveX component',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6232,'MFC ActiveX Control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6233,'Active x',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6234,'ActiveX server',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6235,'Active-x',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6236,'Activex control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6237,'Apache Cordoba',10,501,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6238,'Apache Callback',10,501,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6239,'Customer Information Control System',10,502,'also_known_as'); -INSERT INTO entity_mentions VALUES(6240,'CICS Transaction Server',10,502,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6241,'Docker software',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6242,'Docker (Linux container engine)',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6243,'Libcontainer',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6244,'Dockerfile',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6245,'Docker Toolbox',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6246,'Shockwave Flash',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6247,'UIRA',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6248,'Flash MX',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6249,'Flash CS3',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6250,'Futuresplash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6251,'Adobe Flash CS4',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6252,'Flash 8',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6253,'Flash mx 2004',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6254,'Flash (software)',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6255,'FutureSplash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6256,'Macromedia Flash Remoting',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6257,'Macromedia flash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6258,'Flash programming',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6259,'Adobe Flash animation',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6260,'Flash 6',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6261,'Adobe flash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6262,'Adobe Flash Platform',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6263,'Macromedia Flash Professional 9',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6264,'F4L',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6265,'Flash components',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6266,'Flash 10',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6267,'F4l',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6268,'Flash 9',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6269,'Qflash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6270,'Flash mx',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6273,'NodeJs',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6274,'Node js',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6275,'Node.JS',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6277,'Iojs',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6278,'Io.js',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6279,'NodeJS',10,507,'also_known_as'); -INSERT INTO entity_mentions VALUES(6280,'Action Web Service',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6281,'Rubyonrails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6282,'Ruby on Яails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6283,'Ruby on rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6284,'Action Mailer',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6285,'Ruby on Iaails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6286,'Rails framework',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6287,'Ruby on Rails (web framework)',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6288,'Ruby On Rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6289,'Ruby-on-rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6290,'Ruby with rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6293,'Application management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6294,'Application life-cycle management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6295,'Integrated application lifecycle management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6296,'Software Lifecycle Management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6297,'Assembly Language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6298,'Assembler (computer programming)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6299,'Meta-assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6300,'Op code mnemonic',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6301,'Cross-assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6302,'Assembly languages',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6303,'Programming language/assembly',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6304,'Assembly language assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6305,'Two-pass assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6306,'Cross assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6307,'Assembly code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6308,'Assembler code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6309,'Assembler language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6310,'Assembler program',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6311,'Assembly language macros',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6312,'Mnemonics (assembler)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6313,'ARM Assembly Language Programming',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6314,'Extended mnemonics',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6315,'Mnemonics (assembly language)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6316,'Symbolic machine code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6317,'Assembly programming language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6318,'Assembly Programming System',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6319,'Assembler (programming language)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6320,'Symbolic Machine Code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6321,'Mnemonic (assembly language)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6322,'Macro assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6323,'Assembler (computing)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6324,'Assembly file',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6325,'Mnemonic (assembler)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6326,'Assember language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6327,'Assembler for an assembly language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6328,'Assembler programming',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6329,'Macroassembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6330,'Assembler directive',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6331,'Assembly programming',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6332,'Opcode mnemonics',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6333,'Assembly time',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6335,'Cgi script',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6336,'CGI script',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6337,'Common gateway interface',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6340,'Interface ID',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6341,'ActiveX application',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6342,'COM/ActiveX',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6343,'Multi Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6344,'COM object',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6345,'Neutral Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6346,'COM server',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6347,'Component object model',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6348,'Single-Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6349,'ActiveX script',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6350,'Single Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6351,'COM and OLE',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6352,'Microsoft Component Object Model',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6353,'Single-threaded apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6355,'Apartment model',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6356,'Multi-Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6358,'Portable Object Adapter',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6359,'Object Management Architecture',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6360,'Portable interceptors',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6361,'OMG IDL',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6362,'Common object request broker architecture',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6363,'VMCID',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6364,'Incarnation (CORBA)',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6366,'Corbaloc',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6367,'CORBA Component Model',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6368,'Servant (CORBA)',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6369,'Corba',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6370,'CORBA architecture',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6373,'DDBMS',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6374,'Enterprise database management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6375,'Distributed data base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6376,'Database management system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6377,'Database Management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6378,'Database query',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6379,'DBMSs',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6380,'Research database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6381,'Database management software',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6382,'Database (computing)',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6383,'Distributed Database Management System',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6384,'Database instance',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6385,'Database management program',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6386,'DataBase',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6387,'Library database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6388,'Database system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6389,'Database management systems',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6390,'Database/Applications',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6391,'Data Base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6392,'Distributed database management system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6393,'Database Management System',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6394,'Database manager',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6395,'Database programming',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6396,'Database software',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6397,'Public database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6398,'Distributed databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6399,'Dbms',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6400,'Forensic database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6401,'Data base management system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6402,'Databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6403,'Electronic data processing database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6404,'Database management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6405,'Computer database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6406,'Data-base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6407,'Data bases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6408,'DBMS',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6409,'Computer Databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6410,'Database System',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6411,'Database development',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6412,'Numeric database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6413,'DB file',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6414,'Scientific database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6415,'Database Manager',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6416,'Database systems',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6417,'Database information system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6418,'Data base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6419,'D-base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6420,'Database backend',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6421,'General-purpose DBMS',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6422,'Public databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6423,'Db management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6424,'EDI Translation Software',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6426,'ANSI ASC X.12',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6427,'X.12',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6428,'Web-servers',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6429,'Web Servers',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6430,'Webserver',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6432,'Www server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6433,'Web-server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6434,'HTTP web server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6436,'Web servers',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6437,'WWW server',1,522,'also_known_as'); -INSERT INTO entity_mentions VALUES(6438,'HTTP server',1,522,'also_known_as'); -INSERT INTO entity_mentions VALUES(6439,'Jdom',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6440,'Java object model',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6441,'JSR 102',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6442,'Java Document Object Model',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6443,'Ldap',1,524,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6444,'Eldap',1,524,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6445,'LDAPS',1,524,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6447,'Database driver',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6448,'ODBC driver',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6449,'ODBC Driver',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6450,'Open DataBase Connectivity',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6451,'OBDC',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6452,'Odbc',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6453,'Open database connectivity',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6456,'Order management',1,526,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6459,'REST API',1,529,'also_known_as'); -INSERT INTO entity_mentions VALUES(6462,'REST Architecture',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6463,'REST-SST',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6464,'RESTful web service',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6465,'REST interface',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6466,'RESTFul',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6467,'RESTfully',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6468,'Rest interface',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6469,'Restful interface',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6470,'RESTful API',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6471,'Restful web service',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6472,'Restful',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6473,'Restful application',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6474,'RESTful',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6475,'SOA Lifecycle',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6476,'SOA environment',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6477,'Service Oriented Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6478,'Endpoint computing',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6479,'Service orientated architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6480,'Soba (computing)',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6481,'Broker (service-oriented architecture)',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6483,'Service-oriented business application',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6484,'Service Oriented Computing',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6485,'Service-oriented Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6486,'Service-oriented architectures',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6487,'Service oriented architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6488,'Service Orientated Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6489,'Service-orientated architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6490,'Service-Orientated Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6491,'Service Oriented Architectures',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6493,'SOAP request',1,531,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6494,'SOAP (protocol)',1,531,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6495,'Soap service',1,531,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6496,'Structured Query Language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6497,'SQL script',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6498,'ANSI SQL',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6499,'SQL Servers',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6500,'Procedural SQL',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6501,'Structured query language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6502,'SQL language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6503,'Distributed SQL processing',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6504,'SQL programming language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6505,'Transaction Control Language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6506,'SEQUEL',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6507,'SQL (programming language)',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6508,'SQL database',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6509,'Structure Query Language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6510,'Sql',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6511,'Yaml',1,533,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6512,'Yet Another Markup Language',1,533,'also_known_as'); -INSERT INTO entity_mentions VALUES(6513,'YAML Ain''t Markup Language',1,533,'also_known_as'); -INSERT INTO entity_mentions VALUES(6514,'Model',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6515,'Model-view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6516,'Model view controller triad',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6517,'controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6518,'view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6519,'Model-template-view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6520,'Model–View–Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6521,'Model View Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6522,'MVC controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6523,'View (MVC)',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6524,'Model-View-Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6525,'Controller (MVC)',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6526,'MVC Design Pattern',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6527,'MVC architecture',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6528,'Model-view controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6529,'Model-Template-View',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6530,'MVC Pattern',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6531,'Model-view-controller design pattern',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6532,'Model-View-Controller paradigm',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6533,'Model view controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6534,'Model/View/Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6535,'MVC view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6536,'MVC model',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6537,'Model (MVC)',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6538,'Model-view-controller',1,574,'also_known_as'); -INSERT INTO entity_mentions VALUES(6539,'Application server computing',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6541,'Mobile App Server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6542,'Application servers',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6543,'Enterprise application server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6544,'Java application server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6545,'Appserver',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6546,'App server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6547,'Web application server',1,535,'also_known_as'); -INSERT INTO entity_mentions VALUES(6548,'Cloud hosting',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6549,'Cloud architecture',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6550,'Cloud service',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6551,'IoT Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6552,'Cloud-hosted',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6553,'Cloud vendor',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6554,'Cloud Provider Interface',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6555,'Cloud transformation',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6556,'XaaS',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6557,'Cloud computing platform',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6558,'Cloud computing vendor',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6559,'Cloud Computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6560,'Cloud-based',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6561,'Cloud provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6562,'Could computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6563,'Cloud computing provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6564,'Computing cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6565,'Computing in the cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6566,'Communication as a service',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6567,'Cloud infrastructure',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6568,'Hybrid cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6569,'Private cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6570,'Cloud Technology',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6571,'Cloud client',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6572,'Cloud vendors',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6573,'Cloud networking',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6574,'Cloud Hosting',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6575,'Remote computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6576,'Private Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6577,'Computing-in-the-cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6578,'Cloud hardware',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6579,'Cloud computer',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6580,'Cloud technology',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6581,'Public Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6582,'Cloud processing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6583,'Burst computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6584,'Member Only Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6585,'Content Marketing Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6586,'Cloud computing user',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6587,'Cloud Applications',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6588,'Online software',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6589,'Cloud Software',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6590,'Cloud services provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6591,'Computer cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6592,'Cloud-computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6593,'Cloud distribution',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6594,'Public cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6595,'Cloud services',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6596,'Cloud-based computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6597,'Cloud Service',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6598,'Cloudware',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6599,'EaaS',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6600,'Cloud service provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6601,'Cloud software',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6602,'Cloud user',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6603,'Cloud (computing)',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6604,'Cross-Platform Hybrid Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6605,'Cloud Infrastructure',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6606,'Cloud (computers)',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6607,'Hybrid Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6608,'Cloud standards',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6609,'Cloud users',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6610,'Cloud clients',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6611,'Cloud computing platforms',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6612,'Enterprise Cloud Computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6613,'Dynamic Provisioning Environment',1,538,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6615,'Workgroup File server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6616,'Fileserver',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6617,'File host',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6618,'Storage server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6620,'Workgroup file server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6621,'File Server Solution',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6622,'Nominal ledgers',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6624,'Generalledger',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6625,'General ledgers',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6626,'Nominal ledger',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6635,'HTTP daemon',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6641,'IXP',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6642,'Internet Exchange',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6643,'Internet exchange',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6644,'Internet Exchange Point',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6645,'IMAP server',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6646,'DIMAP',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6647,'Interactive Mail Access Protocol',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6648,'IMAP4',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6649,'IMAP3',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6650,'Imapd',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6651,'IMAPv4',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6652,'Imaps',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6653,'IMAPS',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6654,'Internet message access protocol',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6656,'Javascript Object Notation',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6657,'Json',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6658,'JSONNP',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6659,'Internet JSON',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6660,'JSON Schema',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6661,'JSON5',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6662,'I-JSON',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6663,'HJSON',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6664,'JavaScript Object Notation',1,548,'also_known_as'); -INSERT INTO entity_mentions VALUES(6665,'Mainframe computers',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6666,'Mainframe',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6667,'Main frame',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6668,'Big-iron',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6669,'MainFrame',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6670,'Mainframe computing',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6671,'Mainframe Computer',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6672,'Main frame computer',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6673,'Mainframes',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6674,'Big iron (computing)',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6675,'Main Frame Computer',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6676,'Main-frame',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6677,'Mainframe server',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6679,'Manufacturing execution systems',1,553,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6680,'Manufacturing Execution Systems',1,553,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6682,'Software as a secure service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6683,'Saasworld',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6684,'Software as service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6685,'SasS',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6686,'Software-As-A-Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6687,'Software-as-a-service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6688,'OpenSaaS',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6689,'Software plus services',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6690,'Software-as-a-Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6691,'Software As A Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6692,'Software as a Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6693,'Software as a sevice',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6694,'Cloud application',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6695,'SaaSS',1,556,'also_known_as'); -INSERT INTO entity_mentions VALUES(6697,'Storage area networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6698,'Storage Area Networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6699,'Storage network',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6700,'Distributed storage area networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6702,'Sanoip',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6703,'SANoIP',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6704,'Storage area networking',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6705,'San server',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6706,'SAN (computing)',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6707,'Storage Area Network(SAN)',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6708,'Centralized storage area networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6709,'Storage layer',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6711,'Storage networking',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6712,'Online desktop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6713,'WebTop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6714,'Cloud desktop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6716,'Web Desktop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6717,'Anonymous Surfing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6718,'Proxy IP address',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6719,'Application layer proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6720,'Caching proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6721,'Translation proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6722,'Internet proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6723,'Anonymous server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6724,'Anonymous Web surfing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6725,'Proxyserver',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6726,'Web Proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6727,'Proxy Bouncing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6728,'Proxifier',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6729,'Http proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6730,'Proxy chaining',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6731,'Suffix proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6732,'Anonymity network',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6733,'Application-layer proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6734,'CGI proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6735,'HTTP proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6736,'Free proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6737,'Proxy Website',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6738,'Intercepting proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6739,'HTTPS Proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6740,'Proxy chain',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6741,'Proxy IP',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6742,'Proxy gateway',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6743,'Web proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6745,'Web proxies',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6746,'Proxy servers',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6747,'Proxy bypass',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6748,'Anonymous proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6749,'Bypass (computing)',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6750,'Residential proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6751,'Transparent proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6752,'Myspace proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6753,'Split proxies',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6754,'Forward proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6755,'P roxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6756,'HTTP proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6757,'Proxy Sites',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6758,'SSL Proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6759,'Anonymous Web proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6760,'Server proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6761,'Tproxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6762,'Circumventor',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6763,'Caching proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6764,'Secure & Anonymous Internet Surfing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6765,'HTTP proxying',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6766,'Proxy filter',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6767,'Anonymous web proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6768,'Utility (computer science)',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6769,'Software utility',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6770,'Utility program',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6771,'Utility (software)',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6772,'Software utilities',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6773,'Utility Programs',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6774,'Utility (computing)',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6775,'Utility Software',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6776,'NetScaler',3,563,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6777,'Netscaler',3,563,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6778,'Oracle virtual machine',3,567,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6780,'ESX Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6781,'VMware ESXi Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6782,'VMware ESX Server 2.0',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6783,'VMWare ESX Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6784,'ESX Server 3i',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6785,'VMware ESX Server 3.0',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6786,'VMware ESX',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6787,'VMware ESXi (software)',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6790,'VMware ESX Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6791,'ESXI',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6793,'VMware GSX Server',3,569,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6794,'GSX Server',3,569,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6795,'VMWare Server',3,569,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6811,'Structured Programming Facility',2,223,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6812,'System Productivity Facility',2,223,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6813,'Program Development Facility',2,223,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6814,'Interactive System Productivity Facility',2,223,'also_known_as'); -INSERT INTO entity_mentions VALUES(6974,'Data Source Views',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7032,'ISO 14882',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7050,'Java Language Specification',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7057,'Java language specification',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7119,'OpenRsync',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7120,'Openbsd',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7121,'OpenCVS',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7122,'Opencvs',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7123,'Open bsd',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7124,'OpenBSD project',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7125,'Open BSD',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7126,'OpenBSD Project',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7127,'Obsd',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7128,'Openrsync',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7129,'VSE/SP',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7130,'Z/VSE (operating system)',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7131,'VSE/ESA',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7132,'Z/VSE',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7140,'ASP Hints',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7143,'MSDOS',6,593,'also_known_as'); -INSERT INTO entity_mentions VALUES(7146,'MS-DOS 1.51',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7147,'Microsoft Arabic MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7148,'HP MS-DOS 3.22R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7149,'MS-DOS 3.31',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7150,'MS-DOS 5.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7151,'MS-DOS 3.3a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7152,'MS-DOS 3.3A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7153,'Ms-dos',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7154,'TI MS-DOS 2.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7155,'MS-DOS 3.30',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7156,'MS-DOS 1.52',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7157,'Ms-Dos',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7158,'TeleVideo Personal Computer DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7159,'MSN-DOS Prompt',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7160,'MS-DOS 2.5',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7161,'AST Premium Exec DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7162,'Texas Instruments MS-DOS 2.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7163,'MS-DOS 1.50',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7164,'MS-DOS 1.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7165,'Altos MS-DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7166,'Microsoft Hebrew MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7167,'MS-DOS 3.22R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7168,'MS-DOS 3.4',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7169,'MSdos',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7170,'HDOS (Microsoft)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7171,'MS-DOS 3.21R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7172,'Microsoft MS-DOS 3.30A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7173,'Compaq MS-DOS 3.31',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7174,'TeleVideo PC DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7175,'AST Premium Exec MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7176,'NCR-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7177,'MS-DOS 7.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7178,'Microsoft ADOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7179,'MS-DOS 1.23',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7180,'Hebrew MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7181,'MS-DOS 2.25',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7182,'MS-DOS 3.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7183,'ADOS 5.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7184,'Microsoft HDOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7185,'MS-DOS 2.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7186,'MS-DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7187,'MS-DOS Mobile',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7188,'MS-DOS 2.10',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7189,'Microsoft HDOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7190,'MS-DOS 1.27',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7191,'MS-DOS 5.01',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7192,'MS-DOS 1.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7193,'MS-DOS 8.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7194,'Tandy MS-DOS 2.11R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7195,'MS-DOS 6.x',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7196,'MS-DOS 2.05',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7197,'MS-DOS 3.30+',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7198,'MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7199,'HDOS (MS-DOS)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7200,'MS/DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7201,'MS-DOS 1.1',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7202,'MS-DOS 2.50',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7203,'Microsoft Arabic MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7204,'MS-DOS 3.1',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7205,'MS-DOS 1.14',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7206,'MS-DOS 2.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7207,'MS-DOS 3.3R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7208,'TeleVideo Personal Computer DOS 2.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7209,'ADOS (Microsoft)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7210,'MS-DOS 3.40',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7211,'MS-DOS 2.13',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7212,'TeleVideo PC DOS 2.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7213,'Microsoft Arabic MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7214,'AST Premium Exec MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7215,'Access DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7216,'MS-DOS 3.30a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7217,'MS-DOS 2.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7218,'PC MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7219,'MS-DOS 3.30A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7220,'TI MS-DOS 3.30R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7221,'MS-DOS 6',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7222,'MS-DOS 5',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7223,'Microsoft MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7224,'MS-DOS 1.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7225,'MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7226,'ADOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7227,'Texas Instruments MS-DOS 3.3R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7228,'AST MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7229,'Microsoft HDOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7230,'TI MS-DOS 3.3R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7231,'MS-DOS 4.00 (IBM-developed)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7232,'MS-DOS 1.22',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7233,'MS-DOS 1.53',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7234,'ADOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7235,'MS-ROMDOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7236,'MS-DOS 3.25',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7237,'Hebrew MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7238,'MS-DOS 1.40',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7239,'MS-DOS 3.30R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7240,'AST Premium Exec DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7241,'Texas Instruments MS-DOS 3.30R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7242,'MS-DOS 1.25',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7243,'MS-DOS 2.01',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7244,'MS-DOS 1.26',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7245,'MS-DOS 1.41',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7246,'MS-DOS 1.29',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7247,'TeleVideo Personal Computer DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7248,'MS-DOS 6.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7249,'Microsoft MS-DOS 3.30a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7250,'TeleVideo PC DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7251,'SB-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7252,'Microsoft Hebrew MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7253,'HDOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7254,'Hewlett-Packard MS-DOS 3.22R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7255,'MS-DOS 5.00A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7256,'MS-DOS 6.22',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7257,'Microsoft ADOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7258,'MS-DOS 3.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7259,'MS-DOS 2.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7260,'Hebrew MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7261,'MS-DOS 1',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7262,'COMPAQ-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7263,'MS-DOS 3.21',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7264,'MS-DOS 3.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7265,'Microsoft MS-DOS 3.3A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7266,'MS-DOS 3.22',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7267,'MS-DOS 6.21',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7268,'MS-DOS 3.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7269,'Microsoft ADOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7270,'MS-DOS 1.30',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7271,'MS-DOS 7.10',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7272,'MS-DOS 3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7273,'MS-DOS 4.01',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7274,'Altos MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7275,'Microsoft Hebrew MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7276,'Arabic MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7277,'MsDOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7278,'MS-DOS 1.28',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7279,'MS-DOS 2.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7280,'MS-DOS 1.13',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7281,'MS-DOS 1.24',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7282,'HDOS 5.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7283,'ADOS (MS-DOS)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7284,'MS-DOS 1.21',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7285,'MS-DOS 2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7286,'HDOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7287,'MS DOS Mobile',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7288,'MS-DOS 6.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7289,'MS-DOS 6.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7290,'MS-DOS 2.11R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7291,'MS-DOS 1.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7292,'MS-DOS 6.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7293,'Arabic MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7294,'Arabic MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7295,'MS-DOS 4.0 (IBM-developed)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7296,'Microsoft MS-DOS 3.3a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7297,'MS-DOS 1.54',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7298,'MS-DOS 3.10',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7335,'XML comment',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7339,'XML Specification',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7342,'XML vocabulary',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7345,'XML document',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7356,'DOS/VS',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7357,'IBM TOS/360',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7359,'Tape Operating System',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7360,'TOS/360',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7361,'SSX/VSE',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7362,'Z/TPF',6,598,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7363,'TPF/ESA',6,598,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7394,'T3Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7395,'DbKona',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7401,'Netbsd',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7402,'NETBSD',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7403,'Nbsd',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7404,'The NetBSD Foundation',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7405,'NBSD',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7406,'Net bsd',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7407,'Net BSD',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7408,'NetBSD kernel',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7438,'Web part packager',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7466,'Arbor Software',2,607,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7486,'credstash',2,612,NULL); -INSERT INTO entity_mentions VALUES(7487,'Snyk',2,613,NULL); -INSERT INTO entity_mentions VALUES(7488,'Akka',2,614,NULL); -INSERT INTO entity_mentions VALUES(7489,'Akka (software)',2,614,NULL); -INSERT INTO entity_mentions VALUES(7490,'Akka (toolkit)',2,614,NULL); -INSERT INTO entity_mentions VALUES(7491,'Varnish',8,615,NULL); -INSERT INTO entity_mentions VALUES(7492,'Varnish (Software)',8,615,NULL); -INSERT INTO entity_mentions VALUES(7493,'Varinish (Software)',8,615,NULL); -INSERT INTO entity_mentions VALUES(7494,'Varnish cache',8,615,NULL); -INSERT INTO entity_mentions VALUES(7495,'Varnishd',8,615,NULL); -INSERT INTO entity_mentions VALUES(7496,'Varnish cache server',8,615,NULL); -INSERT INTO entity_mentions VALUES(7497,'Varnish-cache.org',8,615,NULL); -INSERT INTO entity_mentions VALUES(7498,'Varnish (software)',8,615,NULL); -INSERT INTO entity_mentions VALUES(7499,'Datadog',10,616,NULL); -INSERT INTO entity_mentions VALUES(7500,'API',1,617,NULL); -INSERT INTO entity_mentions VALUES(7501,'Application-programming interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7502,'Application Programming Interfaces',1,617,NULL); -INSERT INTO entity_mentions VALUES(7503,'Application-level interaction',1,617,NULL); -INSERT INTO entity_mentions VALUES(7504,'Application Program Interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7505,'Api',1,617,NULL); -INSERT INTO entity_mentions VALUES(7506,'API documentation',1,617,NULL); -INSERT INTO entity_mentions VALUES(7507,'API Documentation',1,617,NULL); -INSERT INTO entity_mentions VALUES(7508,'Application Programming Interface (API)',1,617,NULL); -INSERT INTO entity_mentions VALUES(7509,'Application program interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7510,'Applications programming interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7512,'Hazelcast',10,618,NULL); -INSERT INTO entity_mentions VALUES(7513,'Nuxeo',10,620,NULL); -INSERT INTO entity_mentions VALUES(7514,'ArangoDB',2,621,NULL); -INSERT INTO entity_mentions VALUES(7515,'AQL (ArangoDB Query Language)',2,621,NULL); -INSERT INTO entity_mentions VALUES(7516,'AvocadoDB',2,621,NULL); -INSERT INTO entity_mentions VALUES(7517,'Eclipse Che',2,622,NULL); -INSERT INTO entity_mentions VALUES(7518,'Codenvy',2,622,NULL); -INSERT INTO entity_mentions VALUES(7519,'Amazon S3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7520,'Amazon Simple Storage Service',2,623,NULL); -INSERT INTO entity_mentions VALUES(7521,'Simple Storage Service',2,623,NULL); -INSERT INTO entity_mentions VALUES(7522,'S3.amazonaws.com',2,623,NULL); -INSERT INTO entity_mentions VALUES(7523,'Amazon-s3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7524,'AWS S3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7525,'Applications that use S3 API',2,623,NULL); -INSERT INTO entity_mentions VALUES(7526,'User:Leoinspace/Applications that use S3 API',2,623,NULL); -INSERT INTO entity_mentions VALUES(7527,'Amazon S3 server',2,623,NULL); -INSERT INTO entity_mentions VALUES(7528,'Amazon s3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7530,'S3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7531,'ClickHouse',2,624,NULL); -INSERT INTO entity_mentions VALUES(7532,'Clickhouse',2,624,NULL); -INSERT INTO entity_mentions VALUES(7533,'MinIO',2,625,NULL); -INSERT INTO entity_mentions VALUES(7534,'Minio',2,625,NULL); -INSERT INTO entity_mentions VALUES(7535,'Elasticsearch',2,626,NULL); -INSERT INTO entity_mentions VALUES(7536,'Compass Project',2,626,NULL); -INSERT INTO entity_mentions VALUES(7537,'ElasticSearch',2,626,NULL); -INSERT INTO entity_mentions VALUES(7538,'Shay Banon',2,626,NULL); -INSERT INTO entity_mentions VALUES(7539,'Logstash',2,626,NULL); -INSERT INTO entity_mentions VALUES(7540,'Elastic search',2,626,NULL); -INSERT INTO entity_mentions VALUES(7541,'Elastic Search',2,626,NULL); -INSERT INTO entity_mentions VALUES(7542,'Elasticsearch BV',2,626,NULL); -INSERT INTO entity_mentions VALUES(7543,'Elastic stack',2,626,NULL); -INSERT INTO entity_mentions VALUES(7544,'ELK stack',2,626,NULL); -INSERT INTO entity_mentions VALUES(7545,'es',2,626,NULL); -INSERT INTO entity_mentions VALUES(7546,'XtraDB',2,627,NULL); -INSERT INTO entity_mentions VALUES(7547,'Xtradb',2,627,NULL); -INSERT INTO entity_mentions VALUES(7548,'Xtra DB',2,627,NULL); -INSERT INTO entity_mentions VALUES(7549,'Percona XtraDB',2,627,NULL); -INSERT INTO entity_mentions VALUES(7550,'Keycloak',2,628,NULL); -INSERT INTO entity_mentions VALUES(7551,'JBoss SSO',2,628,NULL); -INSERT INTO entity_mentions VALUES(7552,'PicketLink (software)',2,628,NULL); -INSERT INTO entity_mentions VALUES(7553,'Grafana',2,629,NULL); -INSERT INTO entity_mentions VALUES(7554,'Mattermost',10,630,NULL); -INSERT INTO entity_mentions VALUES(7555,'Mattermost.com',10,630,NULL); -INSERT INTO entity_mentions VALUES(7556,'Cloud IAM',2,632,NULL); -INSERT INTO entity_mentions VALUES(7557,'Knative',10,633,NULL); -INSERT INTO entity_mentions VALUES(7558,'Apache Cassandra',2,634,NULL); -INSERT INTO entity_mentions VALUES(7559,'Apache cassandra',2,634,NULL); -INSERT INTO entity_mentions VALUES(7560,'Cassandra (database)',2,634,NULL); -INSERT INTO entity_mentions VALUES(7561,'Cassandra (software)',2,634,NULL); -INSERT INTO entity_mentions VALUES(7562,'Cassandra software',2,634,NULL); -INSERT INTO entity_mentions VALUES(7563,'Cassandra',2,634,NULL); -INSERT INTO entity_mentions VALUES(7564,'Kubeflow',10,635,NULL); -INSERT INTO entity_mentions VALUES(7565,'Qiskit',2,636,NULL); -INSERT INTO entity_mentions VALUES(7566,'QISKit',2,636,NULL); -INSERT INTO entity_mentions VALUES(7567,'Microsoft Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7568,'Windows Strata',2,637,NULL); -INSERT INTO entity_mentions VALUES(7569,'Windows Cloud',2,637,NULL); -INSERT INTO entity_mentions VALUES(7570,'Windows azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7571,'Windows Azure Fabric Controller',2,637,NULL); -INSERT INTO entity_mentions VALUES(7572,'Microsoft Windows Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7573,'Azure Services Platform',2,637,NULL); -INSERT INTO entity_mentions VALUES(7574,'Windows Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7575,'Azure machine learning studio',2,637,NULL); -INSERT INTO entity_mentions VALUES(7576,'Microsoft azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7577,'Ethereum Blockchain as a Service',2,637,NULL); -INSERT INTO entity_mentions VALUES(7579,'Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7580,'Strimzi',10,638,NULL); -INSERT INTO entity_mentions VALUES(7581,'Sematext',10,639,NULL); -INSERT INTO entity_mentions VALUES(7582,'Eclipse Ditto',2,641,NULL); -INSERT INTO entity_mentions VALUES(7583,'Zadara',2,643,NULL); -INSERT INTO entity_mentions VALUES(7584,'Zadara Storage',2,643,NULL); -INSERT INTO entity_mentions VALUES(7585,'Istio',2,644,NULL); -INSERT INTO entity_mentions VALUES(7586,'Vault',2,645,NULL); -INSERT INTO entity_mentions VALUES(7587,'Vault overseer',2,645,NULL); -INSERT INTO entity_mentions VALUES(7588,'Vault (disambiguation)',2,645,NULL); -INSERT INTO entity_mentions VALUES(7589,'Vaults',2,645,NULL); -INSERT INTO entity_mentions VALUES(7590,'Vault (software)',2,645,NULL); -INSERT INTO entity_mentions VALUES(7591,'HashiCorp Vault',2,645,NULL); -INSERT INTO entity_mentions VALUES(7592,'Apache Druid',2,646,NULL); -INSERT INTO entity_mentions VALUES(7593,'Druid (open-source data store)',2,646,NULL); -INSERT INTO entity_mentions VALUES(7594,'etcd',2,647,NULL); -INSERT INTO entity_mentions VALUES(7595,'Traefik',8,648,NULL); -INSERT INTO entity_mentions VALUES(7596,'IBM Cloud',2,649,NULL); -INSERT INTO entity_mentions VALUES(7597,'Bluemix',2,649,NULL); -INSERT INTO entity_mentions VALUES(7598,'IBM Bluemix',2,649,NULL); -INSERT INTO entity_mentions VALUES(7599,'OpenWhisk',2,649,NULL); -INSERT INTO entity_mentions VALUES(7600,'CockroachDB',2,651,NULL); -INSERT INTO entity_mentions VALUES(7601,'Cockroach DB',2,651,NULL); -INSERT INTO entity_mentions VALUES(7602,'User:Remote50/sandbox',2,651,NULL); -INSERT INTO entity_mentions VALUES(7603,'Cockroachlabs',2,651,NULL); -INSERT INTO entity_mentions VALUES(7604,'Cockroach Labs',2,651,NULL); -INSERT INTO entity_mentions VALUES(7605,'Jaeger',10,652,NULL); -INSERT INTO entity_mentions VALUES(7606,'NATURAL',9,653,'others'); -INSERT INTO entity_mentions VALUES(7607,'NPL',9,653,'others'); -INSERT INTO entity_mentions VALUES(7608,'Natural Programming Language',9,653,'others'); -INSERT INTO entity_mentions VALUES(7609,'ACUCOBOL-GT',9,654,'also_known_as'); -INSERT INTO entity_mentions VALUES(7610,'ACUCOBOL',9,654,'also_known_as'); -INSERT INTO entity_mentions VALUES(7611,'AcuCOBOL',9,654,'also_known_as'); -INSERT INTO entity_mentions VALUES(7612,'Ada',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7613,'MIL-STD-1815',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7614,'ISO/IEC 8652',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7615,'Ada 95',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7616,'Ada 83',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7617,'Ada 80',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7618,'Ada 2012',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7619,'Adaptable DAta BAse System',2,656,'also_known_as'); -INSERT INTO entity_mentions VALUES(7620,'ADABAS',2,656,'also_known_as'); -INSERT INTO entity_mentions VALUES(7621,'Adabas database',2,656,'also_known_as'); -INSERT INTO entity_mentions VALUES(7622,'Application Development System Online',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7623,'ADS/O',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7624,'ADS',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7625,'ADS/Online',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7626,'Ansible',2,5,'also_known_as'); -INSERT INTO entity_mentions VALUES(7627,'Ansible Software',2,5,'also_known_as'); -INSERT INTO entity_mentions VALUES(7628,'batch',9,659,'also_known_as'); -INSERT INTO entity_mentions VALUES(7629,'BAT file',9,659,'also_known_as'); -INSERT INTO entity_mentions VALUES(7630,'batch file',9,659,'also_known_as'); -INSERT INTO entity_mentions VALUES(7631,'Windows PowerShell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7632,'PowerShell Core',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7633,'PS',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7634,'Power Shell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7635,'Monal Shell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7636,'Microsoft Shell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7637,'MSH',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7638,'COM+',9,661,'also_known_as'); -INSERT INTO entity_mentions VALUES(7639,'Microsoft Component Services',9,661,'also_known_as'); -INSERT INTO entity_mentions VALUES(7640,'COM Services',9,661,'also_known_as'); -INSERT INTO entity_mentions VALUES(7641,'DataFlex',9,662,'also_known_as'); -INSERT INTO entity_mentions VALUES(7642,'Dataflex',9,662,'also_known_as'); -INSERT INTO entity_mentions VALUES(7643,'Visual DataFlex',9,662,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7644,'DDS',9,663,'also_known_as'); -INSERT INTO entity_mentions VALUES(7645,'Data distribution service',9,663,'also_known_as'); -INSERT INTO entity_mentions VALUES(7646,'Forte 4GL',9,664,'also_known_as'); -INSERT INTO entity_mentions VALUES(7647,'Forte',9,664,'also_known_as'); -INSERT INTO entity_mentions VALUES(7648,'FoxPro',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7649,'Foxpro',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7650,'FoxPro 2',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7651,'FoxPro 26',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7652,'FoxPro 2.6',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7653,'FPU26',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7654,'IBM DB2 Purescale',2,666,'others'); -INSERT INTO entity_mentions VALUES(7655,'DB2 Purescale',2,666,'others'); -INSERT INTO entity_mentions VALUES(7656,'IDMS DB',2,667,'others'); -INSERT INTO entity_mentions VALUES(7657,'IDMS Database',2,667,'others'); -INSERT INTO entity_mentions VALUES(7658,'IDMS/DB Database',2,667,'others'); -INSERT INTO entity_mentions VALUES(7659,'IDMS/DB DML',9,668,'others'); -INSERT INTO entity_mentions VALUES(7660,'IDMS/DB Data Manipulation Language',9,668,'others'); -INSERT INTO entity_mentions VALUES(7661,'IDMS DML',9,668,'others'); -INSERT INTO entity_mentions VALUES(7662,'Jaguar',8,669,'others'); -INSERT INTO entity_mentions VALUES(7663,'EAServer',8,670,'also_known_as'); -INSERT INTO entity_mentions VALUES(7664,'Enterprise Application Server',8,670,'also_known_as'); -INSERT INTO entity_mentions VALUES(7665,'Sybase Enterprise Application Server',8,670,'also_known_as'); -INSERT INTO entity_mentions VALUES(7668,'Cassandra SGBD',2,634,'also_known_as'); -INSERT INTO entity_mentions VALUES(7669,'Netezza',4,672,'also_known_as'); -INSERT INTO entity_mentions VALUES(7670,'IBM Netezza',4,672,'also_known_as'); -INSERT INTO entity_mentions VALUES(7674,'OpenEdge Advanced Business Language',9,344,'also_known_as'); -INSERT INTO entity_mentions VALUES(7676,'Open Rapid Object Application Development',9,674,'also_known_as'); -INSERT INTO entity_mentions VALUES(7677,'Oracle Reports',2,675,'also_known_as'); -INSERT INTO entity_mentions VALUES(7678,'Oracle RPT',2,675,'also_known_as'); -INSERT INTO entity_mentions VALUES(7679,'Oracle Reports 1',2,675,'others'); -INSERT INTO entity_mentions VALUES(7680,'Oracle Reports 2.0',2,675,'others'); -INSERT INTO entity_mentions VALUES(7681,'Oracle Reports 2.5',2,675,'others'); -INSERT INTO entity_mentions VALUES(7682,'Oracle Reports 6i',2,675,'others'); -INSERT INTO entity_mentions VALUES(7683,'Oracle Reports 9i',2,675,'others'); -INSERT INTO entity_mentions VALUES(7684,'Oracle Reports 10g',2,675,'others'); -INSERT INTO entity_mentions VALUES(7685,'SAP Replication Server',2,676,'others'); -INSERT INTO entity_mentions VALUES(7686,'content tracker',2,677,'also_known_as'); -INSERT INTO entity_mentions VALUES(7687,'Git',2,677,'also_known_as'); -INSERT INTO entity_mentions VALUES(7688,'the stupid content tracker',2,677,'also_known_as'); -INSERT INTO entity_mentions VALUES(7689,'gitlab',2,678,'also_known_as'); -INSERT INTO entity_mentions VALUES(7690,'Virtual Storage Access Method',2,679,'also_known_as'); -INSERT INTO entity_mentions VALUES(7691,'VSAM',2,679,'also_known_as'); -INSERT INTO entity_mentions VALUES(7692,'BMS Map',9,689,'others'); -INSERT INTO entity_mentions VALUES(7693,'Basic Mapping Supprt',9,689,'others'); -INSERT INTO entity_mentions VALUES(7695,'DB400',2,690,'others'); -INSERT INTO entity_mentions VALUES(7696,'DB/400',2,690,'others'); -INSERT INTO entity_mentions VALUES(7697,'Integrated Language Environment',9,691,'also_known_as'); -INSERT INTO entity_mentions VALUES(7698,'ILE',9,691,'also_known_as'); -INSERT INTO entity_mentions VALUES(7699,'indexed sequential access method',2,693,'also_known_as'); -INSERT INTO entity_mentions VALUES(7700,'ISAM',2,693,'also_known_as'); -INSERT INTO entity_mentions VALUES(7701,'IBM ISAM',2,693,'others'); -INSERT INTO entity_mentions VALUES(7702,'Oracle RDS',2,694,'others'); -INSERT INTO entity_mentions VALUES(7703,'RDS Oracle DB',2,694,'others'); -INSERT INTO entity_mentions VALUES(7704,'Oracle RDS Database',2,694,'others'); -INSERT INTO entity_mentions VALUES(7705,'SAP IQ',2,695,'also_known_as'); -INSERT INTO entity_mentions VALUES(7706,'Sybase IQ',2,695,'also_known_as'); -INSERT INTO entity_mentions VALUES(7707,'SAP Sybase IQ',2,695,'also_known_as'); -INSERT INTO entity_mentions VALUES(7708,'z/Linux',2,437,'also_known_as'); -INSERT INTO entity_mentions VALUES(7709,'Linux on IBM Z',2,437,'also_known_as'); -INSERT INTO entity_mentions VALUES(7710,'Integrated Data Store (IDS)',2,692,'also_known_as'); -INSERT INTO entity_mentions VALUES(7711,'IDS',2,692,'also_known_as'); -INSERT INTO entity_mentions VALUES(7712,'IDS/I',2,692,'also_known_as'); -INSERT INTO entity_mentions VALUES(7713,'Springboot',12,399,'others'); -INSERT INTO entity_mentions VALUES(7714,'Apache Maven',2,697,'others'); -INSERT INTO entity_mentions VALUES(7715,'Maven',2,697,'also_known_as'); -INSERT INTO entity_mentions VALUES(7716,'BAL',9,698,'also_known_as'); -INSERT INTO entity_mentions VALUES(7717,'Basic Assembler Language',9,698,'also_known_as'); -INSERT INTO entity_mentions VALUES(7718,'Basic Assembly Language',9,698,'also_known_as'); -INSERT INTO entity_mentions VALUES(7719,'IBM Basic assembly language',9,698,'others'); -INSERT INTO entity_mentions VALUES(7720,'COM plus',9,661,'others'); -INSERT INTO entity_mentions VALUES(7721,'COM+ Events',9,661,'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1, 'DOT NET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2, '.NET 4.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3, 'Dot net - FW 4', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4, '.Net 4.7.1 Enterprise Lib', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5, '.Net 3.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6, '.NET4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7, '.NET Framework 4.x', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (8, 'Microsoft - Microsoft .NET Framework 2', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (9, 'Microsoft - Microsoft .NET Framework 3.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (10, '.NET 3.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (11, 'Dot Net Framework 3.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (12, '.NET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (13, '.NET 4', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (14, '.Net 4.5.2 Enterprise Lib', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (15, '.NET2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (16, 'DOTNET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (17, 'Microsoft .NET Release 1.1', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (18, '.Net 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (19, '.NET 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (20, '.Net Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (21, 'Microsoft .NET 4.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (22, '.net 2017', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (23, '.Net framework', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (24, 'Microsoft .NET Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (25, '.net 4.0 Framework', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (26, 'Microsoft.NET 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (27, '.Net 4.5.2', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (28, '.NET 4.6', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (29, 'Microsoft - Microsoft .NET Framework 4', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (30, '.NET4.6', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (31, 'Microsoft - Microsoft .NET Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (32, 'Dot Net Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (33, 'Microsoft - Microsoft .NET Framework 3', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (34, 'Microsoft - Microsoft .Net Framework 1', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (35, 'Microsoft .NET Release 4.6', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (36, '.net Framework 3.5 SP1', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (37, 'Microsoft.net', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (38, 'Microsoft .NET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (39, 'Microsoft .NET Release 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (40, 'Dot Net 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (41, 'Common Runtime Library', 7, 482, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (42, 'APACHE LOG4NET', 7, 483, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (43, 'LOG4NET', 7, 483, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (44, 'Magik', 7, 484, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (45, 'Magick.NET', 7, 484, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (46, 'WCF', 7, 485, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (47, 'Windows Communication Foundation', 7, 485, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (48, 'Windows Communication Foundation (WCF)', 7, 485, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (49, 'WWF', 7, 486, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (50, 'Windows Workflow Foundation (WF)', 7, 486, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (51, 'Windows Workflow Foundation', 7, 486, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (52, 'WinForms', 7, 487, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (53, 'Ejes', 2, 1, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (54, '(E)JES', 2, 1, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (55, '(UNIRITA) A-AUTO 7.2.2', 2, 2, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (56, 'A-AUTO', 2, 2, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (57, 'A-Auto Job Scheduling Software', 2, 2, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (58, 'Active Directoy', 10, 498, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (59, 'Active Directory (AD)', 10, 498, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (60, 'Active Server Page', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (61, 'ASPNet', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (62, 'Microsoft Active Server Pages 6.0', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (63, 'APSX', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (64, 'ASP .NET', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (65, 'Microsoft Active Server Pages', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (66, 'Microsoft ASP files', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (67, 'Active Server Pages (ASP)', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (68, 'ASP', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (69, 'Classic ASP', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (70, 'Classis ASP', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (71, 'ASP 3.0', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (72, 'ASP.NET', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (73, 'ASPX', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (74, 'ASP.NET 1.0.3705', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (75, 'ActiveX', 10, 500, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (76, 'ADO', 7, 488, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (77, 'Activiti', 2, 3, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (78, 'Adobe Acrobat Reader', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (79, 'Acrobat Reader', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (80, 'Adobe - Adobe Acrobat Reader DC 2019', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (81, 'Adobe Acrobat Reader DC 2019', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (82, 'Android', 6, 418, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (83, 'Android SDK', 6, 418, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (84, 'Andriod', 6, 418, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (85, 'ansible', 2, 5, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (86, 'Apache ActiveMQ', 2, 6, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (87, 'Apache Active Queue', 2, 6, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (88, 'MQ Apache Active Queue', 2, 6, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (89, 'Cordova', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (90, 'Cordova framework', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (91, 'Apache Cordova', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (92, 'cordova-android', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (93, 'Apache Hbase', 2, 7, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (94, 'Hbase', 2, 7, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (95, 'Hive', 2, 8, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (96, 'Apache Hive', 2, 8, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (97, 'Apache HTTP Server 2.0', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (98, 'Apache HTTP Server 2.2 (Linux)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (99, 'Apache HTTP Server 2.4 (Linux)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (100, 'APACHE HTTP SERVER VERSION 2.2.13', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (101, 'TS-Apache HTTP Server 2.4', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (102, 'Apache', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (103, 'Apache Web Server', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (104, 'Apache 2.4', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (105, 'Apache HTTP Server 2.0 (Solaris)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (106, 'APACHE HTTP SERVER VERSION 1.3', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (107, 'APACHE WEB SERVER VERSION 1.3.27', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (108, 'Apache WebServer', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (109, 'Apache HTTP Server 2.4', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (110, 'Apache 3', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (111, 'Apache Instance', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (112, 'Apache HTTP Server 2.0 (Linux)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (113, 'Apache 2.4 - 32 bit', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (114, 'Apache HTTP Server 2.2', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (115, 'Apache HTTP Server', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (116, 'Apache Kafka', 2, 9, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (117, 'kafka', 2, 9, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (118, 'Apache Lucene', 12, 375, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (119, 'Lucene', 12, 375, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (120, 'ServiceMix', 2, 10, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (121, 'Apache ServiceMix', 2, 10, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (122, 'Apache Solr', 2, 11, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (123, 'solr', 2, 11, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (124, 'Subversion', 2, 12, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (125, 'Apache Subversion', 2, 12, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (126, 'Subversion software', 2, 12, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (127, 'Tomcat 8', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (128, 'APACHE TOMCAT VERSION 6', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (129, 'Tomcat 3', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (130, 'Apache Tomcat 6 (Linux)', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (131, 'Apache Tomcat', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (132, 'Apache Tomcat 3 (Linux)', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (133, 'tomcat', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (134, 'Tomcat 3/4/5/6/7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (135, 'Apache Tomcat 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (136, 'Apache Software Foundation - Apache Tomcat 8.5', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (137, 'Tomcat 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (138, 'APACHE TOMCAT VERSION 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (139, 'Tomcat 6', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (140, 'Tomcat 8.0.33', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (141, 'Tomcat 7.0', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (142, 'Tomcat 9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (143, 'Tomcat 4', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (144, 'Apache Software Foundation - Apache Tomcat 9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (145, 'Apache Software Foundation - Apache Tomcat 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (146, 'Apache Tomcat 6', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (147, 'Apache Tomcat 8', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (148, 'Tomcat 8/9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (149, 'Apache Tomcat 8.5.15', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (150, 'Apache Tomcat 9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (151, 'Apache Software Foundation - Apache Tomcat 8', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (152, 'Apache Tomcat 1', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (153, 'Tomcat 5', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (154, 'Apache Tomcat 3', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (155, 'Apache Tomcat 8 (Linux)', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (156, 'APACHE TOMCAT VERSION 6.0', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (157, 'Apache Tomcat 5', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (158, 'Apache tomcat 9.0.12', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (159, 'Apache xerces', 12, 376, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (160, 'XERCES', 12, 376, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (161, 'Application Development Facility (ADF)', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (162, 'ADF', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (163, 'ADF (Application Development Facility)', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (164, 'Application Development Facility', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (165, 'ArcGIS Server 10.3.1', 8, 261, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (166, 'ArcGIS Server', 8, 261, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (167, 'Asterisk 1.8', 2, 14, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (168, 'Asterisk', 2, 14, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (169, 'AutoIt 3.3', 9, 299, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (170, 'AutoIt', 9, 299, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (171, 'AutoiIt', 9, 299, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (172, 'Automic - UC4', 2, 15, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (173, 'Automic Job Scheduler', 2, 15, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (174, 'Autosys', 2, 16, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (175, 'AWK', 9, 300, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (176, 'basic', 9, 301, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (177, 'WLS 10.2', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (178, 'BEA WebLogic Enterprise (WLE)', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (179, 'Oracle Weblogic 12.2.1.3.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (180, 'Oracle Weblogic 12c', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (181, 'Oracle Weblogic 12.2.1.2.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (182, 'BEA WLS', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (183, 'Weblogic 9.2.0.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (184, 'BEA WebLogic Server', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (185, 'Weblogic 12c', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (186, 'Oracle WebLogic Server 12', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (187, 'Weblogic 10.1 MP1', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (188, 'BEA WebLogic Server 8', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (189, 'Oracle WebLogic Server', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (190, 'WEBLOGIC-SERVER', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (191, 'Weblogic 12.2.1.2', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (192, 'Oracle WebLogic Server 12 (Linux)', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (193, 'Weblogic 12.2.1.3.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (194, 'WLE', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (195, 'Weblogic 10.3.0.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (196, 'Weblogic 12.1.3.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (197, 'Weblogic', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (198, 'Oracle WebLogic Server 10', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (199, 'ORACLE WEBLOGIC SERVER 10.3', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (200, 'Weblogic Server', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (201, 'Oracle Weblogic 8.1.1', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (202, 'Web Logic', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (203, 'Oracle Weblogic 12.x', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (204, 'BEA WEBLOGIC SERVER VERSION 7', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (205, 'Oracle Weblogic Server 12c', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (206, 'Weblogic 10.3.6.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (207, 'Oracle Weblogic 12.1.2', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (208, 'BEA WLE', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (209, 'WLS 10', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (210, 'WLS', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (211, 'WebLogic', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (212, 'ORACLE WEBLOGIC SERVER VERSION 10.3', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (213, 'Weblogic 12.2.1.1', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (214, 'BEA Weblogic', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (215, 'Oracle Weblogic 12.1', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (216, 'Weblogic 10', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (217, 'BeOS', 6, 419, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (218, 'Bluebeam Q', 2, 17, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (219, 'BMC Control-M CM For SAP 6.2', 2, 18, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (220, 'BMC Control-M', 2, 18, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (221, 'BMC Identity Management', 2, 19, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (222, 'IDM-BMC Identity Management', 2, 19, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (223, 'Borland Database Engine', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (224, 'Borland - BDE Administrator 1', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (225, 'Borland Database Engine (BDE)', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (226, 'Borland - BDE Administrator 5.2', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (227, 'brain script', 9, 302, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (228, 'BRAINScript', 9, 302, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (229, 'Business Intelligence and Reporting Tools', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (230, 'Actuate Report Server', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (231, 'BIRT', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (232, 'Business Intelligence and Reporting Tools (BIRT)', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (233, 'C', 9, 303, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (234, 'CSHARP', 9, 582, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (235, 'C# 3.0', 9, 582, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (236, 'C#', 9, 582, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (237, 'c-sharp', 9, 582, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (238, 'C+', 9, 583, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (239, 'C++', 9, 583, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (240, 'vc++', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (241, 'MSVC', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (242, 'Visual C++ 2008', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (243, 'Microsoft Visual C++', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (244, 'Visual C++', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (245, 'Microsoft - Microsoft Visual C++ 2008 Redistributable (x64) 9', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (246, 'vc', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (247, 'CA API Gateway', 4, 290, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (248, 'CA Gen 8', 2, 22, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (249, 'CA Gen', 2, 22, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (250, 'CA Technologies - Computer Associates Introscope 8.2', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (251, 'Introscope', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (252, 'CA Technologies - Computer Associates Introscope', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (253, 'CA Introscope', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (254, 'CA-Panvalet', 2, 24, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (255, 'Panvalet', 2, 24, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (256, 'Telon', 2, 25, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (257, 'CA-TELON', 2, 25, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (258, 'CSS 3', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (259, 'Style Sheet', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (260, 'Cascading Style Sheets', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (261, 'Cascading Style Sheets (CSS)', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (262, 'CSS', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (263, 'Bootstrap', 12, 377, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (264, 'Casegen', 2, 26, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (265, 'Chef Automate', 2, 27, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (266, 'CICS', 10, 502, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (267, 'Cisco AMP for Endpoints', 2, 28, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (268, 'Cisco Systems Inc. - Cisco AMP for Endpoints Connector 6.1', 2, 28, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (269, 'Cisco IOS', 6, 420, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (270, 'CiscoWorks', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (271, 'CISCO CISCOWORKS', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (272, 'CiscoWorks LAN Management Solution (LMS)', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (273, 'CiscoWorks LAN Management Solution', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (274, 'WinFrame', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (275, 'Citrix Virtual Apps', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (276, 'Citrix Managed Desktops', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (277, 'METAFRAME', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (278, 'XenApp', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (279, 'Citrix Metaframe', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (280, 'Citrix Server', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (281, 'Citrix Virtual Apps and Desktops', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (282, 'Presentation Server', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (283, 'NETSCALER-1.5', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (284, 'NETSCALER-11.', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (285, 'Citrix SD-WAN', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (286, 'NetScaler SD-WAN', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (287, 'Citrix NetScaler ADC', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (288, 'Citrix ADC', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (289, 'NetScaler ADC', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (290, 'NetScaler ADC VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (291, 'Citrix ADC VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (292, 'NetScaler VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (293, 'Citrix NetScaler VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (294, 'Citrix ADC BLX', 3, 565, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (295, 'NetScaler CPX', 2, 31, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (296, 'Citrix ADC CPX', 2, 31, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (297, 'Citrix ADC SDX', 4, 291, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (298, 'NetScaler SDX', 4, 291, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (299, 'Citrix ADC MPX', 4, 292, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (300, 'NetScaler MPX', 4, 292, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (301, 'Citrix Provisioning', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (302, 'Citrix Provisioning 2006', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (303, 'Citrix Provisioning Services', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (304, 'Provisioning Services 7.15.8', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (305, 'Citrix PVS', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (306, 'Clarify', 2, 33, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (307, 'Clear Basic', 5, 455, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (308, 'Clarify ClearBasic', 5, 455, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (309, 'Clarity LIMS', 2, 34, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (310, 'LabWare LIMS', 2, 35, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (311, 'Clipper', 9, 308, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (312, 'CLISTS', 9, 309, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (313, 'CLIST', 9, 309, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (314, 'COBOL II', 9, 594, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (315, 'COBOL', 9, 594, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (316, 'Cobol Assembler', 9, 594, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (317, 'IBM COGNOS BUSINESS INTELLIGENCE SERVER VERSION 10.2', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (318, 'IBM - COGNOS', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (319, 'IBM Cognos', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (320, 'Cognos', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (321, 'IBM Cognos ICM', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (322, 'Cold Fusion', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (323, 'Coldfusion Webserver', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (324, 'Coldfusion', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (325, 'ColdFus', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (326, 'CFML', 9, 311, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (327, 'ColdFusion Markup Language', 9, 311, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (328, 'ColdFusion Markup Language (CFML)', 9, 311, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (329, 'ConceptWave', 2, 38, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (330, 'CONNAPI', 2, 39, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (331, 'Sterling Connect', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (332, 'Connect Direct 4.5', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (333, 'IBM Sterling Connect:Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (334, 'Connect:Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (335, 'Connect Direct File agent', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (336, 'Connect Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (337, 'IBM Sterling Connect:Direct vX', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (338, 'Sterling Connect:Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (339, 'Connect Direct 4.5, 4.6', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (340, 'Connect Direct 4.6', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (341, 'Cormerstone', 2, 41, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (342, 'Cornerstone software', 2, 41, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (343, 'Cornerstone', 2, 41, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (344, 'Crystal Report', 2, 42, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (345, 'Crystal', 2, 42, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (346, 'Crystal Reports', 2, 42, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (347, 'DART', 6, 421, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (348, 'DL/I', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (349, 'Data Language/I', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (350, 'Data Language Interface (DL/I)', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (351, 'Data Language/One', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (352, 'Data Language/Interface', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (353, 'Dl1', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (354, 'Data Language Interface', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (355, 'DB2/400', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (356, 'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 v9.7 FP11 SB 37314', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (357, 'IBM - IBM DB2 Advanced Workgroup Server Edition OEM Limited Use 11.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (358, 'DB2 ESE 10.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (359, 'IBM - IBM DB2 Enterprise Server Edition - CPU Option 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (360, 'DB2 UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (361, 'DB2', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (362, 'DB2 V9', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (363, 'IBM DB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (364, 'DB2-UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (365, 'DB2 11.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (366, 'IBM-DB2-V9', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (367, 'IBM - IBM DB2 Advanced Enterprise Server Edition OEM Limited Use 11.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (368, 'IBM - IBM DB2 Personal Edition Product Trial 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (369, 'IBM - IBM DB2 Enterprise Server Edition - CPU Option 10.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (370, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.*', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (371, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (372, 'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 ESE v9.7 FP 11 Special Build 35826 37314', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (373, 'DB2/UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (374, 'IBM DB2 ENTERPRISE SERVER EDITION PVU OPTION 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (375, 'DB2 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (376, 'DB2 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (377, 'DB2 9.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (378, 'IBM - IBM DB2 UDB Enterprise Server Edition 8.2', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (379, 'DB2 for i', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (380, 'IBM - IBM DB2 Enterprise Server Edition OEM Limited Use 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (381, 'IBM - IBM DB2 Storage Optimization Feature 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (382, 'IBM - IBM DB2 Advanced Enterprise Server Edition PVU Option 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (383, 'UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (384, 'IBM - IBM DB2 Enterprise Server Edition Product Trial 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (385, 'DB2 ESE 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (386, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (387, 'IBM DB2', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (388, 'IBM - IBM DB2 Workgroup Server Edition Product Trial 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (389, 'Delphi', 9, 313, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (390, 'docker', 10, 503, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (391, 'Documentum D2', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (392, 'Documentum content server', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (393, 'Documentum', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (394, 'DOCUMENTUM-CS', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (395, 'DRUPAL', 2, 45, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (396, 'Easytrieve', 9, 314, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (397, 'EZTriev', 9, 314, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (398, 'Eztrieve', 9, 314, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (399, 'Eclipse', 2, 46, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (400, 'ATLAS Transformation Language', 5, 456, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (401, 'ATL', 5, 456, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (402, 'ATLAS Transformation Language (ATL)', 5, 456, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (403, 'Elastic (ELK) Stack', 2, 47, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (404, 'ELK', 2, 47, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (405, 'EMC Celerra', 11, 510, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (406, 'ETAP License Manager (LM)', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (407, 'ETAP Licensing Manager/TARO GJH', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (408, 'ETAP License Manager', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (409, 'ETAP License Manager GJH', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (410, 'PrestoSoft - ExamDiff Application 1.6', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (411, 'PrestoSoft - ExamDiff Application', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (412, 'ExamDiff', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (413, 'ExamDiff Application', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (414, 'Expect', 9, 315, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (415, 'Expect Scripts', 9, 315, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (416, 'eXtensible HyperText Markup Language (XHTML)', 9, 316, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (417, 'eXtensible HyperText Markup Language', 9, 316, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (418, 'XHTML', 9, 316, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (419, 'XML', 9, 596, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (420, 'Extensible Markup Language', 9, 596, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (421, 'Extensible Markup Language (XML)', 9, 596, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (422, 'MSXML', 9, 318, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (423, 'Microsoft - MSXML 4.0 SP2 4.2', 9, 318, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (424, 'Extensible Stylesheet Language', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (425, 'XSL', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (426, 'Extensible Stylesheet Language (XSL)', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (427, 'Extensible Stylesheet Language Transformations (XLST)', 9, 320, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (428, 'Extensible Stylesheet Language Transformations', 9, 320, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (429, 'XSLT', 9, 320, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (430, 'ServerCA Access GatewayF5', 2, 50, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (431, 'F5 Secure Web Gateway Services', 2, 50, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (432, 'Fabric OS', 6, 422, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (433, 'FabricOS', 6, 422, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (434, 'FileMaker Pro', 2, 51, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (435, 'FILEMAKER PRO 8.5', 2, 51, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (436, 'Flash', 10, 504, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (437, 'Flexnet 2016', 2, 52, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (438, 'FlexNet Manager Suite', 2, 52, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (439, 'FlexNet Manager Suite 2016', 2, 52, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (440, 'FOCUS', 9, 321, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (441, 'fortran', 9, 322, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (442, 'Rhino Software Inc - FTP Voyager 16.2', 2, 53, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (443, 'FTP Voyager', 2, 53, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (444, 'Genymotion', 2, 54, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (445, 'GlassFish', 8, 263, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (446, 'GlassFish Server 4 Open Source', 8, 263, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (447, 'GlassFish Server 4', 8, 263, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (448, 'GNU', 6, 423, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (449, 'Go', 9, 323, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (450, 'Chrome', 2, 55, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (451, 'Google Chrome', 2, 55, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (452, 'Google Chrome 76', 2, 55, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (453, 'GraphQL', 9, 324, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (454, 'EMC Greenplum', 2, 56, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (455, 'Groovy', 9, 325, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (456, 'Hadoop', 2, 57, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (457, 'HAProxy', 8, 264, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (458, 'HiveQL', 9, 326, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (459, 'HP aC++ compiler', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (460, 'HP C++', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (461, 'HP aC++', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (462, 'HP C/aC++', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (463, 'HP C++ 10.20', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (464, 'HPC 11.11', 2, 59, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (465, 'HP C/ANSI C compiler', 2, 59, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (466, 'HP C/ANSI C', 2, 59, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (467, 'HP Nonstop J06.20.00', 4, 293, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (468, 'HP Nonstop', 4, 293, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (469, 'HP Operations Orchestration (HPOO)', 2, 60, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (470, 'HP Operations Orchestration', 2, 60, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (471, 'HPOO', 2, 60, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (472, 'HPSA', 2, 61, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (473, 'HP Server Automation', 2, 61, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (474, 'HP Server Automation (HPSA)', 2, 61, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (475, 'HFS', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (476, 'www.rejetto.com - HttpFileServer 2.3', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (477, 'HTTP File Server', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (478, 'HttpFileServer', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (479, 'Hypertext Markup Language', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (480, 'HTML4', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (481, 'HTML', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (482, 'Hypertext Markup Language (HTML)', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (483, 'HTML5', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (484, 'IBM BigFix', 2, 62, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (485, 'IBM - IBM BigFix Platform', 2, 62, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (486, 'IBM BigFix Platform', 2, 62, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (487, 'IBM - IBM BigFix Platform Client Deploy Tool 9.5', 5, 457, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (488, 'Client Deploy Tool', 5, 457, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (489, '(IBM) IBM Business Monitor 8.5.6', 2, 63, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (490, 'IBM Business Monitor', 2, 63, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (491, 'IBM BPM', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (492, 'IBM Business Process Manager', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (493, 'IBM Business Process Manager 8.5.7.0', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (494, '(IBM) IBM Business Process Manager 8.5.6', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (495, 'IBM Business Process Manager 8.5.6.0', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (496, 'IBM Content Manager OnDemand', 2, 65, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (497, 'IBM Content Manager OnDemand (CMOD)', 2, 65, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (498, 'CMOD', 2, 65, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (499, 'Data Power', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (500, 'IBM DataPower Gateway', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (501, 'IDG.7.5.2.19hp', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (502, 'datapower-connector', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (503, 'FileNet', 2, 66, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (504, 'IBM FileNet', 2, 66, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (505, 'IBM FileNet P8 Platform', 2, 66, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (506, 'hlasm', 9, 328, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (507, 'IBM High Level Assembler', 9, 328, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (508, 'IBM High Level Assembler (HLASM)', 9, 328, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (509, 'IBM - IBM HTTP Server 6.1', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (510, 'IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (511, 'IBM - IBM HTTP Server 7', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (512, 'IBM - IBM HTTP Server 8.5', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (513, 'WebSphere and IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (514, 'WebSphere http', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (515, '(IBM) IBM HTTP Server 8.5', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (516, 'IBM HTTP Server', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (517, 'IBM HTTP SERVER 8', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (518, 'IBM HTTP Server 8.', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (519, 'IBM Websphere HTTP Server', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (520, 'IBM HTTP', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (521, 'WebSphere IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (522, 'WebSphere -IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (523, 'IBM HTTP SERVER 6.1', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (524, 'IBMi', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (525, 'IBM i', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (526, 'OS400 V7R1', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (527, 'OS400', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (528, 'OS/400', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (529, 'CLP', 9, 329, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (530, 'IBM i Control Language (CL)', 9, 329, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (531, 'IBM Informix-4GL', 9, 330, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (532, 'Informix 4GL', 9, 330, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (533, 'Informix-4GL', 9, 330, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (534, 'DATASTAGE', 2, 67, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (535, 'IBM InfoSphere DataStage', 2, 67, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (536, 'datastage 11.3', 2, 67, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (537, 'IBM Integration Bus 10.0', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (538, 'IBM Integration Bus v9', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (539, 'IBM Integration Bus 9.0', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (540, 'IBM Integration Bus', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (541, 'IIB', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (542, 'IBM Integration Bus v10', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (543, 'Extended Structured Query Language (ESQL)', 5, 458, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (544, 'ESQL', 5, 458, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (545, 'Extended Structured Query Language', 5, 458, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (546, 'IBM - IBM License Metric Tool and Tivoli Asset Discovery for Distributed', 2, 69, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (547, 'IBM License Metric Tool', 2, 69, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (548, 'Maximo', 2, 70, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (549, 'IBM Maximo 7.6', 2, 70, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (550, 'IBM Maximo', 2, 70, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (551, 'IBM Migration Utility', 2, 71, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (552, 'IBM WorkLight', 2, 72, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (553, 'IBM Mobile Foundation', 2, 72, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (554, 'Operational Decision Manager', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (555, 'ILOG JRules', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (556, 'Decision Server 8.0.1.0', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (557, 'IBM WebSphere ILOG Jrules', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (558, 'IBM Operational Decision Manager (ODM)', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (559, 'Decision Center 8.0.1.0', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (560, 'IBM Operational Decision Manager', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (561, 'IBM ODM', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (562, 'AS400', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (563, 'AS/400', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (564, 'IBM Power Systems', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (565, 'System p', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (566, 'System i', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (567, 'P-series', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (568, 'IBM iSeries/AS400 system Model 520', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (569, 'IBM - IBM Spectrum Scale Express Client 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (570, 'IBM Spectrum Scale Server', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (571, 'IBM Spectrum Scale', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (572, 'IBM - IBM Spectrum Scale Express Server 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (573, 'IBM - IBM Spectrum Scale Standard Server 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (574, 'IBM - IBM Spectrum Scale Express FPO 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (575, 'IBM Spectrum Scale FPO', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (576, 'IBM Spectrum Scale Client', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (577, 'IBM - IBM Spectrum Scale Standard FPO 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (578, 'IBM - IBM Spectrum Scale Standard Client 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (579, 'IBM Tivoli Asset Management', 2, 606, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (580, 'Tivoli Asset Management', 2, 606, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (581, 'Asset Discovery for Distributed', 5, 459, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (582, 'Tivoli Asset Discovery for Distributed', 5, 459, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (583, 'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - MS SQL Server Agent 6.3', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (584, 'IBM Tivoli Composite Application Manager', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (585, 'IBM - IBM Tivoli Composite Application Manager Agent for DB2 7.1', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (586, 'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - IIS server agent 6.3', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (587, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (588, 'IBM - IBM Tivoli Monitoring for Databases - DB2 Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (589, 'IBM Tivoli Monitoring', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (590, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.3', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (591, 'Tivoli Monitoring', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (592, 'Database MS SQL Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (593, 'Linux OS Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (594, 'Database DB2 Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (595, 'IBM - IBM Tivoli Monitoring for Databases - MS SQL Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (596, 'IBM - IBM Tivoli Monitoring - Linux OS Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (597, 'Windows OS Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (598, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (599, 'IBM Tivoli Storage Manager', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (600, 'IBM - IBM TSM FCM', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (601, 'Tivoli Storage Manager', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (602, 'IBM - IBM Tivoli Storage Manager', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (603, 'IBM Tivoli Storage Manager API', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (604, 'IBM - IBM Tivoli Storage Manager for Databases - Data Protection for Microsoft SQL 6.3', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (605, 'Databases Data Protection for Microsoft SQL', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (606, 'IBM - IBM Tivoli Storage Manager API 6.4', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (607, 'IBM - IBM Spectrum Protect Data Protection for Microsoft SQL Server 8.1', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (608, 'IBM Spectrum Protect Data Protection', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (609, 'TSM API', 5, 460, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (610, 'IBM - IBM Spectrum Protect API 7.1', 5, 460, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (611, 'IBM - IBM Spectrum Protect Client', 5, 461, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (612, 'TSM Client', 5, 461, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (613, 'IBM - IBM Tivoli Storage Manager Client', 5, 461, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (614, 'TSM Storage Agent', 5, 462, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (615, 'IBM - IBM Spectrum Protect Storage Agent 8.1', 5, 462, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (616, 'VSS Requestor', 5, 463, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (617, 'VSS Requestor configured 8.1', 5, 463, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (618, 'VSS Requestor 7.1', 5, 463, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (619, 'TWS-WS', 2, 79, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (620, 'Tivoli Workload Scheduler', 2, 79, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (621, 'IBM Tivoli Workload Scheduler (TWS)', 2, 79, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (622, 'IBM WebSphere Business Integration Adaptor', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (623, 'WebSphere Business Integration Adaptor', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (624, 'wbia 2.6', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (625, 'IBM WBIA 2.6.0.12', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (626, 'IBM Websphere MQ 7.1', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (627, 'MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (628, 'MQ 9.1', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (629, 'IBM WebSphere MQ Client 7.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (630, 'Websphere MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (631, 'MQ 7', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (632, 'MQ 6', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (633, 'MQ 9.0', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (634, 'MQ 5.3', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (635, 'MQ 7.01', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (636, 'MQ 7.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (637, 'MQSeries 8.0', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (638, 'IBM Websphere MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (639, 'IBM MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (640, 'IBM WEBSPHERE MQ SERVER 7.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (641, 'WSMQ 8.0', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (642, 'MQ 9.0.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (643, 'IBM WebSphere MQ Telemetry Service 7.5', 2, 82, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (644, 'IBM WebSphere MQ Telemetry', 2, 82, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (645, 'WTX', 2, 83, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (646, 'IBM WebSphere Transformation Extender (WTX)', 2, 83, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (647, 'IBM WebSphere Transformation Extender', 2, 83, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (648, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.6001.18000', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (649, 'IIS 7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (650, 'Internet Information Services (IIS)', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (651, 'Microsoft Internet Information Services 7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (652, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (653, 'Microsoft Internet Information Services', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (654, 'Microsoft Internet Information', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (655, 'IIS Express 8', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (656, 'Internet Information Services (IIS 6.0)', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (657, 'Microsoft IIS 8.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (658, 'IIS', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (659, 'IIS Express', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (660, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (661, 'Microsoft Internet Inf', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (662, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 5.1.2600.2180', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (663, 'TS-IIS Express 10', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (664, 'Microsoft Internet Informat', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (665, 'Microsoft IIS Webserver', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (666, 'IIS Server', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (667, 'Microsoft Internet Information Services 8.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (668, 'IIS Version 7', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (669, 'Microsoft Internet Information Services 8.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (670, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.3790.1830', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (671, 'IIS 8.5.9600.16386', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (672, 'IIS 7.x', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (673, 'IIS 7.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (674, 'IIS 10', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (675, 'Microsoft Internet Information Services 6.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (676, 'Internet Information Services (IIS 7.0)', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (677, 'Microsoft Internet Information Services 10.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (678, 'IIS 8.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (679, 'Microsoft - IIS Express 10', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (680, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.*', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (681, 'Microsoft IIS 7.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (682, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 8', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (683, 'IIS v 7.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (684, 'IIS 7.2.1952', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (685, 'Microsoft Internet Information Services 7.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (686, 'Microsoft IIS 8.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (687, 'IIS Web Server v6', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (688, 'IIS 8.x', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (689, 'IIS 8.0.1557', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (690, 'IIS 11', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (691, 'IIS 6.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (692, 'IIS Express 7', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (693, 'IIS 7.2.2', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (694, 'IIS Instance', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (695, 'Microsoft IIS 6.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (696, 'IIS Express 10', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (697, 'IIS Servers', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (698, 'MS-IIS', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (699, 'Internet Information Services (IIS 8.5)', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (700, 'IIS 8.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (701, 'Microsoft IIS 7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (702, 'IIS Version 8 64 bit', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (703, 'IIS 6', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (704, 'IIS7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (705, 'IEMT', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (706, 'Microsoft - IIS 6.0 Migration Tool 1', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (707, 'IIS Easy Migration Tool', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (708, 'Easy Migration Tool', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (709, 'Easy Migration Tool (IEMT)', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (710, 'IIS Easy Migration Tool (IEMT)', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (711, 'MS-ARR', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (712, 'Application Request Routing', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (713, 'ARR', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (714, 'Application Request Routing (ARR)', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (715, 'IIS Manager', 7, 491, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (716, 'IMS DB', 2, 84, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (717, 'IMS', 2, 84, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (718, 'Infozip 6', 2, 85, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (719, 'Infozip', 2, 85, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (720, 'Info-ZIP', 2, 85, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (721, 'Infobright Community Edition', 2, 86, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (722, 'Infobright Community Edition (ICE)', 2, 86, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (723, 'infobright-ce', 2, 86, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (724, 'informatica', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (725, 'Informatica PowerCenter', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (726, 'Informatica PowerCenter 10.2', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (727, 'Informatica Version 10.2.0 HotFix1', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (728, 'Informatica Power Center 8.6.1', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (729, 'ETL tool: Informatica', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (730, 'Informatica database server-mspr50', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (731, 'Informatica ETL', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (732, 'Informatica Power Center 9.6.1', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (733, 'Informatica PowerCenter 10.2-msprap150', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (734, 'ETL tool=Informatica', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (735, 'Ingres', 2, 88, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (736, 'INGRES DBM', 2, 88, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (737, 'Intel(R) Xeon(R) CPU E7- 4870 @ 2.40GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (738, 'intel(r) xeon(r) cpu e7- 4870 @ 2.40ghz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (739, 'Intel(R) Xeon(R) CPU E5530 @ 2.40GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (740, 'Intel(R) Xeon(R) CPU X7550 @ 2.00GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (741, 'Intel(R) Xeon(R) CPU E5-2648L v4 @ 1.80GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (742, 'Intel Xeon Processor', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (743, 'IMSVA 9.1', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (744, 'InterScan Messaging Security Virtual Appliance', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (745, 'InterScan Messaging Security Virtual Appliance (IMSVA)', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (746, 'IMSVA', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (747, 'iOS', 6, 425, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (748, 'Java 1.8', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (749, 'Java 7', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (750, 'Java on Weblogic server', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (751, 'Java', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (752, 'Java5', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (753, 'Java 6', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (754, 'Java 6.0', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (755, 'Java 7 Update 25', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (756, 'Java Scripting', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (758, 'Java (open source)', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (759, 'Java 5', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (760, 'Java 1.5', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (761, 'Java (1.6)', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (762, 'Java 1.8.0_92', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (763, 'Java 1.6', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (764, 'J2EE 6', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (765, 'Java (J2EE)', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (766, 'Oracle - Java Runtime Environment 11', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (767, 'JRE', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (768, 'Java Runtime', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (769, 'Oracle - Java Runtime Environment 8', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (770, 'Oracle - Java Runtime Environment 7', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (771, 'Java Runtime Environment (JRE)', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (772, 'Java Runtime 6', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (773, 'Camel', 12, 378, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (774, 'Apache Camel', 12, 378, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (775, 'SS7/CAMEL', 12, 378, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (776, 'Apache mmons-beanutils', 12, 379, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (777, 'Apache Commons BeanUtils', 12, 379, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (778, 'PDFBox', 12, 380, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (779, 'Apache PDFBox', 12, 380, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (780, 'PDFBox 1.6', 12, 380, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (781, 'Velocity', 12, 381, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (782, 'Apache Velocity', 12, 381, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (783, 'EclipseLink 2.6.4', 12, 382, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (784, 'EclipseLink', 12, 382, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (785, 'EJB', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (786, 'EJBS', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (787, 'Ejb 2.x', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (788, 'Enterprise JavaBeans (EJB)', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (789, 'Enterprise JavaBeans', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (790, 'JAVA-XSL', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (793, 'EZMorph', 12, 384, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (794, 'GWT', 12, 385, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (795, 'Google Web Toolkit', 12, 385, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (796, 'Google Web Toolkit (GWT)', 12, 385, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (797, 'Hibernate', 12, 386, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (798, 'IBM - IBM SDK 5.0 for Windows AMD/EMT 64', 12, 387, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (799, 'IBM SDK', 12, 387, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (800, 'Oracle - JDK/SDK', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (801, 'JDK 1.7.0', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (802, 'JDK', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (803, 'Oracle (Sun) JDK/JRE', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (804, 'JDK8', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (805, 'JDK 1.5', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (806, 'Oracle JDK', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (807, 'Java Development Kit (JDK)', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (808, 'Oracle - JDK/SDK 8', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (809, 'Java Development Kit', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (810, 'JDK 1.6.0_24', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (811, 'JDK8 (1.8)', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (812, 'JDK 1.3', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (813, 'JEE', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (814, 'Java EE', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (815, 'Java Enterprise Edition (Java EE)', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (816, 'Java Enterprise Edition', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (817, 'Java Message Service (JMS)', 12, 389, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (818, 'JMS', 12, 389, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (819, 'Java Message Service', 12, 389, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (820, 'Java Standard Edition (Java SE)', 9, 334, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (821, 'oracle - java - java se 6', 9, 334, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (822, 'Java SE 6', 9, 334, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (823, 'Java Web Start', 12, 390, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (824, 'Oracle - Java Web Start 1.5', 12, 390, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (825, 'Oracle - Java Web Start 6', 12, 390, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (826, 'JavaServer Faces', 12, 391, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (827, 'JavaServer Faces (JSF)', 12, 391, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (828, 'JSF', 12, 391, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (829, 'JavaServer Pages', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (830, 'JavaServer Pages (JSP)', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (831, 'Core JSP', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (832, 'JSP', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (833, 'JSP Scriptlets', 9, 336, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (834, 'Java Scriplet', 9, 336, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (835, 'JDBC', 12, 392, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (836, 'JRuby Core', 12, 393, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (837, 'Core 9.2.0.0', 12, 393, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (838, 'APACHE LOG4J', 12, 394, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (839, 'Log4j', 12, 394, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (840, 'Quartz', 12, 395, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (841, 'Java RMI', 12, 396, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (842, 'Java Remote Method Invocation (RMI)', 12, 396, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (843, 'Remote Method Invocation', 12, 396, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (844, 'Java Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (845, 'Java 6 Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (846, 'J2EE Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (847, 'Servlet', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (848, 'Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (849, 'Servlets v2.3', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (850, 'Spring', 12, 398, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (851, 'Spring IO', 12, 398, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (852, 'Spring BOOT', 12, 399, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (853, 'Spring Cloud Data Flow', 12, 400, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (854, 'Spring MVC', 12, 401, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (855, 'Struts (2.0)', 12, 402, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (856, 'Struts 2.0', 12, 402, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (857, 'Struts', 12, 402, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (858, 'Swing', 12, 403, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (859, 'Swings', 12, 403, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (860, 'Vaadin', 12, 404, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (861, 'javasript', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (862, 'JS', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (863, 'Javascript', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (864, 'Java Script', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (865, 'javascriptl', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (866, 'AJAX', 12, 405, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (867, 'Angular JS', 12, 406, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (868, 'AngularJS', 12, 406, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (869, 'Angular', 12, 406, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (870, 'Draw2D', 12, 407, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (871, 'Draw2D 2.10.1', 12, 407, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (872, 'Express', 12, 408, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (873, 'Express.js', 12, 408, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (874, 'ExtJS 4.1', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (875, 'Sencha 4.2.0', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (876, 'ExtJS', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (877, 'Ext JS', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (878, 'jqGrid', 12, 410, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (879, 'JQuery 1.7', 12, 411, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (880, 'JQuery', 12, 411, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (881, 'jqueryui', 12, 412, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (882, 'jQuery UI', 12, 412, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (883, 'jquery-ui', 12, 412, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (884, 'react', 12, 413, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (885, 'ReactJS', 12, 413, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (886, 'react.js', 12, 413, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (887, 'Scriptaculous', 12, 414, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (888, 'script.aculo.us', 12, 414, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (889, 'Valums File Uploader', 12, 415, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (890, 'Valums AJAX File Uploader', 12, 415, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (891, 'Jboss 7', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (892, 'JBOSS 5.1.2', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (893, 'Red Hat JBoss Enterprise Application Platform 6.3', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (894, 'EAP', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (895, 'JBOSS-EAP', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (896, 'JBoss Application Server 4', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (897, 'JBoss Application Server 7', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (898, 'JBoss Application Server 5', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (899, 'JBoss Application Server', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (900, 'Enterprise Application Platform', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (901, 'JBoss', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (902, 'Jboss 7.1.2', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (904, 'JBOSS 5.1.2 EAP', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (905, 'server: Jboss', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (906, 'JBOSS 6.3.2 EAP', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (907, 'JBoss EAP 4.3', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (908, 'Jboss 4.1.2', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (909, 'JBOSS 5', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (910, 'JBOSS 6.3.2', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (911, 'JBoss Seam', 7, 492, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (912, 'SEAM', 7, 492, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (913, 'JCL', 9, 338, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (914, 'Jenkins', 2, 90, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (915, 'Job Information Language', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (916, 'JIL - Job Information Language', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (917, 'Job Information Language (JIL)', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (918, 'JIL', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (919, 'JoinIT by Acayosoft', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (920, 'Acayosoft JoinIT', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (921, 'JoinIT by Acayosoft v 9.0.8', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (922, 'joinIT', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (923, 'JScript', 9, 340, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (924, 'Kitura', 8, 269, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (925, 'LifeFlow', 2, 92, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (926, 'LifeFlow Tool', 2, 92, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (927, 'Linux 2.6.32-696.28.1.el6.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (928, 'Other Linux (64-bit)', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (929, 'Linux', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (930, 'Linux 2.6.32-696.30.1.el6.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (931, 'Linux 2.6.9', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (932, 'Linux 2.6.32-642.3.1.el6.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (933, 'Linux - 2.6.18-371.1.2.el5', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (934, 'Linux 2.6.32-696.23.1.el6.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (935, 'Other Linux (32-bit)', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (936, 'Linux (64-bit)', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (937, 'Linux 3.10.0-1062.el7.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (938, 'Other 2.6.x Linux (64-bit)', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (939, 'CentOS 6 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (940, 'LINUX CentOS 7.3', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (941, 'CentOS 4 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (942, 'LINUX CentOS 6.2', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (943, 'Linux CentOS_5.5', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (944, 'CentOS 7.2', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (945, 'CentOS 6 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (946, 'LINUX CentOS 6.8', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (947, 'LINUX CentOS 6.9', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (948, 'LINUX CentOS 6.4', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (949, 'CentOS 4/5/6 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (950, 'CentOS 5 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (951, 'Linux CentOS_5.2', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (952, 'CentOS 4 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (953, 'CentOS 7 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (954, 'CentOS 5 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (955, 'CentOS 5.8 (x86)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (956, 'CentOS 6.4', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (957, 'CentOS 7.5.184', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (958, 'CentOS 4/5/6 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (959, 'CentOS', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (960, 'CentOS release 5.11', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (961, 'CentOS 4/5 or later (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (962, 'LINUX CentOS 6.5', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (963, 'LINUX CentOS 6.7', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (964, 'LINUX CentOS 5.8', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (965, 'LINUX CentOS 5', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (966, 'CentOS 7.x', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (967, 'CentOS 4/5/6/7 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (968, 'CentOS 4/5 or later (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (969, 'LINUX CentOS 5.7', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (970, 'Check Point IPSO', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (971, 'Gaia Kernel version 2.7', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (972, 'Checkpoint', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (973, 'Check Point Gaia', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (974, 'Gaia Kernel version 2.6', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (975, 'Debian Linux', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (976, 'Debian GNU/Linux 8 (64-bit)', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (977, 'Debian', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (978, 'Debian Linux 8', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (979, 'LINUX Debian 6.0', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (980, 'Debian GNU/Linux 5 (64-bit)', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (981, 'Junos OS', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (982, 'JunOS', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (983, 'JunOS 8.0R14', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (984, 'JunOS 8.0R13', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (985, 'OpenSuse', 6, 431, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (986, 'SUSE openSUSE (64-bit)', 6, 431, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (987, 'Oracle - Linux Server - 7.5 Beta', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (988, 'Oracle Linux 7', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (989, 'LINUX Oracle EL 6.6 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (990, 'OEL', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (991, 'LINUX Oracle EL 6.3 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (992, 'LINUX Oracle EL 7.4 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (993, 'OEL 6.5 (Oracle Linux)3.8.13-16.2.1.el6uek.x86_64', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (994, 'LINUX Oracle EL 5.11 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (995, 'LINUX Oracle EL 5.10 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (996, 'LINUX Oracle EL 5.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (997, 'Oracle Linux 6.1', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (998, 'Oracle Linux 4/5 or later (64-bit)', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (999, 'LINUX Oracle EL 6.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1000, 'LINUX Oracle EL 6.8 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1001, 'Oracle Linux 5 (64-bit)', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1002, 'Oracle Enterprise Server 7.5', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1003, 'Oracle Linux 5u10', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1004, 'OEL6.7 - 3.8.13-68.3.4.el6uek.x86_64', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1005, 'Oracle Linux Server 6.10', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1006, 'LINUX Oracle EL 6.9 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1007, 'LINUX Oracle EL 6.7 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1008, 'Oracle Linux Server release 6.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1009, 'Oracle Linux Server 6.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1010, 'LINUX Oracle EL 5.8 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1011, 'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_63', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1012, 'Oracle Linux Server 6.7', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1013, 'Oracle Enterprise Linux', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1014, 'Oracle Linux', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1015, 'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_62', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1016, 'Oracle Linux 4 (64-bit)', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1017, 'Photon OS', 6, 433, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1018, 'VMware Photon', 6, 433, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1019, 'VMware Photon 1', 6, 433, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1020, 'Red Hat Enterprise Linux Server 6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1021, 'Red Hat Enterprise Linux Server 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1022, 'Linux - Redhat 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1023, 'LINUX RedHat ES 5.7 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1024, 'Red Hat Enterprise Linux Server 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1025, 'Red Hat Enterprise Linux AS release 4 (Nahant Update 8)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1026, 'Red Hat Enterprise Linux Server release 6.9 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1027, 'RED HAT ENTERPRISE LINUX 5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1028, 'Red Hat Enterprise Linux Server 6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1029, 'LINUX RedHat EL 7.3 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1030, 'RHEL', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1031, 'Redhat Linux 5.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1032, 'Linux Red Hat 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1033, 'Red Hat Enterprise Linux Server 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1034, 'Red Hat Enterprise Linux Server 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1035, 'Red Hat(Linux)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1036, 'LINUX Red Hat Enterprise Linux Server 5.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1037, 'LINUX RedHat EL 5.7 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1038, 'Linux Red Hat5.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1039, 'Linux Red Hat3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1040, 'LINUXRed Hat Enterprise Linux Server 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1041, 'Red Hat Enterprise Linux Server 5.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1042, 'LINUX RedHat EL 6.8 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1043, 'RHEL 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1044, 'Redhat - Redhat Linux 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1045, 'Linux RH6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1046, 'Red Hat Enterprise Linux 6 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1047, 'RED HAT ENTERPRISE LINUX SERVER 6.X (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1048, 'RHEL 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1049, 'Red Hat Enterprise Linux 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1050, 'LINUXRed Hat Enterprise Linux Server 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1051, 'RHEL 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1052, 'Red Hat Enterprise Linux Santiago 6.3 32 Bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1053, 'LINUX RedHat EL 6.6 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1054, 'RED HAT ENTERPRISE LINUX 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1055, 'RED HAT ENTERPRISE LINUX SERVER 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1056, 'Linux Red Hat6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1057, 'RED HAT ENTERPRISE LINUX SERVER 7.X (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1058, 'Red Hat Enterprise Linux Server release 7.3 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1059, 'RHEL7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1060, 'Linux Red Hat Enterprise Server 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1061, 'Red Hat Enterprise Linux Server 7.6 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1062, 'Red Hat Enterprise Linux 5 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1063, 'Linux Red Hat6.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1064, 'RHEL 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1065, 'RHEL 7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1066, 'RED HAT ENTERPRISE LINUX 4.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1067, 'Red Hat Enterprise Linux 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1068, 'Red Hat Enterprise Linux Server 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1069, 'LINUX RedHat EL 7.5 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1070, 'LINUXRed Hat Enterprise Linux Server 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1071, 'LINUX RED HAT ENTERPRISE SERVER 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1072, 'Unix Linux Redhat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1073, 'LINUX RED HAT ENTERPRISE SERVER 6 X64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1074, 'Red Hat Linux', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1075, 'LINUX RED HAT ENTERPRISE SERVER 6.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1076, 'RHEL6.6 - 2.6.32-504.el6.x86_64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1077, 'RED HAT ENTERPRISE LINUX 5.X', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1078, 'Linux Red Hat Enterprise Server 7.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1079, 'Linux Red Hat4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1080, 'Linux Red Hat Enterprise Server 6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1081, 'Red Hat Enterprise Linux Server release 5.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1082, 'Red Hat Linux x64 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1083, 'Red Hat Enterprise Linux Server 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1084, 'Linux Red Hat6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1085, 'LINUX RED HAT ENTERPRISE SERVER 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1086, 'Red Hat Enterprise Linux Server release 6.6 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1087, 'RED HAT ENTERPRISE LINUX 6.X', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1088, 'Red Hat Enterprise Linux Server 6.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1089, 'RedHat Enterprise Linux 6 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1090, 'RED HAT ENTERPRISE LINUX', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1091, 'Redhat - Redhat Linux 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1092, 'RED HAT ENTERPRISE LINUX 5.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1093, 'RED HAT ENTERPRISE LINUX 5.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1094, 'RED HAT ENTERPRISE LINUX 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1095, 'Red Hat Enterprise Linux Server 5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1096, 'Redhat - RHEL 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1097, 'RHEL7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1098, 'Red Hat Enterprise Linux Server release 7.5 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1099, 'Red Hat Enterprise Linux 6 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1100, 'Red Hat Entreprise Linux 6.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1101, 'RED HAT ENTERPRISE LINUX 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1102, 'RHEL 5.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1103, 'Red Hat Enterprise Linux 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1104, 'LINUX RedHat EL 6.2 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1105, 'Linux Red Hat6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1106, 'RED HAT ENTERPRISE LINUX 5.11 - 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1107, 'Red Hat Enterprise Linux Server 5.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1108, 'Redhat 6 64-Bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1109, 'Red Hat Enterprise Linux 5 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1110, 'Red Hat Enterprise Linux Server 7.', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1111, 'RHEL 6.6 ((64 bit x86_64)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1112, 'Red Hat Enterprise Linux Server Release 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1113, 'LINUX RED HAT ENTERPRISE ES 4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1114, 'Linux Red Hat Enterprise Server 5.11 (2.6.18-419.el5)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1115, 'Red Hat Enterprise Linux Server release 6.8 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1116, 'RED HAT ENTERPRISE LINUX 4.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1117, 'Redhat Linux 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1118, 'Red Hat Enterprise Linux AS', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1119, 'RED HAT ADVANCED SERVER 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1120, 'LINUX RED HAT ENTERPRISE SERVER 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1121, 'RHEL6.7 - 2.6.32-573.el6.x86_64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1122, 'Red Hat Enterprise Linux Server 5.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1123, 'LINUX RedHat EL 5 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1124, 'Red Hat Enterprise Linux 7.2 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1125, 'LINUX RedHat EL 5.11 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1126, 'RHEL 6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1127, 'RHEL 6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1128, 'Red Hat Enterprise Linux Server', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1129, 'Red Hat Enterprise Linux Server 5.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1130, 'Red Hat Enterprise Linux Santiago 6.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1131, 'RED HAT ENTERPRISE LINUX 6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1132, 'RED HAT ENTERPRISE LINUX 7.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1133, 'Red Hat Enterprise Linux Server release 5.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1134, 'RHEL Server', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1135, 'Linux RHEL', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1136, 'redhat6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1137, 'RHEL 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1138, 'Redhat - Redhat Linux 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1139, 'Linux RH', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1140, 'Red Hat Enterprise Linux Server release 6.10 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1141, 'Red Hat Enterprise Linux 3 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1142, 'Redhat - Red Hat(Linux)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1143, 'RED HAT ENTERPRISE LINUX 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1144, 'RED HAT ENTERPRISE LINUX SERVER 4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1145, 'Redhat Linux 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1146, 'Linux RH7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1147, 'Red Hat Enterprise Linux Server release 5 (Tikanga)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1148, 'RHEL 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1149, 'LINUX Red Hat Enterprise Linux Server 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1150, 'Red Hat Enterprise Linux Server 6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1151, 'Red Hat Enterprise Linux Server release 7.4 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1152, 'Red Hat V6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1153, 'Redhat Linux', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1154, 'RHEL 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1155, 'RED HAT ENTERPRISE LINUX 6.X TPM', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1156, 'Linux Red Hat5.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1157, 'Linux Red Hat5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1158, 'Linux RH5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1159, 'Red Hat Enterprise Linux Santiago 6.3 64 Bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1160, 'rehl5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1161, 'RED HAT ENTERPRISE LINUX ES 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1162, 'Red Hat Enterprise Linux Server release 7.6 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1163, 'LINUX RED HAT ENTERPRISE SERVER 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1164, 'Red Hat Enterprise Linux 4 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1165, 'RHEL 7.xx', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1166, 'Red Hat Enterprise Linux Server 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1167, 'Red Hat Enterprise Linux Server release 7.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1168, 'Red Hat Enterprise Linux 7 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1169, 'Red Hat Enterprise Linux 5 Update 3 (RHEL 5.3) for x86-64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1170, 'LINUX RED HAT ENTERPRISE AS 4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1171, 'RHEL Linux', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1172, 'RHEL 7.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1173, 'RED HAT ENTERPRISE LINUX 4.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1174, 'RED HAT ENTERPRISE LINUX 6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1175, 'Linux Red Hat6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1176, 'RHEL 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1177, 'RHEL 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1178, 'RED HAT ENTERPRISE LINUX 5.X TPM', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1179, 'RED HAT ENTERPRISE LINUX ES 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1180, 'LINUX RedHat EL 7.4 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1181, 'Red Hat Enterprise Linux Server release 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1182, 'Red Hat Linux 5.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1183, 'LINUX RED HAT ENTERPRISE SERVER 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1184, 'LINUX RedHat EL 5.0 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1185, 'Red Hat Enterprise Linux Server release 6.3 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1186, 'RED HAT ENTERPRISE LINUX SERVER 5.X (Tikanga)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1187, 'Red Hat Enterprise Linux Server 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1188, 'Linux Red Hat 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1189, 'Linux Red Hat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1190, 'Red Hat 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1191, 'LINUX Red Hat Enterprise Linux Server 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1192, 'LINUX Red Hat Enterprise Linux Server 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1193, 'Red Hat Enterprise Linux Server 5.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1194, 'RHEL7.xx', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1195, 'RHEL 6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1196, 'Linux Red Hat5.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1197, 'Red Hat Enterprise Linux Server 7.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1198, 'Red Hat Enterprise Linux Server release 6.5 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1199, 'Linux Red Hat6.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1200, 'Red Hat Enterprise Linux Server 6.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1201, 'LINUXRed Hat Enterprise Linux Server 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1202, 'Red Hat Enterprise Linux 7.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1203, 'Red Hat Enterprise Linux Server 7.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1204, 'Redhat Linux 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1205, 'red hat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1206, 'LINUX RedHat EL 6.10 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1207, 'Red Hat Enterprise Linux 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1208, 'Red Hat Enterprise Linux Server release 6.7 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1209, 'Linux Red Hat5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1210, 'Red Hat Enterprise Linux 7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1211, 'Red Hat Linux 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1212, 'RED HAT ENTERPRISE LINUX 7.X', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1213, 'RHEL x86-64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1214, 'LINUX RED HAT ENTERPRISE SERVER 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1215, 'Red Hat Enterprise Linux Server 4.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1216, 'RED HAT ENTERPRISE LINUX 5 (64 Bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1217, 'Redhat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1218, 'RED HAT ENTERPRISE LINUX 7.X TPM', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1219, 'Red Hat Enterprise Linux Server 6.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1220, 'Red Hat Enterprise Linux Server 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1221, 'RED HAT ENTERPRISE LINUX SERVER 6.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1222, 'RedHat 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1223, 'Redhat Linux 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1224, 'LINUX RED HAT 5 EL', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1225, 'LINUX RedHat EL 6.9 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1226, 'RED HAT ENTERPRISE LINUX 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1227, 'suse enterprise server 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1228, 'SUSE Linux Enterprise Server 12 x86_64', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1229, 'SUSE11', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1230, 'SUSE Linux Enterprise 10 (32-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1231, 'SUSE Linux Enterprise 10 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1232, 'Linux SuSE12', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1233, 'SUSE Linux Enterprise 12 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1234, 'Linux SuSE2.6.32-504.12.2.el6.x86_64', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1235, 'LINUXSUSE_SLES 11.4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1236, 'SUSE Linux Enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1237, 'SUSE10', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1238, 'SUSE Linux 12', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1239, 'LINUX SUSE_SLES 11.4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1240, 'LINUX SuSE Enterprise Server 11 64bit', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1241, 'SLES 11 SP4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1242, 'SUSE Enterprise Server 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1243, 'SUSELinux Enterprise 11.x', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1244, 'SUSE Linux Enterprise Server 11 x86_64', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1245, 'SUSE Enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1246, 'SUSE Enterprise 10 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1247, 'suse enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1248, 'SUSE LINUX ENTERPRISE SERVER 11, SERVICE PACK SERVICE PACK SP4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1249, 'SUSE Linux 11', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1250, 'SUSE Linux 11 SP3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1251, 'SUSE Linux Eneterprise Server (SLES) 11.0', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1252, 'SUSE Linux', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1253, 'SLES 9', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1254, 'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1255, 'Linux SuSE11', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1256, 'SUSE', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1257, 'SUSELinux Enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1258, 'LINUX SuSE Enterprise Server 9', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1259, 'LINUX SuSE 10.0 Enterprise', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1260, 'SUSE LINUX ENTERPRISE SERVER 11.3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1261, 'SUSE LINUX Enterprise Server 9 (i586) VERSION = 9 PATCHLEVEL = 3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1262, 'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 1', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1263, 'SUSE Linux Enterprise 11 SP4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1264, 'SuseLinux', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1265, 'SLES 12 SP2 for Power/SAP', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1266, 'SUSE Linux Enterprise Server', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1267, 'LINUX Ubuntu 12.04.1 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1268, 'Ubuntu - Ubuntu Server - 16.04.1 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1269, 'Ubuntu Linux (32-bit)', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1270, 'LINUX Ubuntu 16.04 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1271, 'Ubuntu Linux Server 10 (64-bit)', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1272, 'Ubuntu', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1273, 'LINUX Ubuntu 14.04 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1274, 'UBUNTU LINUX (64-BIT)', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1275, 'Ubuntu Linux', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1276, 'LINUX UBUNTU 16.04', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1277, 'LINUX Ubuntu', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1278, 'Linux - Ubuntu Server 16.04.1 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1279, 'zLinux', 6, 437, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1280, 'Lisp', 9, 341, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1281, 'Lotus Domino', 8, 270, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1282, 'domino8.5', 8, 270, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1283, 'Domino 8.x', 8, 270, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1284, 'Lotus Notes', 2, 93, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1285, 'Lotus Notes Internal', 2, 93, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1286, 'Lucee', 8, 271, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1287, 'Lucee 5.2.6.60', 8, 271, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1288, 'MaaS360', 2, 94, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1289, 'mac OS', 6, 438, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1290, 'macOS', 6, 438, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1291, 'Darwin', 6, 438, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1292, 'Malwarebytes Anti-Malware', 2, 95, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1293, 'Malwarebytes Corporation - Malwarebytes Anti-Malware 3.4', 2, 95, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1294, 'Malwarebytes', 2, 95, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1295, 'ManageEngine ADSelfService Plus', 2, 96, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1296, 'Manage Engine ADSelfService Porta', 2, 96, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1297, 'Marklogic', 2, 97, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1298, 'MarkLogic DB', 2, 97, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1299, 'Memcache', 2, 98, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1300, 'Memcached', 2, 98, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1301, 'ACCDB', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1302, 'Microsoft Access', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1303, 'Access DB', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1304, 'MS Access 2016', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1305, 'MS Access', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1306, 'Microsoft BizTalk Adapters for Host Systems 2.0', 2, 100, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1307, 'Microsoft BizTalk Adapters for Host Systems', 2, 100, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1308, 'Microsoft Dynamics AX', 2, 101, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1309, 'MS Dynamics AX 4', 2, 101, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1310, 'Microsoft - Microsoft System Center Configuration Manager 2012', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1311, 'SCCM', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1312, 'Microsoft Endpoint Configuration Manager (SCCM)', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1313, 'ConfigMgr', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1314, 'Microsoft - Microsoft System Center Configuration Manager Client 5', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1315, 'Microsoft Endpoint Configuration Manager', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1316, 'MS System Centre Configuration Manager', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1317, 'MS Excel', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1318, 'Excel', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1319, 'Microsoft Excel 2010', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1320, 'Microsoft Excel', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1321, 'Excel 2010', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1322, 'Microsoft Exchange Server', 2, 104, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1323, 'MS Exchange 2010 Enterprise', 2, 104, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1324, 'Veeam Explorer', 5, 464, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1325, 'Microsoft Forefront Identity Manager (FIM)', 2, 105, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1326, 'Microsoft Forefront Identity Manager', 2, 105, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1327, 'FIM SQL Development Server', 2, 105, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1328, 'InfoPath', 2, 106, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1329, 'Microsoft InfoPath', 2, 106, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1330, 'Microsoft - Internet Explor', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1331, 'Microsoft - Internet Explorer 11', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1332, 'Microsoft Internet Explorer', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1333, 'Internet Explor', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1334, 'ISA Server', 2, 108, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1335, 'Microsoft ISA Server', 2, 108, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1336, 'Microsoft MQ', 2, 109, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1337, 'System Center Endpoint Protection for Mac', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1338, 'System Center 2012 Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1339, 'Microsoft System Center 2012 Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1340, 'Microsoft - Microsoft System Center 2012 Endpoint Protection 2.2', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1341, 'SCEP for Linux', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1342, 'System Center Endpoint Protection for Linux', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1343, 'Microsoft System Center Endpoint Protection 2012', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1344, 'System Center 2012 R2 Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1345, 'SCEP for Mac', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1346, 'Microsoft System Center Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1347, 'System Center Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1348, 'Microsoft - Microsoft Visual Studio 2010', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1349, 'Microsoft Visual Studio 2010', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1350, 'Microsoft Visual Studio', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1351, 'Visual Studio', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1352, 'Microsoft Web Deploy 2.0', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1353, 'Microsoft Web Deploy', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1354, 'Web Deploy', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1355, 'msdeploy', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1356, 'Web Farm Framework', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1357, 'Microsoft Web Farm Framework Version 2.2', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1358, 'Microsoft Web Farm Framework', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1359, 'WFF', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1360, 'Microsoft Web Farm Framework (WFF)', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1361, 'WebPI', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1362, 'Web Platform Installer', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1363, 'Microsoft Web Platform Installer', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1364, 'Microsoft Web Platform Installer 3.0', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1365, 'Web PI', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1366, 'MDW 6', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1367, 'MDW Framework', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1368, 'MDW', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1369, 'Model Driven Workflow', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1370, 'Model Driven Workflow (MDW)', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1371, 'MONGO-DB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1372, 'Mango DB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1373, 'Mongo DB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1374, 'MangoDB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1375, 'MongoDB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1376, 'Mozilla.org - Firefox 38.5', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1377, 'Firefox', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1378, 'Mozilla.org', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1379, 'Mozilla.org - Firefox 68', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1380, 'Mozilla Firefox', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1381, 'Mozilla.or', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1382, 'MQ Client 7.5', 2, 118, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1383, 'MQ Client', 2, 118, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1384, 'MS Office 365', 2, 119, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1385, 'Office 365', 2, 119, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1386, 'O365', 2, 119, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1387, 'MS SQL Server 2008 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1388, 'MS SQL 2008R2SP2ENT (10.52.4042.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1389, 'MS SQL Server 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1390, 'SQL Server 11.0.2100.60', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1391, 'MS SQL 2016 SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1392, 'SQL 2012 Development Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1393, 'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.5', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1394, 'Microsoft - Microsoft SQL Server 2012 for Microsoft SQL Server 2012 Standard Edition 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1395, 'MS SQL Server MS SQL Server 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1396, 'SQL Server 2016 SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1397, 'SQL Server 2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1398, 'SQL Server 2005 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1399, 'Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (X64)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1400, 'MICROSOFT SQL SERVER 2005 STANDARD EDITION 9.*', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1401, 'Microsoft SQL Server SQL Server 2008 R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1402, 'MICROSOFT SQL SERVER 2012 DEVELOPER EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1403, 'Microsoft SQL Server 2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1404, 'MS SQL Server 2008 R2 Express', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1405, 'SQL Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1406, 'SQL Server 2012 SP3', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1407, 'SQL Server 2003', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1408, 'Microsoft SQL Server 2016 - Service pack 2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1409, 'SQL SERVER 2008 R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1410, 'MS SQL Server 2008 Enterprise R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1411, 'MS SQL Server 2014 Express', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1412, 'SQL Server 2008 R2 SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1413, 'SQL Server 2008 R2 Enterprize SP2 64Bit', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1414, 'MICROSOFT SQL SERVER 2012 STANDARD EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1415, 'MS SQL Server 2008 Developer', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1416, 'SQL 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1417, 'MICROSOFT SQL SERVER 2008 DEVELOPER EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1418, 'Microsoft SQL Server 2012 (SP4-GDR)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1419, 'MS SQL Server 2012 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1420, 'Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1421, 'MS SQL Server 2005 Express', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1422, 'SQL Server 2016', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1423, 'Microsoft SQL Server 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1424, 'Microsoft SQL Server SQL Server 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1425, 'MS SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1426, 'sql server 2009 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1427, 'Microsoft - Microsoft SQL - 13.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1428, 'MSSQL Database Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1429, 'SQL Server 2008 R2 SP3', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1430, 'sql server 2013 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1431, 'SQL 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1432, 'Microsoft SQL Server 2000 (SP4)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1433, 'MS SQL Server 2012 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1434, 'MSSQL2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1435, 'MS SQL server 2008 R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1436, 'MS SQL Server 2000 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1437, 'MS SQLServer', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1438, 'microsoft sql', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1439, 'MS SQL 2008R2SP2STD (10.52.4042.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1440, 'MS SQL Server 2008 R2 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1441, 'MS SQL Server 2005 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1442, 'MS SQL Server 2008 Standard R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1443, 'SQL Server 12.0.2000.8', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1444, 'MS SQL 2008R2SP3STD (10.53.6220.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1445, 'SQL Server 11.0.5388.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1446, 'sql server 2011 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1447, 'MS SQL Server 2014 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1448, 'sql server 2008 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1449, 'SQl 2016', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1450, 'Microsoft SQL Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1451, 'SQL Server 2014 SP2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1452, 'SQL Server 2008 R2 RTM', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1453, 'Microsoft SQL Server Standard Edition', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1454, 'MS SQL Server 2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1455, 'sql2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1456, 'SQL Server 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1457, 'Microsoft SQL Server 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1458, 'SQL Server 10.0.5538.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1459, 'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Express Edition 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1460, 'MICROSOFT SQL SERVER 2014 ENTERPRISE EDITION 12', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1461, 'SQL Server 11.0.3156.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1462, 'SQLServer', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1463, 'SQL Server 2000 SP4', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1464, 'SQL Server 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1465, 'SQL Server 2008 R2 STD SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1466, 'sql server 2010 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1467, 'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1468, 'Microsoft SQL Server 2012 (SP4) (KB4018073) - 11.0.7001.0 (X64)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1469, 'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1470, 'MS SQL SERVER 08', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1471, 'SQL Server 10.50.2550.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1472, 'Microsoft SQL Server 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1473, 'SQL 2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1474, 'sql server 2012 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1475, 'MS SQL Server 2017', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1476, 'MS SQL Server 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1477, 'MS SQL Server 2008 R2 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1478, 'SQL Server 9.0.1399.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1479, 'MS SQL 2008SP2STD (10.2.4067.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1480, 'SQL Server 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1481, 'Microsoft SQL Server 8.1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1482, 'Microsoft - Microsoft SQL Server 2005 for Microsoft SQL Server 2005 Express Edition 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1483, 'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Standard Edition 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1484, 'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.*', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1485, 'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION 10.5', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1486, 'MS SQL 2005SP3STD (9.3.4340)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1487, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1488, 'SQL Server 2017 RTM', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1489, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11.0"', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1490, 'SQL 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1491, 'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Express Edition 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1492, 'Microsoft SQL Server 2008R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1493, 'SQL Server 2008 SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1494, 'MICROSOFT SQL SERVER 2005 ENTERPRISE EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1495, 'SQLSVR2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1496, 'MICROSOFT SQL SERVER 2008 ENTERPRISE EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1497, 'SQL Server 9.0.5069.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1498, 'MS SQL Instance', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1499, 'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1500, 'MICROSOFT SQL SERVER 2008 STANDARD EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1501, 'SQL Server 2012 SP4', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1502, 'Microsoft SQL sever 2008 R2 SP 3', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1503, 'SQL Server 2012 SP2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1504, 'Microsoft SQL Server 2016', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1505, 'MS SQL Server 2012 Developer', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1506, 'MS SQL 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1507, 'MS SQL Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1508, 'MS SQL Server 2005 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1509, 'SQL Server 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1510, 'MS SQL Server 2016', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1511, 'MICROSOFT SQL SERVER 2012 STANDARD EDITION 11', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1512, 'SQL Server 10.0.2531.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1513, 'MICROSOFT SQL SERVER 2000 STANDARD EDITION 8.*', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1514, 'MS SQL Server 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1515, 'Microsoft - SQL Server Express LocalDB 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1516, 'MS SQL 2012SP3STD (11.3.6020.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1517, 'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1518, 'MSSQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1519, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1520, 'Microsoft - Microsoft SQL Server 2008 for Microsoft SQL Server 2008 Express Edition 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1521, 'SQL Server 2008 SP4', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1522, 'Microsoft SQL Server 2008 R2 Policies 10.50.1600.1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1523, 'Microsoft SQL Server 1997 (SP4)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1524, 'MS SQL Server 2008 Express', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1525, 'MS SQL 2005SP4STD (9.4.5324)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1526, 'SQL 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1527, 'MS SQL Server 2008 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1528, 'MS SQL Server 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1529, 'SQL 2008 R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1530, 'Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (X64)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1531, 'MS SQL Server 2014 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1532, 'SQL Server 2016 SP2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1533, 'Microsoft SQL Server 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1534, 'Microsoft SQL Server Browser 10.52.4000.0', 5, 465, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1535, 'MS SQL Server Browser', 5, 465, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1536, 'MS SQL Server Compact', 2, 121, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1537, 'Microsoft SQL Server Compact 3.5 SP2 ENU 3.5.8080.0', 2, 121, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1538, 'Microsoft SQL Server Compact 3.5 SP2 Query Tools ENU 3.5.8080.0', 2, 121, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1539, 'MS DTS', 5, 466, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1540, 'Data Transformation Services', 5, 466, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1541, 'Microsoft - Microsoft SQL Server Replication Logreader Agent 9', 5, 467, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1542, 'Log Reader Agent', 5, 467, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1543, 'SQL Server Analysis Services 10.50.2500.0', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1544, 'SQL Server Analysis Services 11.0.2218.0', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1545, 'SQL Server Analysis Services', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1546, 'Microsoft - Microsoft SQL Server Analysis Services 2012 for Microsoft SQL Server 2012 Standard Edition 2012', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1547, 'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1548, 'SSAS 2012', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1549, 'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1550, 'SQL Server Analysis Services 12.0.2000.8', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1551, 'SQL Server Analysis Services (SSAS)', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1552, 'SQL Server Analysis Services 11.0.3000.0', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1553, 'SSAS', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1554, '6+ SSAS databases', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1555, '25+ SSAS databases', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1556, 'SQL Server Database Engine', 5, 469, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1557, 'Microsoft - Microsoft SQL Server Database Engine Services 10.1', 5, 469, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1558, 'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1559, 'SSIS', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1560, 'SSIS 2008 R3', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1561, 'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1562, 'SSIS 2008 R4', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1563, 'SQL Server Integration Services', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1564, 'SSIS 2008 R2', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1565, 'SSIS - 2008', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1566, 'SQL Server Integration Services (SSIS)', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1567, 'Microsoft - Microsoft SQL Server Management Studio 16', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1568, 'Microsoft SQL Server Management studio2016', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1569, 'SQL Management Studio', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1570, 'SQL server mgmt studio 2012', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1571, 'SQL Server Management Studio', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1572, 'Microsoft - SQL Server Management Studio 2012', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1573, 'Microsoft - Microsoft SQL Report Builder 10.5', 5, 472, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1574, 'SQL Server Report Builder', 5, 472, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1575, 'SQL Server Reporting Services 10.50.2500.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1576, 'SQL Server Reporting Services', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1577, 'SQL Server Reporting Services 11.0.5058.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1578, 'SQL Server Reporting Services 12.0.2000.8', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1579, 'SQL Server Reporting Services 11.0.2218.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1580, 'Microsoft - Microsoft SQL Server Reporting Services 2012 for Microsoft SQL Server 2012 Express Edition 2012', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1581, 'SQL Server Reporting Services 11.0.3000.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1582, 'SSRS 2016', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1583, 'SSRS', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1584, 'SQL Server Reporting Services (SSRS)', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1585, 'MICROSOFT SQL SERVER REPORTING SERVICES 10.*', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1586, 'MVS', 6, 577, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1587, 'OS/390', 6, 440, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1588, 'ZOS V1R9', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1589, 'ZOS Base 1.12', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1590, 'IBM Z/OS V2.1', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1591, 'z/OS 1.9', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1592, 'z/OS', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1593, 'zOS', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1594, 'z/OS 1.8', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1595, 'zOS 11.1', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1596, 'z/OS Base', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1597, 'MySQL Instance', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1598, 'MySQL AB - MySQL - 15.1', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1599, 'My SQL 0', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1600, 'MYSQL', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1601, 'Sun - Sun Microsystems MySQL Server Community Edition 5.6', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1602, 'MySQL AB - MySQL Server 5.5', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1603, 'MySQL AB - MySQL Server 5.7', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1604, 'MySQL Enterprise Server - 8.0.16', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1605, 'mysql on linux', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1606, 'Neo4', 2, 123, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1607, 'Neo4J', 2, 123, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1608, 'Net Optics Network TAPs', 4, 297, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1609, 'Net Optics Taps', 4, 297, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1610, 'NAS', 8, 272, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1611, 'Netscape Application Server', 8, 272, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1612, 'Netscape Application Server (NAS)', 8, 272, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1613, 'NES', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1614, 'Netscape Enterprise Server', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1615, 'Netscape En', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1616, 'Netscape Enterprise Server (NES)', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1617, 'Nexus', 2, 124, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1618, 'Nexus Repository OSS', 2, 124, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1619, 'Nginx (Linux)', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1620, 'Nginx 3 (Linux)', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1621, 'Nginx 1 (Linux)', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1622, 'Nginx', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1623, 'Nginx 1', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1624, 'Nginx 3', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1625, 'Niakwa Programming Language (NPL)', 9, 342, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1626, 'NPL (Niakwa Inc)', 9, 342, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1627, 'Niakwa Programming Language', 9, 342, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1628, 'NIX', 2, 125, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1629, 'Nix package manager', 2, 125, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1630, 'Node.js', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1631, 'Node.js 0.10 (Linux)', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1632, 'Nodejs Foundation - nodejs - node.js 11.7.0', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1633, 'TS-Node.js 6', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1634, 'Node.js 4', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1635, 'Node.js 6', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1636, 'Node.js 10', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1637, 'Node.js 8', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1638, 'TS-Node.js 8', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1639, 'TS-Node.js 0.10', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1640, 'node', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1641, 'Node.js 0.8', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1642, 'Node.js 0.10', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1643, 'Node.js 4 (Linux)', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1644, 'TS-Node.js 11', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1645, 'Node.js 5', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1646, 'Nodejs', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1647, 'Node.js 0.12', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1648, 'Objective C', 9, 343, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1649, 'Objective-C', 9, 343, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1650, 'Obj-C', 9, 343, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1651, 'OpenEdge ABL', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1652, 'Progress', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1653, 'OpenEdge', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1654, 'Progress OpenEdge', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1655, 'Symas OpenLDAP', 2, 126, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1656, 'OpenLDAP', 2, 126, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1657, 'HPExstream', 2, 127, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1658, 'OpenText Exstream', 2, 127, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1659, 'VMS 8.4', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1660, 'OPENVMS 7.3.2', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1661, 'VMS', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1662, 'OpenVMS', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1663, 'OPENVMS 8.4', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1664, 'OpenVPN', 2, 128, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1665, 'Oracle Access Management', 2, 129, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1666, 'OAM 12c', 2, 129, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1667, 'ADF 12c', 2, 130, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1668, 'Oracle ADF', 2, 130, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1669, 'Oracle APEX', 2, 131, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1670, 'Apex', 2, 131, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1671, 'Oracle HTTP Server 12c', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1672, 'OHS', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1673, 'Oracle Application Server 9i', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1674, 'Oracle HTTP Server powered by Apache', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1675, 'j2eeoracleca', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1676, 'Oracle Application Server', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1677, 'Oracle HTTP', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1678, 'Oracle HTTP server', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1679, 'Oracle - Oracle Application Server OC4J Instance 11.2', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1680, 'Oracle Web App Server', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1681, '9i AS server', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1682, 'Oracle Applications 11.5.10CU2', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1683, 'Oracle Application R12.1.3', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1684, 'OC4J', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1685, 'Oracle Appache 1.0.22', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1686, 'Oracle Transparent Gateway', 7, 494, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1687, 'Weblogic BI Publisher', 2, 132, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1688, 'Oracle BI Publisher 10g (10.1.3.4)', 2, 132, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1689, 'Oracle BI Publisher', 2, 132, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1690, 'Oracle Business Intelligence', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1691, 'OBI', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1692, 'OBIEE', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1693, 'OBI Reporting', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1694, 'Oracle 12c Enterprise', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1695, 'Oracle 12 c', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1696, 'Oracle 12.2 Client', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1697, 'Oracle 11gR1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1698, 'Oracle 18c', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1699, 'Oracle 9.2.0.7.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1700, 'Oracle 10.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1701, 'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1702, 'Oracle 11.2 (Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit) RAC', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1703, 'Oracle 18', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1704, 'Oracle 9i', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1705, 'Oracle 12c (v12.2.0.1) ORACLE', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1706, 'Oracle Database 12.1.0.2.190716', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1707, 'Oracle 12.1.0.2.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1708, 'Oracle 12.1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1709, 'Oracle Database 11g R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1710, 'Oracle 11 on AIX', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1711, 'Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1712, 'Oracle Database 11.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1713, 'Oracle Database 10g 10.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1714, 'Oracle 11 on EXA', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1715, 'Oracle Database 11.1.0.7.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1716, 'Oracle Database Server', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1717, 'Oracle DB Server', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1718, 'Oracle (9i,10g,11g,12c,18c)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1719, 'Oracle 12C', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1720, 'Oracle 10.2.0.5', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1721, 'Oracle-OracleDB-10g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1722, 'Oracle 11.2.0.2.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1723, 'Oracle 10', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1724, 'Oracle 8', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1725, 'Oracle 11G R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1726, 'Oracle Database 10g Release 10.2.0.4.0 - 64bit Production', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1727, 'Oarcle 11G', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1728, 'Oracle 12C R2 ORACLE', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1729, 'Oracle 11x', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1730, 'Oracle 11.2.4', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1731, 'Oracle Database 11gR2 Enterprise Edition 11.2.0.1 (64-bit)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1732, 'Oracle', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1733, 'Oracle 12.1.0.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1734, 'Oracle Database 10g R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1735, 'Oracle 12x', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1736, 'Oracle - 12.1.0.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1737, 'Oracle 10g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1738, 'DB - Oracle inbuilt', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1739, 'Oracle 12g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1740, 'Oracle Database 10g Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1741, 'Oracle 11.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1742, 'Oracle 11 g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1743, 'Oracle 9.2.0.8.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1744, 'Oracle Database 12.2.1.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1745, 'Oracle 10.2.0.4.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1746, 'Oracle 10g (10.2.0.3.0 on 32-bit windows)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1747, 'Oracle 11g (11.2.0.3.0 on 64-bit windows)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1748, 'Oracle-Oracle DB-8i', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1749, 'Oracle DB', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1750, 'Oracle Database', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1751, 'Oracle - Oracle Database - 10g Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1752, 'Oracle 10x', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1753, 'Oracle 11.2.0.4.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1754, 'Oracle 11g RAC', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1755, 'Oracle Database 11g Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1756, 'Oracle Server', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1757, 'Oracle Database 12c R1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1758, 'Oracle 10.2.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1759, 'Oracle 11.2.0.4.0 64-bit', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1760, 'Oracle 10.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1761, 'Oracle 9.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1762, 'Oracle DB 11g EER 11.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1763, 'ORACLE RELATIONAL DATABASE MANAGEMENT SYSTEM VERSION 11.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1764, 'Oracle Database 9i Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1765, 'Oracle 11.1.0.7.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1766, 'Oracle Database 11g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1767, 'Oracle DB 11.2.0.3', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1768, 'Oracle 12.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1769, 'Oracle 11g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1770, 'Oracle Database 12c Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1771, 'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1772, 'Oracle 11.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1773, 'Oracle 10.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1774, 'Oracle 12', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1775, 'Oracle Database 12c R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1776, 'Oracle 12C on linux', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1777, 'oracle 11g ORACLE', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1778, 'Oracle - 11.2.0.3', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1779, 'Oracle 12c (Oracle Database 12c Enterprise Edition Release 11.2.0.3.0 - 64bit)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1780, 'Oracle9i Enterprise Edition Release 9.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1781, 'OracleDB EE11.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1782, 'Oracle 11g on linux', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1783, 'Oracle 11gEssbase', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1784, 'Oracle12', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1785, 'Oracle Database 12c Release 1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1786, 'JServer Release 9.2.0.5.0', 5, 474, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1787, 'Jserver', 5, 474, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1788, 'ORACLE SPATIAL', 5, 475, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1789, 'Oracle Spatial and Graph', 5, 475, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1790, 'Designer 6i', 2, 135, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1791, 'Oracle Designer', 2, 135, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1792, 'Enterprise Manager 12.2.1.1', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1793, 'Enterprise Manager 12.2.1.2', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1794, 'Enterprise Manager 11.1.1.7', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1795, 'Oracle Enterprise Manager', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1796, 'Exadata X6-2', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1797, 'Oracle Exadata', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1798, 'Oracle Exadata 11g', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1799, 'Oracle - Exadata X6-2', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1800, 'Oracle Forms', 2, 137, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1801, 'Hyperion Interactive Reporting', 2, 138, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1802, 'Oracle Hyperion Interactive Reporting version 9.3', 2, 138, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1803, 'Hyperion Planning Server', 2, 139, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1804, 'Hyperion Planning', 2, 139, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1805, 'Oracle Net Services', 2, 140, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1806, 'Oracle, Nets', 2, 140, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1807, 'Oracle Real Application Clusters (RAC)', 2, 141, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1808, 'Oracle RAC', 2, 141, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1809, 'Oracle Real Application Clusters', 2, 141, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1810, 'Oracle Retail Point-of-Service', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1811, 'ORPOS 13.3.3', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1812, 'ORPOS 13.3.5', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1813, 'ORPOS 13.3.4', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1814, 'Oracle Service Bus', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1815, 'Oracle Service Bus 11.1.1.7', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1816, 'Oracle Service Bus 12.2.1.2', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1817, 'OSB Servers', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1818, 'Oracle Service Bus 12.2.1.1', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1819, 'Oracle Smart View', 2, 144, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1820, 'Hyperian Smart View', 2, 144, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1821, 'Oracle SOA Suite', 2, 145, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1822, 'Oracle SOA Suite 12.2.1.3.0', 2, 145, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1823, 'Oracle SQL Developer', 2, 146, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1824, 'Oracle - Oracle Sql Developer 1.5', 2, 146, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1825, 'Oracle TimesTen In-Memory Database', 2, 147, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1826, 'Oracle TT', 2, 147, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1827, 'Oracle VM 3.3.3', 3, 567, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1828, 'Oracle VM', 3, 567, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1829, 'Oracle VM 3.3', 3, 567, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1830, 'OWB 10g', 2, 148, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1831, 'Oracle Warehouse Builder', 2, 148, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1832, 'Oracle Warehouse Builder (OWB)', 2, 148, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1833, 'WebCenter Content Server', 8, 276, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1834, 'Oracle WebCenter Content Server', 8, 276, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1835, 'IDOC SCRIPT', 7, 495, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1836, 'Orbix', 2, 149, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1837, 'IONA Orbix', 2, 149, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1838, 'OS/2', 6, 443, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1839, 'OWASP Enterprise Security API (ESAPI)', 12, 416, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1840, 'OWASP Enterprise Security API', 12, 416, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1841, 'Esapi', 12, 416, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1842, 'Pascal', 9, 599, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1843, 'Object Pascal', 9, 346, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1844, 'Clascal', 9, 346, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1845, 'Pentaho', 2, 150, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1846, 'peoplesoft', 2, 151, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1847, 'Oracle-HR-9.2', 2, 151, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1848, 'Perkin Elmer Informatics', 2, 152, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1849, 'Perkin Elmer Informatics (PKI)', 2, 152, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1850, 'Perl', 9, 585, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1851, 'Perl 5.8.4', 9, 585, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1852, 'ActivePerl', 9, 348, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1853, 'ActiveState Tool Corp. - ActivePerl 5.12', 9, 348, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1854, 'ActiveState Tool Corp. - ActivePerl 5.8', 9, 348, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1855, 'ORAPERL', 12, 417, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1856, 'REX', 9, 349, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1857, 'Pervasive', 2, 153, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1858, 'Pervasive PSQL', 2, 153, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1859, 'PHP 5.4', 9, 586, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1860, 'PHP', 9, 586, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1861, 'Pipeflo', 2, 154, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1862, 'PIPE-FLO', 2, 154, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1863, 'TCServer V6', 8, 277, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1864, 'Pivotal tc Server', 8, 277, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1865, 'IBM PKWARE PKZip 2', 2, 155, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1866, 'PKZIP', 2, 155, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1867, 'PL/I', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1868, 'PL1', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1869, 'pli', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1870, 'PL/1', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1871, 'PLQSL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1872, 'Oracle - SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1873, 'PL/SQL TEMPLATING LANGUAGE', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1874, 'PL/SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1875, 'Oracle SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1876, 'PLSQL;', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1877, 'Oracle PL/SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1878, 'Oracle PLSQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1879, 'plsql', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1880, 'pl-sql', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1881, 'PL SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1882, 'Planview', 2, 156, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1883, 'Projectplace', 2, 156, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1884, 'postgres', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1885, 'PostGreSQL', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1886, 'PostgreSQL 0', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1887, 'Postgress', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1888, 'PowerBuilder 6.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1889, 'Powerbuilder V12.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1890, 'Power Builder', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1891, 'Powerbuilder v11.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1892, 'Power Builder 6.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1893, 'Powerbuilder', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1894, 'Primavera', 2, 159, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1895, 'Primavera P6', 2, 159, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1896, 'PRO*C', 9, 353, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1897, 'PRO C', 9, 353, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1898, 'ProC', 9, 353, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1899, 'Pro*Cobol', 2, 160, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1900, 'ProjectWise', 2, 161, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1901, 'ProjectWise Oracle Server', 2, 161, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1902, 'Projectwise Server (XM)', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1903, 'ProjectWise JJ', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1904, 'Projectwise Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1905, 'Projectwise Setup for PEMEX', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1906, 'ProjectWise Web Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1907, 'ProjectWise Application Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1908, 'ProjectWise Cache Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1909, 'PVCS Version Manager', 2, 163, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1910, 'Serena PVCS Version Manager 8.4', 2, 163, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1911, 'Python Software Foundation - Python 2.6', 9, 587, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1912, 'Python - Python - Python 2', 9, 587, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1913, 'Python 2', 9, 587, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1914, 'Python', 9, 587, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1915, 'QlikView', 2, 164, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1916, 'R', 9, 355, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1917, 'RMQ', 2, 165, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1918, 'rabbit mq', 2, 165, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1919, 'RabbitMQ', 2, 165, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1920, 'ClearCase Build Utility 1', 2, 166, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1921, 'Rational ClearCase', 2, 166, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1922, 'Clearquest', 2, 167, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1923, 'Rational ClearQuest', 2, 167, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1924, 'redis', 2, 168, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1925, 'Remedy', 2, 169, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1926, 'Remedy ARS', 2, 169, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1927, 'Resin Web Server', 8, 278, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1928, 'Resin', 8, 278, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1929, 'rexx', 9, 356, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1930, 'Riak', 2, 170, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1931, 'RightFax client 10', 2, 171, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1932, 'RightFax', 2, 171, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1933, 'RPG', 9, 357, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1934, 'Ruby', 9, 588, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1935, 'Ruby on Rails', 10, 508, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1936, 'Rumba', 2, 172, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1937, 'Salesforce Object Query Language (SOQL)', 9, 359, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1938, 'SOQL', 9, 359, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1939, 'Salesforce Object Query Language', 9, 359, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1940, 'SAP Business Objects', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1941, 'Business Objects 12', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1942, 'BusinessObjects 4.2 SP7', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1943, 'SAP BI 4.2 Sp5', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1944, 'SAP BusinessObjects BI server', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1945, 'SAP ERP', 2, 174, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1946, 'SAP EHP 7', 5, 476, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1947, 'SAP EHP', 5, 476, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1948, 'SAP - SAP Kernel 7.1', 5, 477, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1949, 'SAP Kernel', 5, 477, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1950, 'SAP HANA ON SUSEOracle 11g on Linux', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1951, 'HANA', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1952, 'SAP HANA DB', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1953, 'SAP - HANA 2.0', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1954, 'SAP MaxDB', 2, 176, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1955, 'NetWeaver', 8, 279, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1956, 'SAP NetWeaver App Server', 8, 279, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1957, 'ABAP', 7, 496, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1958, 'SAP NetWeaver Business Warehouse', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1959, 'SAP BW 7.5 SP10 - BW has 10 App servers for load balancing', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1960, 'SAP BW DB server has one instance and 13 servers for load balancing', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1961, 'SAP BW 7.5 SP10', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1962, 'SAP - SAP SQL Anywhere Network Database Server 12', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1963, 'SAP SQL Anywhere', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1964, 'SAP - SAP SQL Anywhere Network Database Server 11', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1965, 'SAP - SAP SQL Anywhere Personal Database Server 16', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1966, 'SAP Web Dynpro', 2, 179, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1967, 'Web-Dynpro', 2, 179, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1968, 'SAS', 9, 360, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1969, 'SAS 9.2', 9, 360, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1970, 'SCSS', 9, 361, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1971, 'Sass', 9, 361, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1972, 'Scala', 9, 362, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1973, 'Scalla', 9, 362, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1974, 'Sentry', 2, 180, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1975, 'Sentry 1.13', 2, 180, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1976, 'Sharepoints 2010', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1977, 'Microsoft SPS 2010', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1978, 'SharePoint', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1979, 'SharePoint 2013', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1980, 'Sharepoint 2007', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1981, 'Sharepoint 2010', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1982, 'SQL Server SP2013 Database Server', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1983, 'Sharepoint 2016', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1984, 'Siebel IP 2015', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1985, 'Siebel 7.8.2.16', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1986, 'Siebel', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1987, 'Siebel CRM', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1988, 'Smalltalk', 9, 363, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1989, 'SNA Manager', 2, 183, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1990, 'SNA Manager 8.0.3608.0', 2, 183, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1991, 'Techsmith Corporation - SnagIt 8', 2, 184, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1992, 'SnagIt', 2, 184, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1993, 'Solid development server', 2, 185, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1994, 'solidDB', 2, 185, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1995, 'SonarSource - SonarSource SonarQube Server 5.1', 2, 186, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1996, 'SonarQube', 2, 186, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1997, 'SpaceMonger', 2, 187, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1998, 'Sixty-Five Software - SpaceMonger 1.4', 2, 187, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1999, 'Spark', 8, 280, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2000, 'Splunk', 2, 188, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2001, 'SQLPlus', 5, 478, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2002, 'SQL Plus', 5, 478, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2003, 'SQL*Plus', 5, 478, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2004, 'SQLIO 1.0', 2, 189, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2005, 'SQLIO', 2, 189, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2007, 'Sun ONE Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2008, 'Sun Java Web Server 7.0 Update 2', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2009, 'iPlanet Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2010, 'Oracle iPlanet Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2011, 'Sun Java Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2012, 'SunOne', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2013, 'Swift', 9, 364, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2014, 'Sybase SQL Server', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2015, 'Sybase', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2016, 'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12.5"', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2017, 'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2018, 'SAP - Sybase Adaptive Server Enterprise 12.5', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2019, 'SAP - Sybase Adaptive Server Enterprise 16', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2020, 'SAP - Sybase Adaptive Server Enterprise 12', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2021, 'Sybase Central', 5, 479, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2022, 'SAP - Sybase Central 4.3', 5, 479, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2023, 'SAP - Sybase Dsedit 12.5', 5, 480, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2024, 'Sybase Dsedit', 5, 480, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2025, 'Sysncsort', 2, 191, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2026, 'syncsort', 2, 191, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2027, 'Sysinternals LLC - AccessEnum 1 1', 2, 194, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2028, 'AccessEnum', 2, 194, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2029, 'Sysinternals LLC - ClockRes 2', 2, 195, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2030, 'ClockRes', 2, 195, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2031, 'Sysinternals LLC - Coreinfo 3.21', 2, 196, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2032, 'Coreinfo', 2, 196, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2033, 'Sysinternals LLC - DiskExt 1.1', 2, 197, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2034, 'DiskExt', 2, 197, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2035, 'Sysinternals LLC - DiskMon 2.01', 2, 198, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2036, 'DiskMon', 2, 198, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2037, 'Hex2dec', 2, 199, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2038, 'Sysinternals LLC - Hex2dec 1', 2, 199, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2039, 'Sysinternals LLC - Junction 1.6', 2, 200, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2040, 'Junction', 2, 200, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2041, 'Sysinternals LLC - LDMDump 1.02', 2, 201, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2042, 'LDMDump', 2, 201, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2043, 'Sysinternals LLC - LoadOrder 1', 2, 202, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2044, 'LoadOrder', 2, 202, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2045, 'PipeList', 2, 203, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2046, 'Sysinternals LLC - PipeList 1.01', 2, 203, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2047, 'Process Explorer', 2, 204, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2048, 'Sysinternals LLC - Process Explorer 16.5', 2, 204, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2049, 'Sysinternals LLC - PsKill 1.15', 2, 205, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2050, 'PsKill', 2, 205, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2051, 'Sysinternals LLC - PsPasswd 1.23', 2, 206, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2052, 'PsPasswd', 2, 206, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2053, 'SDelete', 2, 207, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2054, 'Sysinternals LLC - SDelete 1.61', 2, 207, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2055, 'Sysinternals LLC - ShareEnum 1.6', 2, 208, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2056, 'ShareEnum', 2, 208, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2057, 'Sysinternals LLC - Sync 2.2', 2, 209, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2058, 'Sync', 2, 209, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2059, 'Sysinternals LLC - Sysinternals TCPView 3.5', 2, 210, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2060, 'TCPView', 2, 210, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2061, 'Sysinternals LLC - VMMap 3.11', 2, 211, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2062, 'VMMap', 2, 211, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2063, 'Sysinternals LLC - Whois 1.11', 2, 212, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2064, 'Whois', 2, 212, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2065, 'Tableau', 2, 213, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2066, 'TCL', 9, 365, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2067, 'TCPLink Enterprise Server 6', 2, 214, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2068, '(Canon IT Solutions) TCPLink Enterprise Server 6', 2, 214, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2069, 'TERADATA', 2, 215, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2070, 'Teradata hors Radia', 2, 215, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2071, 'Teradata QS Server', 2, 216, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2072, 'TERADATA QUERY SCHEDULER SERVER VERSION 15', 2, 216, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2073, 'TIBCO Business Works', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2074, 'Tibco BW', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2075, 'BusinessWorks', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2076, 'TIBCO Business Works (BW)', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2077, 'Integration Manager', 5, 481, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2078, 'Tibco-IM', 5, 481, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2079, 'Tibco Integration Manager', 5, 481, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2080, 'Tibco InConcert', 2, 218, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2081, 'TIBCO Rendezvous (RV)', 2, 219, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2082, 'TIBCO Rendezvous', 2, 219, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2083, 'Tivoli Access Manager (TAM)', 2, 220, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2084, 'Tivoli Access Manager 6.1', 2, 220, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2085, 'TortoiseCVS', 2, 221, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2086, 'TortoiseSVN', 2, 222, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2087, 'TortoiseSVN 1.8', 2, 222, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2088, 'TSQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2089, 'Transact-SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2090, 'Trasact SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2091, 'T-SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2092, 'Transact SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2093, 'TSO/ISPF', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2094, 'ispf', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2095, 'TSO', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2096, 'TSO ISPF', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2097, 'TWS zCentric 8.4', 2, 224, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2098, 'TWS Zcentric', 2, 224, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2099, 'TypeScript', 9, 367, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2100, 'UltiDev Web Server Pro (UWS)', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2101, 'UltiDev Web Server Pro', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2102, 'UltiDev Web Server Pro 2', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2103, 'UltiDev Cassini Pro', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2104, 'Uniface', 2, 225, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2105, 'Unix', 6, 578, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2106, 'IBM AIX 6.1 6100 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2107, 'AIX 7.1 7100-04-06-1806', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2108, 'AIX-6', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2109, 'AIX Enterprise', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2110, 'IBM AIX', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2111, 'AIX7.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2112, 'AIX 7100-05-03-1838', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2113, 'IBM - AIX Standard Edition 7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2114, 'IBM AIX 5.3, SERVICE PACK TL12 SP08', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2115, 'AIX7.2.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2116, 'AIX 6.1.0.0.09', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2117, 'AIX 7.2.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2118, 'AIX 5.3 5300-12-07-1241', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2119, 'AIX 6.1.9.101', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2120, 'AIX 5.3.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2121, 'AIX 7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2122, 'AIX 7.1 7100-05-03-1846', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2123, 'AIX 5.3.0.0.08', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2124, 'AIX 6.1 6100-09-09-1717', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2125, 'AIX 7.1 7100-04-01-1543', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2126, 'AIX 6100-09-09-1717', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2127, 'IBM AIX 6.1 Enterprise 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2128, 'AIX 7.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2129, 'IBM AIX 7.1 x', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2130, 'AIX 7.1 7100-05-03-1838', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2131, 'AIX7.2', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2132, 'AIX 6.1 6100-09-12-1838', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2133, 'AIX (Linux)', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2134, 'IBM - AIX Express Edition 7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2135, 'AIX 5.3.0.0.12', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2136, 'AIX', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2137, 'IBM AIX 6.1 6100 32 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2138, 'AIX: 7.2', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2139, 'AIX 6.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2140, 'AIX 5.3', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2141, 'IBM AIX 5.3 5300 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2142, 'AIX 5.2.0.0.09', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2143, 'AIX 5.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2144, 'AIX 7100-05-03-1846', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2145, 'AIX 7.2 7200-03-03-1914', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2146, 'AIX6.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2147, 'IBM AIX 7.1 7100 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2148, 'AIX 7.1 7100-05-04-1914', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2149, 'IBM AIX 5.x', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2150, 'AIX 6.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2151, 'AIX 7.1.5.16', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2152, 'AIX 6.1.0.0 UNIX LPAR', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2153, 'AIX 5300-12-07-1241', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2154, 'IBM AIX 5.3, SERVICE PACK TL12 SP01', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2155, 'IBM - AIX 6.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2156, 'IBM AIX 6.1x', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2157, 'AIX7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2158, 'AIX 7100-04-05-1720', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2159, 'AIX Express', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2160, 'IBM AIX 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2161, 'AIX Standard', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2162, 'AIX 6.1.8.16', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2163, 'FreeBSD (64-bit)', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2164, 'FreeBSD', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2165, 'FreeBSD 8.X', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2166, 'FreeBSD 8.4', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2167, 'Sun Solaris 10 OS', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2168, 'Solaris 11.2 SPARC', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2169, 'Solaris UNIX', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2170, 'Unix Servers (Solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2171, 'Oracle Solaris 11.3 SPARC', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2172, 'SUN 5.10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2173, 'SOLARIS 10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2174, 'Sun Solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2175, 'Solaris 5.10 (Generic_150400-61)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2176, 'Solaris 5.10 (Generic_150400-62)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2177, 'Solaris (Sun OS 5.9)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2178, 'Solaris 5.10 (Generic_150400-55)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2179, 'SUNOS 5.10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2180, 'Sun Solaris - 5.10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2181, 'Solaris 10 (SunOS 5.10)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2182, 'Oracle Solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2183, 'Unix - SunOS - 5.10 Generic_147147-26', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2184, 'Solaris 1 (SPARC)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2185, 'SUN OS', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2186, 'solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2187, 'SunSolaris 10.0', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2188, 'SOLARIS 9', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2189, 'SunOS', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2190, 'SUN 5.9', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2191, 'SOLARIS 8', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2192, 'SunOS 5.1', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2193, 'SunOS 5.11', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2194, 'Oracle Solaris 10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2195, 'Sun Solaris 10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2196, 'HPUX 11i V1', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2197, 'HP-UX 11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2198, 'HPUX 11i V3', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2199, 'HP/UXB.11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2200, 'HPUX B.11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2201, 'HPUX 11', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2202, 'hp-ux', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2203, 'HPUX 11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2204, 'HP-UX B.11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2205, 'HPUX 11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2206, 'HP-UX 11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2207, 'HP-UX B.11.00', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2208, 'HP-UX B.11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2209, 'HP-UX B.11.11', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2210, 'HP 10.20', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2211, 'HP Unix', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2212, 'HP UX', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2213, 'HP-UX 11.11', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2214, 'HPUX', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2215, 'HPUX-11i V3', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2216, 'HP-UX B.10.20', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2217, 'HP/UXB.11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2218, 'HP-UX 10.20', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2219, 'Visual Basic .Net', 9, 368, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2220, 'VB.NET', 9, 368, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2221, 'VB Script', 9, 369, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2222, 'VBscript', 9, 369, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2223, 'NetManage-ViewNow', 2, 226, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2224, 'ViewNow X Server', 2, 226, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2225, 'Virtual I/O Server', 2, 227, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2226, 'VIO 2.2.0.10', 2, 227, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2227, 'VIOS', 2, 227, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2228, 'visibroker', 2, 228, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2229, 'VB6', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2230, 'VB 6.0', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2231, 'visualbasic', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2232, 'VB', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2233, 'VISUAL BASIC 6', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2234, 'Visual Basic', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2235, 'Visual Basic 6.0', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2236, 'Visusal Basic', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2237, 'Visual Basic for Applications (VBA)', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2238, 'Visual Basic for Applications', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2239, 'VBA', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2240, 'Access VB', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2241, 'Visual FoxPro', 9, 372, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2242, 'vfoxpro', 9, 372, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2243, 'VisualForce', 10, 509, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2244, 'ESXi', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2245, 'ESXi 5.1', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2246, 'VM ESXi 5.1', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2247, 'VM ESXi 6.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2248, 'VM ESXi 5.5', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2249, 'VMWARE ESXI SERVER 5.5', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2250, 'VM ESXi 5.0.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2251, 'VMware ESXi 5.5.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2252, 'VM ESXi 6.5', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2253, 'VMWare ESX', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2254, 'VM ESXi 5.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2255, 'VMWare ESXi', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2256, 'VMWARE ESXI SERVER 5.1', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2257, 'VMware Appliance', 3, 569, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2258, 'VMware Server', 3, 569, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2259, 'VMware Solution Exchange Marketplace (VSX)', 2, 229, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2260, 'VSX', 2, 229, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2261, 'VMware Solution Exchange Marketplace', 2, 229, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2262, 'VMware - VMware Tools 10.2', 2, 230, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2263, 'VMware Tools', 2, 230, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2264, 'VMware - VMware vCenter Server 5.5', 2, 231, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2265, 'VMware vCenter', 2, 231, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2266, 'VoiceXML', 9, 373, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2267, 'VXML', 9, 373, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2268, 'WebFOCUS', 2, 232, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2269, 'Web Focus', 2, 232, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2270, 'FOCEXEC', 2, 232, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2271, 'Web Logic Integration', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2272, 'WLI 8', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2273, 'WebLogic Integration', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2274, 'Web Logic Integration 9.2.0.0', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2275, 'webMethods Integration Server', 8, 283, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2276, 'WebMethods', 8, 283, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2277, 'Webmethods 9.7', 8, 283, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2278, 'WAS 7', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2279, 'websphere 8.0.0.4', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2280, 'IBM WEBSPHERE APPLICATION SERVER VERSION 6.1.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2281, 'WEBSPHERE APPLICATION SERVER - BASE VERSION 8.5.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2282, 'WEBSPHERE APPLICATION SERVER 8', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2283, 'Websphere Application Server 6.x', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2284, 'websphere', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2285, 'WebSphere Application Server 9.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2286, 'IBM WebSphere Application Server Network Deployment, 8.0.0.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2287, 'WebSphere Application Server (WAS)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2288, 'IBM WebSphere Application Server Network Deployment 7', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2289, 'WebSphere Application Server 8.5.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2290, 'WAS ND8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2291, 'WAS7', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2292, 'WebSphere Application Server 5.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2293, 'WebSphere Application Server 8.5.5.6', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2294, 'WebSphere Application Server 5.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2295, 'WebSphere Application Server 8.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2296, 'IBM WebSphere 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2297, 'Websphere 9.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2298, 'WebSphere 7.0.0.27', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2299, 'IBM - WebSphere Application Server - Base 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2300, 'WebSphere Application Server 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2301, 'WEBSPHERE APPLICATION SERVER 8.5.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2302, 'WebSphere Application Server 8.5 (WAS)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2303, 'Websphere AS (JVM)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2304, 'WebSphere App Server', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2305, 'WebSphere Application Server 6.1 (WAS)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2306, 'WEBSPHERE APPLICATION SERVER', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2307, 'WAS 6.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2308, 'WebSphere 8.0.0.4', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2309, 'WEBSPHERE APPLICATION SERVER 6.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2310, 'IBM WebSphere', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2311, 'Websphere Application Server 8.5.5.11', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2312, 'WebSphere Application Server 8.5.5.8', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2313, 'IBM WebSphere Application Server 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2314, 'Websphere (WAS7)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2315, 'IBM WebSphere Application', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2316, 'WAS 6.x', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2317, 'WAS', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2318, 'IBM OpenStack Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2319, 'IBM WebSphere Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2320, 'Open Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2321, 'IBM Open Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2322, 'WebSphere Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2323, 'IBM WebSphere Application Server Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2324, 'IBM WAS Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2325, 'WebSphere Application Server Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2326, 'WAS Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2327, 'IBM Cloud WebSphere Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2328, 'OpenStack Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2329, 'WebSphere Commerce Suite (WCS)', 2, 234, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2330, 'WebSphere Commerce', 2, 234, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2331, 'WMB 6.1', 2, 235, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2332, 'WebSphere Message Broker v6.0', 2, 235, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2333, 'WebSphere Message Broker', 2, 235, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2334, 'WebSphere Portal Version 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2335, 'WebSphere Portal Enable Limited Use 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2336, 'WebSphere Portal Server 6.0', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2337, 'WebSphere Portal Enable 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2338, 'WebSphere Portal Extend 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2339, 'WebSphere Portal Server', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2340, 'WebSphere Portal Limited Use 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2341, 'WebSphere Portal Extend Limited Use 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2342, 'Websphere Process Server', 8, 287, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2343, 'Websphere Process Server 8.5', 8, 287, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2344, 'Wherescape Red', 2, 236, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2345, 'Windchill 11.1', 2, 237, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2346, 'Windchill', 2, 237, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2347, 'windows nt', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2348, 'Windows', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2349, 'Windows OS: Windows NT', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2350, 'Windows NT 6.1 Service Pack 1', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2351, 'Windows NT 6.1', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2352, 'Windows NT 4.0', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2353, 'Microsoft Windows NT 6.1', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2354, 'Window', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2355, 'Microsoft Windows NT 4.0', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2356, 'WINDOWS6.1.7601', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2357, 'Windows NT 6.1Windows NT 6.1', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2358, 'Windows Indexing Service', 2, 238, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2359, 'IIS Index Search Server', 2, 238, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2360, 'WTS', 2, 239, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2361, 'Windows Terminal Server', 2, 239, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2362, 'Windows Terminal Server (WTS)', 2, 239, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2363, 'Windows 7 Standard', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2364, 'WINDOWS 10 SERVER STANDARD EDITION X64', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2365, 'Microsoft Windows 7 (64-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2366, 'Microsoft Windows XP Professional (32-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2367, 'Windows 7 Professional x64', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2368, 'Microsoft Microsoft Windows Entreprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2369, 'Microsoft Windows 2000', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2370, 'Microsoft Windows 10', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2371, 'MS Microsoft Windows 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2372, 'Microsoft Windows 7 Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2373, 'Microsoft Microsoft Windows 7 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2374, 'Microsoft Windows 10 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2375, 'Win Desktop', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2376, 'Windows 10 Pro', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2377, 'Windows 10', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2378, 'Windows 7 Ultimate', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2379, 'Microsoft Windows 8 (64-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2380, 'Microsoft Windows XP', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2381, 'Windows 10 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2382, 'Windows XP', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2383, 'Windows 10 Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2384, 'Windows 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2385, 'Microsoft Windows 10 (64-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2386, 'Win 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2387, 'windowsxp', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2388, 'Microsoft Windows Unknown', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2389, 'Windows 7 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2390, 'Windows XP Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2391, 'Windows 7 Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2392, 'Window XP', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2393, 'Microsoft Windows 7 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2394, 'Microsoft Windows 7 - SOE', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2395, 'Windows 7 Enterprise Edition', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2396, 'Windows 8', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2397, 'Microsoft Windows 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2398, 'Microsoft Windows 7 (32-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2399, 'Windows Embedded Standard 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2400, 'Win10', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2401, 'Windows 2003', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2402, 'Windows Server 2012 R9', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2403, 'Windows 2003 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2404, 'Windows 2008 Enterprise R2 x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2405, 'Windows Server 2003 SE x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2406, 'Microsoft Windows Server 2008 R2 Standard Service Pack 1, 64-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2407, 'WINDOWS SERVER 2004', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2408, 'WINDOWS 2008R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2409, 'Microsoft Windows Server 2008 Standard Editio', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2410, 'MICROSOFT WINDOWS NT 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2411, 'Windows Server 2008 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2412, 'Windows Server 2012 R3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2413, 'WINDOWS 2003 R2 SERVER STANDARD EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2414, 'Windows Server 28 - i386', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2415, 'Microsoft Microsoft Windows Server 2016 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2416, 'Microsoft(R) Windows(R) Server 2003, Enterprise Edition Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2417, 'Windows Server 2008 Enterprise x64 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2418, 'Windows Server 2016', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2419, 'Microsoft - Windows server 2012 - R2 - Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2420, 'Microsoft(R) Windows(R) Server 2003, Standard Edition R2 Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2421, 'Microsoft Windows Server 2008 R2 Standard x64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2422, 'WINDOWS6.1.7601 Server 2008 R2 Ent x64 SP 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2423, 'Windows Server 2012 R2 Standard (Core)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2424, 'WINDOWS 2008 R2 SERVER STANDARD EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2425, 'Windows Server 2012 R26', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2426, 'Microsoft(R) Windows(R) Server 2003 Standard x64 Edition R2 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2427, 'Windows 2008 Enterprise 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2428, 'Microsoft Windows Server 2003 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2429, 'Windows Server 2012 R2 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2430, 'Windows 2003 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2431, 'Windows 2008 R2 Enterprise 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2432, 'Windows Server 2012 R2 Standard 64 bit Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2433, 'Microsoft Windows Server 2003 Enterprise Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2434, 'Microsoft Windows Server 2000 Advanced', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2435, 'Microsoft Windows Server 2012 R2 St', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2436, 'Windows 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2437, 'Windows 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2438, 'Windows Server 2008 R2 (64 bits)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2439, 'Windows X-Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2440, 'Windows 2008 R2 Standard 6.1.7601 Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2441, 'Windows Server 2003 Standard (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2442, 'Windows 2008 Standard x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2443, 'Microsoft Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2444, 'Microsoft Windows Storage Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2445, 'Windows Server 2003 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2446, 'Windows 2012 R2 Standard 64-Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2447, 'Windows Server 212 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2448, 'Windows Server 2012 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2449, 'Windows Server 2012 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2450, 'Windows Server 2017', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2451, 'Windows Server 2000 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2452, 'Windows Server 2003 Enterprise R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2453, 'Windows Server 2003 SP2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2454, 'Microsoft Windows 2000 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2455, 'w2k12', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2456, 'WINDOWS 2013', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2457, 'WINDOWS 2016 SE 64 BIT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2458, 'Windows Server 2008 R2 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2459, 'Microsoft - Windows 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2460, 'Microsoft Windows Server 2016', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2461, 'Microsoft Windows Server 2000 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2462, 'Windows Server 2012 R12', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2463, 'Window Server 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2464, 'WINDOWS SERVER 2008 ENTERPRISE X64 6.0', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2465, 'Windows server 2008R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2466, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2467, 'MICROSOFT WINDOWS 2008 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2468, 'Microsoft Windows Server 2012 Standardx64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2469, 'MICROSOFT WINDOWS STD 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2470, 'Microsoft(R) Windows(R) Server 2003, Standard Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2471, 'Windows Server 2012 R23', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2472, 'WINDOWS 6.3.9600 Server 2012 R2 Std x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2473, 'Windows 2008 R2 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2474, 'Windows Server 2008 SP1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2475, 'Windows server 2008 R2 standard Service Pack1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2476, 'MICROSOFT WINDOWS STD 2008 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2477, 'Microsoft Windows Server 2008 Standard Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2478, 'Windows 2012 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2479, 'MICROSOFT WINDOWS NT 2003 ENT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2480, 'Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2481, 'Windows Server 2016 Standard 64 bit Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2482, 'MICROSOFT WINDOWS 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2483, 'Windows Server 2003 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2484, 'Windows 2003 Standard5.2.3790', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2485, 'Windows Server 2012 R4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2486, 'Windows Server 2012 R7', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2487, 'Windows Server 2012 R17', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2488, 'Windows 2012 R', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2489, 'Windows Server 2012 R8', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2490, 'WINDOWS SERVER 2012 R2 DATACENTER', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2491, 'Microsoft Windows Server 2003 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2492, 'Windows 2008 Enterprise 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2493, 'MICROSOFT WINDOWS 2008 ENT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2494, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2495, 'Windows 2012 R2 Standard 6.3.9600', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2496, 'Windows 2000 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2497, 'Windows Server 2012 R20', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2498, 'Windows Server 2000', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2499, 'Windows Server 2003 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2500, 'Windows Server 2008 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2501, 'Windows 2016 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2502, 'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2503, 'Microsoft Windows Server 2016 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2504, 'WINDOWS SERVER 2008 R2 STANDARD 6.1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2505, 'Microsoft - Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2506, 'Microsoft Windows Server 2012 (64-bit) - Server 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2507, 'Microsoft Windows Server 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2508, 'Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2509, 'Windows 2016 Datacenter10.0.14393', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2510, 'Windows Server 2008 64-Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2511, 'windows server 2008 r2 ent', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2512, 'Windows Server 212', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2513, 'windows6.3.9600', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2514, 'Windows 2012 R2 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2515, 'Microsoft Windows Server 2000 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2516, 'windows6.3.9600 server 2012 r2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2517, 'Windows 2008 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2518, 'Microsoft Microsoft Windows Server 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2519, 'Windows 2003 Server Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2520, 'Windows Server 2012 R16', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2521, 'Window server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2522, 'Microsoft Windows Server 2003 Enterprise Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2523, 'Windows 2003 Server R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2524, 'Windows Server 2012 R21', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2525, 'Microsoft Windows Server 2003 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2526, 'Windows Server 2012 R6', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2527, 'Windows Server 2012 R27', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2528, 'Windows 2008 Standard without Hyper-V6.0.6003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2529, 'WINDOWS SERVER 2012 R2 - Server 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2530, 'Windows 2008 R2 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2531, 'Microsoft Windows Server 2003 Standard (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2532, 'Windows 2012 R2 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2533, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2, 64-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2534, 'Windows Server 2018', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2535, 'Windows 2008 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2536, 'WINDOWS6.3.9600 Server 2012 R2 DC x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2537, 'Windows 2008 Standard 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2538, 'WINDOWS 6.1.7601 Server 2008 R2 Ent x64 SP 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2539, 'WINDOWS SERVER 2012 R2 DATACENTER 6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2540, 'Microsoft Windows Server 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2541, 'Windows Server 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2542, 'Windows server Standard SP2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2543, 'WINDOWS 2003 R2 SERVER ENTERPRISE EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2544, 'Windows 2000', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2545, 'W2K8R2 Standard 64 BIT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2546, 'Windows Server 2008 R2 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2547, 'Windows 2008 Standard6.0.6003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2548, 'Windows2008 R2 Enterprise 64bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2549, 'WINDOWS 2012 R2 SERVER STANDARD EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2550, 'Windows Server 2000 Professional', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2551, 'Microsoft Windows Server 2008 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2552, 'WINDOWS SERVER 2003 R2 ENTERPRISE 5.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2553, 'Win2008R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2554, 'Microsoft Windows Server 2003 Web Edition (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2555, 'Windows 2008 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2556, 'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7601 [Build 7601]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2557, 'Windows Server 2003 Appliance', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2558, 'Windows server 2012 R2 Standared', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2559, 'Windows 2008 ENT R2 (64 bits)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2560, 'Windows Server 2003 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2561, 'Microsoft Windows Server 2003 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2562, 'WIN2008R2 6.1.7601', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2563, 'Microsoft Windows Server 2012 R2 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2564, 'microsoft windows std 2012 tpm', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2565, 'Windows Server 2012 R2 Standardx64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2566, 'microsoft windows 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2567, 'Microsoft Windows Server 2016 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2568, 'Windows 2008 Standard 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2569, 'Microsoft Windows 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2570, 'Microsoft Windows 2000 Server Service Pack 4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2571, 'Microsoft Windows Server 2003 Enterprise x64 Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2572, 'Microsoft Windows Storage Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2573, 'Microsoft Windows Server 2003 Standard x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2574, 'Window2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2575, 'Microsoft Windows NT Server Version 4.0.1381 [Build 1381]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2576, 'Windows Server 2003 Ent', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2577, 'Windows Server 2000 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2578, 'Windows 2008 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2579, 'Microsoft Windows Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2580, 'Microsoft Windows Server 2003 Standard Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2581, 'Windows Server 2003;', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2582, 'WS03', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2583, 'WINDOWS 6.0.6002 Server 2008 Ent x64 SP 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2584, 'Windows 2008 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2585, 'Microsoft Windows Server 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2586, 'Windows Server 2008 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2587, 'Windows Server 2008 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2588, 'windows server 2008 r2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2589, 'Windows 2008 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2590, 'Windows Server 2003 Std 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2591, 'Windows 2008 R2 Standard 64bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2592, 'Microsoft Windows Server 2008 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2593, 'MS WINDOWS SERVER 08', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2594, 'Microsoft Windows 2003 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2595, 'Windows Server 2012 R25', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2596, 'MICROSOFT WINDOWS NT 2003 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2597, 'Win Server 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2598, 'Windows 2003 R2 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2599, 'WINDOWS 5.2.3790 Server 2003 Ent SP 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2600, 'WIN2014', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2601, 'Windows Server 2012 R19', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2602, 'Microsoft Windows Server 2012 R2 Standard Version 6.3.9600 [Build 9600]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2603, 'Windows Server 2008 R2 Ent 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2604, 'Win 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2605, 'Microsoft Windows Server 2008 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2606, 'WINDOWS 6.3.9600 Server 2012 R2 DC x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2607, 'Windows Server 2012 R24', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2608, 'Win Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2609, 'Windows 2008 Standard R2 x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2610, 'Windows Server 2008 R2 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2611, 'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 6196 MB memory installed', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2612, 'Windows2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2613, 'Windows 2008 R2 Standard6.1.7601', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2614, 'Windows 2016', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2615, 'Windows 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2616, 'Windows Server 2008 R2 64Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2617, 'Windows Server 2012 R14', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2618, 'Windows Storage Server 2008 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2619, 'Windows Server 2008 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2620, 'Microsoft Windows Server 2003 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2621, 'Windows OS 2008 Server R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2622, 'Microsoft Microsoft Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2623, 'Windows Server 28 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2624, 'WINDOWS 2003 SERVER ENTERPRISE EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2625, 'Microsoft Windows Server 2003 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2626, 'Windows Server 2008 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2627, 'Windows Server 2003 Std 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2628, 'Windows 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2629, 'Wintel', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2630, 'Windows Server 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2631, 'Windows Server 2003 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2632, 'Microsoft Windows Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2633, 'Windows 2000 Standard Server SP4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2634, 'WINDOWS6.3.9600 Server 2012 R2 Std x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2635, 'Microsoft Windows 2000 Server Version 5.0.2195 [Build 2195]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2636, 'Microsoft Windows Server 2016 St', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2637, 'WINDOWS SERVER 2008 ENTERPRISE 6.0', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2638, 'Windows Server 2008 R2 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2639, 'Windows 2003 Enterprise5.2.3790', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2640, 'WINDOWS 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2641, 'Windows 2008 R2 OS', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2642, 'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1, 64-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2643, 'Windows Server 2008 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2644, 'Windows 2003 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2645, 'Windows 2008 R2 Enterprise6.1.7601', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2646, 'Windows 2003 Standard 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2647, 'WINDOWS SERVER 2003 APPLIANCE 5.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2648, 'Windows Server 2003 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2649, 'WS08R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2650, 'Windows Storage Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2651, 'WINDOWS SERVER 2003 STANDARD 5.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2652, 'Windows 2008 Enterprise 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2653, 'Microsoft Windows Server 2012 R2 for Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2654, 'Windows Server 2000 Advanced', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2655, 'Microsoft Windows Server 2008 R2 Enterprise x64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2656, 'WINDOWS 2008 R2 SERVER ENTERPRISE EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2657, 'Windows Server 2008 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2658, 'Windows Server 2003 Web Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2659, 'WINDOWS SERVER 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2660, 'Microsoft Windows 2012 R2 Server Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2661, 'w2k8r2sp1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2662, 'Microsoft Windows Server 2008 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2663, 'Windows Server 2003 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2664, 'Microsoft Windows Server 2008 R2 Standa', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2665, 'Win 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2666, 'Windows Server 2012 R29', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2667, 'Microsoft - Windows server 2008 - Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2668, 'Microsoft Windows Server 2003 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2669, 'Microsoft(R) Windows(R) Server 2003, Enterprise Edition R2 Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2670, 'Windows 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2671, 'WINDOWS SERVER 2012 R2 STANDARD 6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2672, 'Windows Server 2008 Enterprise R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2673, 'Microsoft Windows Server 2008 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2674, 'Windows 2008 R2 Standard 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2675, 'Microsoft Windows Server 2008 R2 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2676, 'Windows 2003 Enterprise 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2677, 'Microsoft - Microsoft Windows Server 2012 for Microsoft Windows Server 2012 Standard 6.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2678, 'Windows 2012 Storage R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2679, 'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 4096 MB memory installed', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2680, 'Microsoft - Windows Server 2012 R2 - 6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2681, 'Windows Server 2012 R5', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2682, 'Microsoft Windows Server 2012 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2683, 'MICROSOFT WINDOWS NT 2003 ENT TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2684, 'Windows 2012 Server R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2685, 'Windows 2016 Standard10.0.14393', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2686, 'Microsoft Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2687, 'Windows Server 2003 Ent 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2688, 'MICROSOFT WINDOWS 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2689, 'WINDOWS 2003 SERVER ENTERPRISE EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2690, 'Windows 2012 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2691, 'WINDOWS 2000 ADVANCED SERVER 5.0', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2692, 'Microsoft Windows NT 4.0 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2693, 'Windows Server2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2694, 'Win Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2695, 'Microsoft Windows Server 2008 Enterprise Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2696, 'MICROSOFT WINDOWS STD 2012 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2697, 'Windows 2003 Enterprise 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2698, 'Windows 2008 Enterprise R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2699, 'Windows 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2700, 'Microsoft Microsoft Windows 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2701, 'WINDOWS 2003 SERVER STANDARD EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2702, 'windows server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2703, 'Microsoft Windows Server 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2704, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2705, 'Win Server 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2706, 'Windows 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2707, 'Microsoft Windows Server 2003 Standard (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2708, 'Microsoft Windows Server 2008 R2 Standard. Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2709, 'Windows 2000 Server Service Pack 4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2710, 'Windows Server 2003 R2 Ent 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2711, 'Windows Server 2012 r2 64bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2712, 'Windows 2008 Enterprise 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2713, 'Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2714, 'Windows Server 2012 R15', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2715, 'Windows 2003 Standard 5.2.3790 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2716, 'Windows 2012 Standard6.2.9200', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2717, 'MICROSOFT WINDOWS 2016 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2718, 'Microsoft Windows Server 2016 or later (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2719, 'Windows Storage Server 2012 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2720, 'Windows 2003 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2721, 'Windows Server 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2722, 'Microsoft Windows Server 2012 R2 Standardx64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2723, 'Windows 2008 R2 Enterprise 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2724, 'Windows 2003 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2725, 'Windows 2012 R2 Standard6.3.9600', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2726, 'Windows Server Threshold, 64-bit (Build 14393)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2727, 'Windows Server 2012 R28', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2728, 'Windows Server 2012 R13', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2729, 'Microsoft Microsoft Windows Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2730, 'Microsoft Windows Server 2008 R2 Standard Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2731, 'Windows Server 2003 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2732, 'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7600 [Build 7600]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2733, 'Microsoft - Windows server 2003 - Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2734, 'Windows 2008 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2735, 'MicrosoftWindows Server 2008 R2 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2736, 'windows6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2737, 'Microsoft - Windows Server 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2738, 'Windows 2016 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2739, 'Windows Server 2003 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2740, 'Windows Server NT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2741, 'Windows Server 2012 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2742, 'Microsoft Windows Server 2008 R2 Standard Version 6.1.7601 [Build 7601]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2743, 'Windows Server 2012 R18', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2744, 'Windows 2008 Enterprise6.0.6003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2745, 'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 1, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2746, 'Windows Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2747, 'Windows Server 2019 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2748, 'windows server 2008 R2 SP1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2749, 'Win 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2750, 'Win2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2751, 'Win2012R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2752, 'windows server threshold', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2753, 'win2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2754, 'Windows 2003 Standard x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2755, 'Microsoft Windows Storage Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2756, 'Windows Server 28', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2757, 'Microsoft Windows Server 2008 Standard Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2758, 'Windows Server 2008 R2 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2759, 'Windows Server 2008 R2 with Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2760, 'Windows Server 2012 R11', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2761, 'Windows Server 2012 R10', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2762, 'Windows Server 2012 R30', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2763, 'WINDOWS 2016 STANDARD EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2764, 'Windows Server 2012 R22', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2765, 'Windows Server 2003 Standard (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2766, 'WINDOWS SERVER 2008 R2 ENTERPRISE 6.1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2767, 'Microsoft Windows Server 2008 R2 (64-bit) - Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2768, 'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2769, 'Windows Server 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2770, '(WingArc) SVF 9.1', 2, 240, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2771, 'WingArc SVF', 2, 240, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2772, 'WinMerge', 2, 241, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2773, 'WinMerge.org - WinMerge 2.14', 2, 241, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2774, 'RARLab - WinRAR 5.31', 2, 242, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2775, 'WinRAR', 2, 242, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2776, 'WinSCP.net - WinSCP 5.11', 2, 243, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2777, 'WinSCP', 2, 243, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2778, 'Wise', 2, 244, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2779, 'Wise Package Studio', 2, 244, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2780, 'Wordpress', 2, 245, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2781, 'XAMPP', 2, 246, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2782, 'Xbase++', 9, 374, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2783, 'Xbase++ v1.9', 9, 374, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2784, 'ZAP BI Application Test Server', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2785, 'ZAP BI Application Stage Server', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2786, 'ZAP BI', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2787, 'ZAP BI Application Server', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2788, 'ZMQ', 2, 248, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2789, 'ZeroMQ', 2, 248, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2790, 'Zerto Vritual Appliance', 2, 249, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2791, 'Zerto Virtual Replication', 2, 249, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2792, 'Fedora', 6, 453, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2793, 'Amazon Linux', 6, 454, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2794, 'Oracle RTD', 8, 289, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2795, 'Oracle Real-Time Decisions (RTD)', 8, 289, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2796, 'Oracle Real-Time Decisions', 8, 289, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2797, 'PowerHA', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2798, 'IBM High Availability Cluster Multiprocessing', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2799, 'IBM PowerHA', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2800, 'IBM PowerHA SystemMirror', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2801, 'Tivoli Netcool/OMNIbus', 2, 251, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2802, 'OMNIbus', 2, 251, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2803, 'Tivoli Netcool', 2, 251, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2804, 'IBM ILOG Views', 2, 252, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2805, 'ILOG Views', 2, 252, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2806, 'IBM ILOG CPLEX', 2, 253, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2807, 'ILOG CPLEX', 2, 253, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2808, 'IBM ILOG Jviews', 2, 254, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2809, 'ILOG Jviews', 2, 254, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2810, 'IBM ILOG Elixir', 2, 255, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2811, 'ILOG Elixir', 2, 255, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2812, 'ILOG Supply Chain Apps', 2, 256, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2813, 'IBM ILOG Supply Chain Apps', 2, 256, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2814, 'ILOG Solver', 2, 257, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2815, 'Websphere ILOG JRules BRMS', 2, 601, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2816, 'ILOG JRules BRMS', 2, 601, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2817, 'Application Lifecycle Management', 1, 511, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2818, 'ALM', 1, 511, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2819, 'Application Lifecycle Management (ALM)', 1, 511, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2820, 'Assembler Language', 1, 512, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2821, 'Assembler', 1, 512, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2822, 'BMS', 1, 513, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2823, 'Batch Management Software (BMS)', 1, 513, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2824, 'Batch Management Software', 1, 513, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2825, 'Business Object Reports', 1, 514, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2826, 'Common Gateway Interface (CGI)', 1, 515, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2827, 'Common Gateway Interface', 1, 515, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2828, 'CGI', 1, 515, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2829, 'Compopent Object Model', 1, 516, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2830, 'COM', 1, 516, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2831, 'Compopent Object Model (COM)', 1, 516, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2832, 'Common Object Request Broker Architecture (CORBA)', 1, 517, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2833, 'Common Object Request Broker Architecture', 1, 517, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2834, 'CORBA', 1, 517, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2835, 'CORBA Interface Definition Language (CORBA IDL)', 1, 518, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2836, 'CORBA Interface Definition Language', 1, 518, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2837, 'CORBA IDL', 1, 518, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2838, 'Data Control Language', 1, 519, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2839, 'DCL', 1, 519, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2840, 'Database', 1, 520, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2841, 'DB', 1, 520, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2842, 'DB (database)', 1, 520, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2843, 'EDI', 1, 521, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2844, 'Electronic Data Interchange', 1, 521, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2845, 'Electronic Data Interchange (EDI)', 1, 521, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2846, 'Web Server', 1, 522, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2847, 'Java-based Document Object Model for XML', 1, 523, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2848, 'Java-based Document Object Model for XML (JDOM)', 1, 523, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2849, 'JDOM', 1, 523, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2850, 'Lightweight Directory Access Protocol', 1, 524, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2851, 'LDAP', 1, 524, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2852, 'Lightweight Directory Access Protocol (LDAP)', 1, 524, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2853, 'Open Database Connectivity (ODBC)', 1, 525, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2854, 'Open Database Connectivity', 1, 525, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2855, 'ODBC', 1, 525, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2856, 'Order Management System (OMS)', 1, 526, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2857, 'Order Management System', 1, 526, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2858, 'OMS', 1, 526, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2859, 'Oracle Web Services', 1, 527, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2860, 'Reporting Services', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2861, 'REST', 1, 529, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2862, 'Representational State Transfer', 1, 529, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2863, 'Representational State Transfer (REST)', 1, 529, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2864, 'Service-Oriented Architecture', 1, 530, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2865, 'Service-Oriented Architecture (SOA)', 1, 530, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2866, 'SOA', 1, 530, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2867, 'Simple Object Access Protocol (SOAP)', 1, 531, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2868, 'SOAP', 1, 531, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2869, 'Simple Object Access Protocol', 1, 531, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2870, 'Sturctured Query Language', 1, 572, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2871, 'SQL', 1, 572, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2872, 'YAML', 1, 533, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2873, 'MVC', 1, 574, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2874, 'Application Server', 1, 535, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2875, 'Cloud', 1, 536, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2876, 'Competency and Quality Assurance Server', 1, 537, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2877, 'Device Provisioning Engines', 1, 538, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2878, 'Device Provisioning Engines (DPE)', 1, 538, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2879, 'DPE', 1, 538, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2880, 'E-business solution', 1, 539, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2881, 'Ebusiness solution', 1, 539, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2882, 'ESB', 1, 540, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2883, 'Enterprise Service Bus', 1, 540, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2884, 'Enterprise Service Bus(ESB)', 1, 540, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2885, 'File Server', 1, 541, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2886, 'General Ledger', 1, 542, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2887, 'HTTP client', 1, 543, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2888, 'HTTP Server', 1, 522, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2889, 'Integrated Safe System of Work', 1, 545, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2890, 'ISSOW', 1, 545, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2891, 'Integrated Safe System of Work (ISSOW)', 1, 545, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2892, 'Internet Exchange Point - Full Stack (ixp-ft)', 1, 546, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2893, 'IMAP', 1, 547, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2894, 'Internet Message Access Protocol', 1, 547, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2895, 'Internet Message Access Protocol (IMAP)', 1, 547, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2896, 'JSON', 1, 548, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2897, 'KVS Application Server', 1, 549, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2898, 'KVS File Server', 1, 550, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2899, 'KVS Proxy Server', 1, 551, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2900, 'mainframe', 1, 552, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2901, 'Manufacturing Execution System', 1, 553, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2902, 'Manufacturing Execution System (MES)', 1, 553, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2903, 'MES', 1, 553, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2904, 'Mobile', 1, 554, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2905, 'NonSQL', 1, 555, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2906, 'SaaS', 1, 556, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2907, 'Storage Area Network', 1, 557, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2908, 'Storage Area Network (SAN)', 1, 557, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2909, 'SAN', 1, 557, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2910, 'Supplier Registration System', 1, 558, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2911, 'Supplier Registration Application Server', 1, 558, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2912, 'Supplier Registration System Application Server', 1, 558, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2913, 'Virtual Appliance', 1, 559, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2914, 'Webtop', 1, 560, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2915, 'Proxy Server', 1, 561, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2916, 'Application/Utility', 1, 562, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2917, 'Utility', 1, 562, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2918, 'SQLite', 2, 258, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2919, 'OpenBSD', 6, 590, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2920, 'z/VSE', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2921, 'Z/Virtual System Environment', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2922, 'VSE', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2923, 'DOS/VSE', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2924, 'Microsoft Disk Operating System', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2925, 'Microsoft DOS', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2926, 'MS DOS', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2927, 'MS-DOS', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2928, 'VME/B', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2929, 'VME', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2930, 'Virtual Machine Environment', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2931, 'VME 2900', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2932, 'OpenVME', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2933, 'DOS/360', 6, 597, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2934, 'Disk Operating System/360', 6, 597, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2935, 'TPF', 6, 598, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2936, 'z/TPF', 6, 598, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2937, 'Transaction Processing Facility', 6, 598, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2938, 'z/VM', 6, 608, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2939, 'Berkeley Software Distribution', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2940, 'BSD', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2941, 'Berkeley System Distribution', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2942, 'BSD Unix', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2943, 'Berkeley Unix', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2944, 'Wildfly', 7, 493, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2946, 'Job Entry Subsystem 3', 2, 1, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2947, 'Job Entry Subsystem', 2, 1, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2948, 'Job Entry Subsystem 2/3', 2, 1, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2949, 'JES2', 2, 1, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2950, 'JES3', 2, 1, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2952, 'Acrobat forms', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2953, 'Adobe Acrobat 3D', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2954, 'Adobe Acrobat Professional', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2955, 'Acrobat Professional', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2956, 'Adobe Acrobat Pro', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2957, 'Acrobat 8', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2958, 'Adobe Acrobat Capture', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2960, 'Acrobat file', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2961, 'Acrobat reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2962, 'Adobe Reader X', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2963, 'Acrobat 3D', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2964, 'Adobe Reader LE', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2965, 'Adobe acrobat', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2966, 'Acrobat Pro', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2967, 'Acrobat 7', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2968, 'Adobe Acrobat 9.5.5', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2969, 'Adobe reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2970, 'Adobe Acrobat Viewer', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2971, 'Acrobat Exchange', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2972, 'Acrobat document', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2973, 'Acroread', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2974, 'AdobeR Reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2975, 'Adobe Acrobat Distiller', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2976, 'Acrobat PDFMaker 10.0 for Word', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2977, 'Adobe Acrobat X', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2978, 'Adobe Acrobat Reader DC', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2979, 'Adobe Reader', 2, 4, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2981, 'Ansible software', 2, 5, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2982, 'Activemq', 2, 6, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2983, 'ActiveMQ', 2, 6, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2984, 'HBase', 2, 7, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2987, 'Kafka Streams', 2, 9, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2988, 'Kafka (software)', 2, 9, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2989, 'Apache kafka', 2, 9, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2991, 'Solr', 2, 11, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2992, 'Subversion (vcs)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2993, 'Commit access', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2994, 'Svn (vcs)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2995, 'Subverson', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2996, 'Subversion branch', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2997, 'Svn (software)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2999, 'Sub Versioning', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3000, 'Apache subversion', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3001, 'Svn software', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3002, 'Subversion branching', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3003, 'SVN branch', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3004, 'Subversion (program)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3005, 'Subversive branching', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3006, 'Svn vcs', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3007, 'Subversion (software)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3008, 'Svn (Unix)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3009, 'Subversion (Software)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3010, 'Asterisk operator', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3011, 'Asterisk character', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3012, 'Asterisks', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3013, 'Asterisk (punctuation)', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3014, 'Asterick', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3015, 'Asterisked form', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3016, 'Splat (pronouns)', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3017, 'Heavy asterisk', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3018, 'Asteract', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3019, 'Astrick', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3020, 'Bluebeam Revu', 2, 17, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3021, 'BDE (Borland)', 2, 20, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3022, 'Borland BDE', 2, 20, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3023, 'ODAPI', 2, 20, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3024, 'Eclipse BIRT', 2, 21, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3025, 'BIRT Reports', 2, 21, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3026, 'BIRT Report', 2, 21, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3027, 'Advantage:Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3028, 'Cool:Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3029, 'COOLGen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3030, 'COOL:Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3031, 'Advantage Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3032, 'Coolgen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3033, 'Information Engineering Facility', 2, 22, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3035, 'CA Panvalet', 2, 24, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3037, 'TELON', 2, 25, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3038, 'Chef (tool)', 2, 27, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3039, 'Chef-Solo', 2, 27, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3040, 'Chef Community Repository', 2, 27, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3041, 'Chef software', 2, 27, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3042, 'Citrix XenApp', 2, 30, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3044, 'Citrix WinFrame', 2, 30, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3045, 'Winframe', 2, 30, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3046, 'OP3Nvoice', 2, 33, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3047, 'Clarify - Op3nvoice', 2, 33, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3048, 'Laboratory information system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3049, 'Laboratory Information Management System', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3050, 'Laboratory informatics system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3051, 'Lims', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3052, 'Laboratory Information Management Systems', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3053, 'Lab information system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3054, 'Laboratory computer system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3055, 'Laboratory Information Management Software', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3056, 'Laboratory Information System', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3057, 'Cognos Inc.', 2, 36, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3059, 'Macromedia ColdFusion MX', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3060, 'ColdFusion MX', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3062, 'Adobe cold fusion', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3063, 'ColdFusion Components', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3064, 'Cold Fusion programming language', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3065, 'Abobe coldfusion', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3066, 'ColdFusion programming language', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3067, 'ColdFusion', 2, 37, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3068, 'Macromedia ColdFusion', 2, 37, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3069, 'Network Data Mover', 2, 40, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3072, 'Crystal reports', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3073, 'SAP Crystal Reports', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3074, 'Report application server', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3076, 'Db2', 2, 43, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3078, 'IBM DB2 Express-C', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3079, 'DB2/2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3080, 'DB2 Express', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3081, 'SQLCA', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3082, 'Ibm viper', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3083, 'DATABASE 2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3084, 'IBM Db2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3085, 'Db2 for i', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3086, 'DB2 DWE', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3087, 'DB/2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3088, 'IBM PureQuery', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3089, 'DB2 Everyplace', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3090, 'PureQuery', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3092, 'Db/2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3094, 'EMC Documentum', 2, 44, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3095, 'Droopal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3096, 'Deanspace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3097, 'Drupal theming', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3098, 'Droople', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3099, 'CivicSpace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3100, 'Druscal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3101, 'Drupal Con', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3102, 'DrupalCon', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3103, 'Civic Space', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3104, 'Drupla', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3105, 'Durpal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3106, 'DeanSpace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3107, 'Druple', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3108, 'Hack4Dean', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3109, 'Civicspace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3110, 'Acquia Drupal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3111, 'Open Atrium', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3112, 'Eclipse sdk', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3113, 'Mylyn', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3114, 'Java Eclipse', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3115, 'Web Tools Platform', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3116, 'Eclipse software', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3117, 'Eclipse SDK', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3118, 'Eclipse Kura', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3119, 'Eclipse Classic', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3120, 'Eclipse ganymede', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3121, 'Eclipse Europa', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3122, 'Eclipse (computing)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3123, 'Eclipse (platform)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3124, 'Eclipse IDE', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3125, 'Java eclipse', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3126, 'Yoxos OnDemand', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3127, 'Eclipse java', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3128, 'Yoxos', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3129, 'Eclipse (IDE)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3130, 'Eclipse (SDK)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3131, 'Eclipse ide', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3132, 'Eclipse (ide)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3133, 'Eclipse Galileo', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3134, 'Eclipse platform', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3135, 'Eclipse RCP', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3136, 'Java Emitter Templates', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3137, 'Eclipse ADT', 2, 46, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3140, 'Filemaker', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3141, 'FileMaker II', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3142, 'Filemaker Pro', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3143, 'FileMaker Server', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3144, 'FilemakerPro', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3145, 'Google chrome 5', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3146, 'Google Chrome Beta', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3147, 'Google chrome', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3148, 'Google Chrome 12', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3149, 'Chrome software', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3150, 'Google Chrome 14', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3151, 'Chrome (browser)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3152, 'Googlechrome', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3153, 'Chrome Canary', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3154, 'Google Chrome extension', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3155, 'Google Chrome browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3156, 'Google Chrome for IOS', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3157, 'Chrome extension', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3158, 'Extension (Google Chrome)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3159, 'Incognito mode', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3160, 'Chrome browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3161, 'Google Chrome for Android', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3162, 'Google Chrome Extensions Gallery', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3163, 'Google Chrome 4', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3164, 'GChrome', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3165, 'Google Browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3166, 'Chrome google', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3167, 'Chrome (software)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3168, 'Chrome (Google)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3169, 'Chrome web browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3170, 'Google Chrome 13', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3171, 'Google Chrome 11', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3172, 'Google Chrome Canary', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3173, 'Chrome Extensions', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3174, 'Chromium (engine)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3175, 'GBrowser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3176, 'Chrome (web browser)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3177, 'Google Chrome for iOS', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3178, 'Chrome for Android', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3180, 'Pivotal Greenplum Database', 2, 56, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3181, 'Greenplum database', 2, 56, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3182, 'Hadoop distributed file system', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3183, 'Hadoop Distributed Filesystem', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3184, 'Hadoop YARN', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3185, 'HDFS', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3186, 'Amazon Elastic MapReduce', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3187, 'Hadoop Distributed File System', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3188, 'YARN', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3190, 'NorCroft', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3191, 'Norcroft compiler suite', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3192, 'Norcroft C', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3193, 'Norcroft compiler', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3194, 'Norcroft', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3195, 'Tivoli Endpoint Manager', 2, 62, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3196, 'IBM Endpoint Manager', 2, 62, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3197, 'Datastage', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3198, 'IBM InfoSphere', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3199, 'DataStage', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3200, 'IBM WebSphere DataStage', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3202, 'IBM WebSphere Message Broker', 2, 68, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3204, 'IBM MobileFirst', 2, 72, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3205, 'IBM WebSphere ILOG JRules', 2, 73, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3206, 'Spectrum Scale', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3208, 'General Parallel File System', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3209, 'IBM General Parallel File System', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3210, 'Vesta File System', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3211, 'Adstar Distributed Storage Manager', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3213, 'ADSM', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3214, 'ADSTAR Distributed Storage Manager', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3215, 'IBM Tivoli Storage Manager FastBack', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3216, 'Distributed Storage Manager Client', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3217, 'WebSphere Adapters', 2, 80, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3218, 'MQ Series', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3220, 'IBM Message Queue Interface', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3221, 'Mqseries', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3222, 'IBM WebSphere MQ', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3224, 'WebSphere MQ', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3225, 'MQSeries', 2, 81, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3226, 'Hierarchical sequential access method', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3227, 'IBM IMS', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3228, 'Information Management System', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3229, 'IMS DC', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3230, 'IMS/DC', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3231, 'HSAM (computing)', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3232, 'Information management system', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3233, 'Hierarchical Sequential Access Method', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3234, 'IMS/DB', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3235, 'IMS/TM', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3236, 'IMS system', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3237, 'WiZ', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3238, 'Zip (software)', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3239, 'Info-Zip', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3240, 'InfoZip', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3242, 'Berkeley Ingres QUEL', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3243, 'IngresCorporation', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3244, 'Ingres II', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3245, 'Ingres Database', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3246, 'University Ingres', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3247, 'OpenIngres', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3248, 'CA-Ingres', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3249, 'Ingres database', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3250, 'INGRES', 2, 88, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3252, 'Lotus domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3253, 'Notes Release 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3254, 'Lotus Notes 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3255, 'Lotus Notes Mail', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3256, 'Lotus Notes 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3257, 'Lotus Notes Release 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3258, 'Lotus notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3259, 'Eproductivity', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3260, 'Notes 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3261, 'Lodus notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3262, 'Domino XML', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3263, 'Lodus nodes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3264, 'Notes Release 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3265, 'Lodus Nodes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3266, 'IBM Lotus Notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3267, 'IBM Lotus Domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3268, 'Notes Storage Facility', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3270, 'Dominoblog', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3271, 'Lodus Notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3272, 'Lotus Notes Release 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3273, 'Notes 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3274, 'IBM iNotes Webmail Redirect', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3275, 'Domino (software)', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3276, 'HLC Domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3277, 'HCL Notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3278, 'EProductivity', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3279, 'Notes Storage Format', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3281, 'IBM Notes', 2, 93, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3282, 'MaaS 360 (Software)', 2, 94, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3283, 'Malwarebytes'' AntiMalware', 2, 95, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3284, 'Malwarebytes'' Anti-Malware', 2, 95, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3285, 'Malware Bytes', 2, 95, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3287, 'Mark Logic', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3288, 'MarkMail', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3289, 'MarkLogic Corporation', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3290, 'Mark logic', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3292, 'Memory Cache Daemon', 2, 98, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3293, 'Microsoft Access Development', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3294, 'Ms access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3295, 'Ms Access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3296, 'Microsoft Access 2002', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3297, 'Access 2002', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3298, 'MS access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3299, 'Access 97 SR2', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3300, 'Microsoft Access 2007', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3301, 'Access 2', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3302, 'Accdb', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3304, 'MSAccess', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3305, 'Office Access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3306, 'Microsoft Acces', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3307, 'Access 97', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3308, 'MSACCESS', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3309, 'Microsoft access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3310, 'Microsoft Office Access', 2, 99, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3311, 'Biztalk', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3312, 'BizTalk', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3313, 'BizTalk Server', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3314, 'Microsoft Biztalk Server', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3315, 'Axapta', 2, 101, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3316, 'En''tegrate', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3317, 'X++', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3318, 'En''tegrate Software', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3319, 'Dynamics AX', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3320, 'MorphX', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3321, 'System Management Server', 2, 102, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3323, 'System center configuration manager', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3324, 'System Centre Configuration Manager', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3325, 'Systems Management Server', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3326, 'System Center Configuration Manager', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3327, 'AssetMetrix', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3328, 'SCCM 2007', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3329, 'MSSMS', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3330, 'Microsoft Systems Management Server', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3331, 'MS excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3332, 'Excel (Microsoft)', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3333, 'Excel macro', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3334, 'Microsoft XL', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3335, 'Excel function', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3337, 'Microsoft excel file formats', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3338, 'Microsoft excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3339, 'Microsoft(r) Excel(r)', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3340, 'XLW', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3341, 'Ms Excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3342, 'XLS files', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3343, 'XLS file', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3344, 'Microsoft Excel XP', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3345, 'Ms excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3346, 'Excel Viewer', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3347, 'XLS FILE', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3348, 'Microsoft Excel:mac', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3349, 'Excel spreadsheet', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3350, 'Microsoft Excel 95', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3351, 'Microsoft Excel 2002', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3352, 'Microsoft Excel 2003', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3353, 'Excel 2007', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3354, 'Microsoft Excel Viewer', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3355, 'Microsoft Excel file format', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3356, 'Excel Web App', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3357, 'EXCEL', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3358, 'Xlw', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3359, 'Microsoft Excel 2004', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3360, 'MICROSOFT EXCEL', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3361, 'Excel table', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3362, 'Excel 2003', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3363, 'Excel VBA', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3364, 'Microsoft Office Excel', 2, 103, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3367, 'Office Excel', 2, 103, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3368, 'MS Exchange Server', 2, 104, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3369, 'Exchange email', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3370, 'Exchange 2007', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3371, 'Exchange Online', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3372, 'Microsoft Exchange Client', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3373, 'Exchange Server', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3374, 'Cluster continuos replication', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3375, 'Exchange 2010', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3376, 'Microsoft Exchange 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3377, 'Microsoft Exchange Server 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3378, 'Microsoft Exchange server', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3379, 'LinkAge Software', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3380, 'Exchange Server 2007', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3381, 'Exchange Server 2003', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3382, 'Exchange 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3383, 'MS Exchange 2010 SP2', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3384, 'Exchange Server 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3385, 'Cluster continuous replication', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3386, 'Identity Lifecycle Manager', 2, 105, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3387, 'Microsoft Office Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3388, 'Microsoft infoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3389, 'Microsoft Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3390, 'Microsoft infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3391, 'Infopath 2007', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3392, 'Office Forms Server', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3393, 'MS InfoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3394, 'Infopath Form Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3395, 'MS infoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3396, 'Ms Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3397, 'Infopath Forms Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3399, 'Microsoft InfoPath Filler', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3400, 'InfoPath Forms Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3401, 'Forms Server', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3402, 'Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3403, 'Ms infoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3404, 'InfoPath Form Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3405, 'Infopass', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3406, 'Ms infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3407, 'Microsoft Office Forms Server', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3408, 'Office InfoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3409, 'MS infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3410, 'InfoPath forms services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3411, 'Microsoft Office InfoPath 2007', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3412, 'Infopath forms services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3413, 'Microsoft InfoPath Designer', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3414, 'Microsoft Office InfoPath', 2, 106, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3415, 'XDocs', 2, 106, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3417, 'MSIE', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3418, 'Windows Internet Explorer', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3419, 'MS IE', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3420, 'Internetexplorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3421, 'Microsoft IE', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3422, 'Stopie', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3423, 'Internut Exploder', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3424, 'WinInet', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3425, 'Internex', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3426, 'Wininet', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3427, 'Internet Exploder', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3428, 'Iexplorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3429, 'Features of internet explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3430, 'WinINET', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3431, 'MicroSoft Internet Explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3432, 'Innerhtml', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3433, 'Iexplore', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3434, 'MSIE (web browser)', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3435, 'Internet explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3436, 'Internet exploiter', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3437, 'Internet Exploiter', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3438, 'MS Internet Explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3439, 'InternetExplorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3440, 'M.S.I.E.', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3441, 'IE browser', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3442, 'InnerHTML', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3443, 'StopIE', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3444, 'Microsoft Proxy Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3445, 'Threat Management Gateway', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3446, 'Internet Security and Acceleratoin Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3447, 'Internet Security and Acceleration Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3449, 'Internet Security and Acceleration', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3450, 'MS Proxy Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3451, 'ISA server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3452, 'Forefront Threat Management Gateway', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3454, 'Forefront TMG', 2, 108, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3455, 'Microsoft Internet Security and Acceleration Server', 2, 108, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3456, 'MSMQ', 2, 109, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3457, 'Microsoft Message Queue Server', 2, 109, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3458, 'Microsoft Message Queue', 2, 109, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3459, 'Visual Studio .NET', 2, 111, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3460, 'Microsoft Visual Studio .NET', 2, 111, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3462, 'Vs2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3463, 'Visual Studio 97', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3464, 'Microsoft Visual Studio 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3465, 'Data dude', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3466, 'Visual Studio Shell', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3467, 'Microsoft Development Environment', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3468, 'Visual Studio .NET 2003', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3469, 'VS2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3470, 'LightSwitch', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3471, 'Visual Studio Team Services', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3472, 'Visual Studio 2017', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3473, 'Microsoft visual studio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3474, 'Microsoft Visual Studio 2015', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3475, 'Visual Studio Online', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3476, 'Visual Studio 11', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3477, 'DevBiz Business Solutions', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3478, 'Visual Studio .NET 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3479, 'Visual Studio .NET 2002', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3480, 'Visual Studio Test Professional', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3481, 'VS2017', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3482, 'Visual Studio 2019', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3483, 'VS2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3484, 'Microsoft Visual Studio Community', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3485, 'Visual Studio.NET 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3486, 'Microsoft Visual Studio debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3487, 'MSDEV', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3488, 'Visual Studio 2013', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3489, 'Visual Studio Application Lifecycle Management', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3490, 'Visual Studio Team Suite', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3491, 'Visual studio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3492, 'VS6', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3493, 'Microsoft Test professional', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3494, 'Visual Studio 2015', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3495, 'Azure DevOps Services', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3496, 'Visual Studio 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3497, 'Microsoft visual studio 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3498, 'VS2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3499, 'Visual Studio.NET', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3500, 'VS 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3501, 'DXCore', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3502, 'Visual Studio debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3503, 'Visual Studio Team Test', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3504, 'MS Visual Studio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3505, 'RefactorPro', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3506, 'Visual Studio Debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3507, 'VisualStudio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3508, 'Visual Studio LightSwitch', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3509, 'Microsoft Orcas', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3510, 'Visual Studio ALM', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3511, 'Microsoft Visual Studio 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3512, 'Visual Studio 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3513, 'CodeView and the Visual Studio Debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3514, 'Visual Studio Orcas', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3515, 'Visual Studio 2022', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3516, 'Microsoft Test Professional', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3517, 'Visual Studio 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3518, 'Microsoft Visual Studio Debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3519, 'Vs.net', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3520, 'VS05', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3521, 'Vs 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3522, 'Visual Studio 6.0', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3523, 'Visual Studio Community', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3524, 'VISUAL STUDIO 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3525, 'DevBiz', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3527, 'Visual Studio 2012', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3528, 'VS 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3529, 'Visual Studio Ultimate 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3532, 'Mongo db', 2, 116, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3533, 'Mongodb', 2, 116, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3534, 'Firefox (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3535, 'Firebird browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3536, 'FireBird (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3537, 'Mozila Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3538, 'Firefox minefield', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3539, 'Minefield (trunk build)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3540, 'FireFox (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3541, 'Firebird (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3542, 'Mozilla Phoenix', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3543, 'Mozilla/browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3544, 'Firefox (software)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3545, 'Mozilla firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3546, 'M/b', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3547, 'Phoenix web browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3548, 'Firefox Aurora', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3549, 'Mozilla Firerfox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3550, 'Firebird (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3551, 'Mozilla''s Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3552, 'MineField Browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3553, 'Firefox (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3554, 'Mozilla phoenix', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3555, 'SpreadFirefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3556, 'FireBird (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3557, 'Mozzila Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3558, 'FireFox (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3559, 'Mozilla Minefield', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3560, 'Firefox esr', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3561, 'Mozilla FireFox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3562, 'Mozilla Firefox''s', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3563, 'Mozilla firebird', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3564, 'Mozff', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3565, 'Mozilla firefox esr', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3566, 'Firebird Web Browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3567, 'Frefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3568, 'Phoenix (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3569, 'Spread Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3570, 'Forefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3571, 'FireFox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3572, 'Mozillafirefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3573, 'Mozilla Fire Fox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3574, 'Firefox Roadmap', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3575, 'Firefox roadmap', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3576, 'Firebird web browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3577, 'Mozilla Firefox (software)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3578, 'Mozilla Firefox ESR', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3579, 'SpreadFireFox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3580, 'Moz firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3581, 'Firefox Browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3582, 'Firefo', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3583, 'Fire Fox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3584, 'Mozilla FireBird', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3585, 'Mozilla FX', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3586, 'Firefox ESR', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3587, 'Mozilla ff', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3588, 'Phoenix (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3589, 'Fire fox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3590, 'Firefox web browser', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3591, 'Firefox browser', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3592, 'Mozilla Firebird', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3594, 'MS-Office 365', 2, 119, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3598, 'MS-SQL', 2, 581, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3600, 'Sql Server 2000', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3601, 'SQL Server 2017', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3602, 'Sqlcmd', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3603, 'SQL Server 2014 ISO', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3607, 'Microsoft SQL Server 2008 R2', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3608, 'Microsoft SQL server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3610, 'SQL Server 2014 CAB', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3611, 'SQL Server 2008 R2', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3612, 'Pubs (database)', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3614, 'Microsoft SQL', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3616, 'Microsoft Sql Server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3617, 'SQL 6.5', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3618, 'Ms sql server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3620, 'Microsoft sql server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3621, 'Mssql', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3623, 'SQL 7.0', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3624, 'SQL Server 2019', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3625, 'SQL Server 2005 Compact Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3626, 'SQL Server Compact 3.5', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3627, 'Microsoft SQL Server Compact Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3628, 'SQL Server Compact Edition Database File', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3629, 'Sql mobile', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3630, 'SQL Server Compact Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3631, 'SQL Mobile', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3632, 'SQLCE', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3633, 'SQL Server Mobile', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3634, 'SQLce', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3635, 'SQL Server Compact 2005 Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3636, 'SQL Server Mobile Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3637, 'SQL Server CE', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3638, 'Microsoft SQL Server Mobile Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3639, 'Microsoft SQL Server Compact', 2, 121, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3640, 'SQL CE', 2, 121, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3641, 'My sql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3642, 'MySQL server', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3643, 'Mysql 5.0', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3644, 'MySQL Fabric', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3645, 'Mysqldump', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3646, 'MySql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3648, 'MySQL HA', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3649, 'SunSQL', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3650, 'Libmysqld', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3651, 'Mysql-server', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3652, 'Mysql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3653, 'Mqsql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3654, 'My Structured Query Language', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3655, 'My SQL', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3656, 'MySql 5', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3657, 'Mysql 5.1', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3658, 'Neo Technology', 2, 123, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3660, 'Nix language', 2, 125, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3661, 'Nix Package Manager', 2, 125, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3662, 'Openldap', 2, 126, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3664, 'PrivateVPN', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3665, 'Openvon', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3666, 'Openvpn', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3667, 'Open VPN', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3668, 'ADF Faces', 2, 130, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3670, 'Oracle HTML DB', 2, 131, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3671, 'Html db', 2, 131, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3672, 'HTML DB', 2, 131, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3674, 'Oracle XML Publisher', 2, 132, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3676, 'Oracle11i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3677, 'Oracle8i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3678, 'Oracle (software)', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3679, 'Oracle (database)', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3680, 'Ora92', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3681, 'Oracle 11i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3682, 'Oracle express', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3683, 'Oracle XE', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3684, 'Oracle (DBMS)', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3685, 'Oracle database', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3686, 'Instantclient', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3687, 'Oracle db', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3689, 'Oracle R Enterprise', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3690, 'Oracle9i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3691, 'Oracle11g', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3692, 'Oracle DBMS', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3693, 'Oracle8', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3694, 'Oracle RDBMS', 2, 134, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3695, 'Oracle Designer 2000', 2, 135, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3698, 'Oracle Hyperion|Hyperion Planning', 2, 139, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3699, 'Oracle Net', 2, 140, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3700, 'Real application clusters', 2, 141, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3702, 'Oracle soa', 2, 145, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3705, 'Timesten', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3706, 'Smallbase', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3707, 'TimesTen In-Memory Database', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3709, 'Orbix (Software)', 2, 149, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3710, 'Pentaho Data Integration', 2, 150, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3711, 'Ramsetcube', 2, 150, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3712, 'PeopleSoft Enterprise', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3713, 'People Soft', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3714, 'PeopleSoft', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3715, 'PeopleSoft EnterpriseOne', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3716, 'PeopleSoft HRMS', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3717, 'Peoplesoft', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3718, 'Pervasive psql', 2, 153, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3719, 'Actian Zen', 2, 153, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3720, 'Pervasive sql', 2, 153, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3721, 'PKZip', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3722, 'PKSFX', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3723, 'PKUNZIP', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3724, 'SecureZIP', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3725, 'Pkunzip', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3726, 'Pkzip', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3727, 'Metis (modelling)', 2, 156, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3728, 'Metis (software)', 2, 156, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3729, 'PgSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3730, 'PostgreSQL Data Base Management System', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3731, 'Postsql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3732, 'Postgres95', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3733, 'POSTGRES', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3734, 'Autovacuum', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3735, 'PGSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3736, 'PostSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3737, 'PostGRES', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3738, 'POSTGRES95', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3739, 'Psql (PostgreSQL)', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3740, 'Pgsql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3741, 'PortugueseSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3742, 'PostegreSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3743, 'PostGRE', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3744, 'PostgresSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3745, 'Postgresql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3746, 'PostGres', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3747, 'PostgreSql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3748, 'Postgre sql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3750, 'Postgre', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3751, 'Postgres', 2, 157, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3753, 'Sybase PowerBuilder', 2, 158, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3755, 'Oracle Primavera', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3756, 'Primavera p6', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3757, 'XER (file format)', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3758, 'Primavera P3', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3761, 'Polytron Version Control System', 2, 163, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3763, 'Rabbit MQ', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3764, 'Rabbitmq', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3765, 'RabbitMq', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3766, 'Rabbit mq', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3767, 'MultiVersion File System', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3768, 'IBM Rational ClearCase', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3769, 'Clear case', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3770, 'IBM Rational MultiVersion File System', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3771, 'Clearcase', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3772, 'Rational MultiVersion File System', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3773, 'Ibm clear case', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3774, 'ClearCase', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3775, 'Rational Business Developer Extension', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3776, 'Rational Service Tester for SOA Quality', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3777, 'Rational Business Developer', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3779, 'IBM Rational SQABasic', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3780, 'SQABasic', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3781, 'IBM Rational Business Developer Extension', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3782, 'Rationale Software', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3783, 'Rational Machines', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3784, 'Rational Application Developer', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3785, 'Rational Team Concert', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3786, 'Rational Engineering Lifecycle Manager', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3787, 'IBM Jazz', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3788, 'IBM Rational Team Concert', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3789, 'Rational Rose RealTime', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3790, 'IBM Rational Business Developer', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3791, 'IBM Rational Software', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3792, 'Rational Software Corporation', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3793, 'Rational Functional Tester', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3794, 'Rational Tau', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3795, 'Rational robot', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3796, 'IBM Rational', 2, 167, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3797, 'Redis (data store)', 2, 168, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3798, 'Redis (dbms)', 2, 168, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3799, 'Redis database format', 2, 168, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3802, 'Rumba criolla', 2, 172, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3803, 'Mysap', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3804, 'SAP enterprise software', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3805, 'SAP Transport management system', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3806, 'Profitability Analysis (SAP)', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3807, 'MySAP', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3808, 'SAP ERP Financials', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3809, 'MySAP ERP', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3810, 'SAP Basis', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3811, 'SAP HCM PA', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3812, 'SAP ECC', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3813, 'MySAP ERP Operations', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3814, 'SAP ERP Human Capital Management', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3815, 'MySAP ERP Financials', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3816, 'SAP Fiori', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3817, 'SAP ERP Operations', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3818, 'SAP ERP Corporate Services', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3819, 'High-performance Analytical Application', 2, 175, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3820, 'SAP DB', 2, 176, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3821, 'SAPDB', 2, 176, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3822, 'SapDB', 2, 176, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3823, 'SAP Netweaver Business Intelligence', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3824, 'SAP NetWeaver Business Intelligence', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3825, 'SAP BW', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3826, 'SAP Business Information Warehouse', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3827, 'Sybase ASA', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3828, 'ASA (SQL Anywhere)', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3829, 'PowerSoft SQL', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3830, 'SAP Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3831, 'Sybase asa', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3832, 'PowerSoft Watcom SQL', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3833, 'Sybase Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3834, 'Sql anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3835, 'Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3837, 'PowerSoft SQL Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3838, 'Sybase SQL Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3839, 'SAP Sybase Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3840, 'SAP Sybase ASA', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3841, 'Watcom SQL', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3842, 'Sybase Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3843, 'SAP ASA', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3844, 'Web Dynpro ABAP', 2, 179, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3845, 'Webdynpro', 2, 179, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3846, 'Dynpro', 2, 179, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3847, 'Sentry Risk Table', 2, 180, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3848, 'Windows Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3849, 'Microsoft SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3850, 'MOSS 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3851, 'Microsoft Office SharePoint Server 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3852, 'SharePoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3853, 'Windows sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3854, 'Microsoft SharePoint 2010', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3855, 'SharePoint 2010', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3856, 'Microsoft SharePoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3857, 'Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3858, 'Share point server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3859, 'SharePoint Foundation', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3860, 'SharePoint services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3861, 'SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3862, 'Sharepoint portal server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3863, 'Microsoft sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3864, 'Windows SharePoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3865, 'Microsoft SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3866, 'Office SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3867, 'Windows SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3868, 'MS Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3869, 'Windows SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3871, 'Windows SharePoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3872, 'Share Point', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3873, 'Microsoft Office Sharepoint Server 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3874, 'Microsoft Windows SharePoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3875, 'Microsoft Office SharePoint Portal Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3876, 'Microsoft Sharepoint Foundation', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3877, 'SharePoint Portal Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3878, 'Sharepoint services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3879, 'Sharepoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3881, 'Microsoft Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3882, 'Windows Sharepoint Services 3', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3883, 'Sharepoint server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3884, 'MS SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3885, 'Microsoft Office SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3886, 'SharePointCOE', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3887, 'Share point', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3888, 'Sharepoint collaboration', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3889, 'Microsoft SharePoint Foundation', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3890, 'SharePoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3891, 'SharePoint Resources', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3892, 'Windows Sharepoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3893, 'Microsoft Office SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3894, 'Snaglt', 2, 184, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3896, 'IBM Mobile', 2, 185, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3897, 'SonarLint', 2, 186, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3898, 'Sonarqube', 2, 186, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3899, 'Sonar (software quality)', 2, 186, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3902, 'SAP Sybase DB', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3903, 'SAP Sybase SQL Server', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3904, 'SAP Sybase ASE', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3905, 'Sybase Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3906, 'SAP Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3907, 'SAP Sybase Adaptive Server Enterprise (ASE)', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3908, 'Sybase (database)', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3909, 'SAP SQL Server', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3910, 'SAP Sybase', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3911, 'SAP Sybase Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3912, 'Sybase database', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3913, 'ASE (SQL Server)', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3914, 'Sybase Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3915, 'Sybase ASE', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3916, 'SAP ASE', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3917, 'Sybase DB', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3918, 'Syncsort', 2, 191, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3919, 'Teradata Geospatial', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3920, 'Teradata FastLoad', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3921, 'Teradata Warehouse Miner', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3922, 'Fastexport', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3923, 'BTEQ', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3924, 'Teradata Parallel Transporter', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3925, 'FastExport', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3926, 'ADAM Software', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3927, 'Tibco Rendezvous', 2, 219, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3928, 'Tivoli Access Manager', 2, 220, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3929, 'Tortoise CVS', 2, 221, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3930, 'TSVN', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3931, 'Tortoisesvn', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3932, 'Tortoise svn', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3933, 'Tortoise SVN', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3934, 'UNIFACE', 2, 225, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3935, 'VisiBroker', 2, 228, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3936, 'Vcenter', 2, 231, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3937, 'IBM WebSphere Commerce', 2, 234, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3940, 'Index Server', 2, 238, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3942, 'Windows indexing service', 2, 238, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3943, 'WinMerge 2011', 2, 241, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3944, 'Winmerge', 2, 241, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3945, 'Winrar', 2, 242, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3946, 'WinRar', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3947, 'RAR5', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3948, 'Rarlab WinRAR', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3949, 'Win RAR', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3950, 'WINSCP', 2, 243, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3951, 'Winscp', 2, 243, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3952, 'Word press', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3953, 'BbPress', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3954, 'Cafelog', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3955, 'WordPress MU', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3956, 'B2\cafelog', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3958, 'B2/cafelog', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3959, 'WordPress 2.1.2', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3960, 'WordCamp', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3961, 'WordPress Foundation', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3962, 'Word Press', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3963, 'The WordPress Foundation', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3964, 'Wordpress foundation', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3965, 'B2 (software)', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3966, 'Xampp', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3967, 'XAMPP Lite', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3968, 'Xamp', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3969, 'Xampp Lite', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3970, 'Apache Friends', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3971, '0MQ', 2, 248, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3973, 'Nanomsg', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3974, 'Zero MQ', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3975, 'ØMQ', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3976, '0mq', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3977, 'Zmq', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3978, 'Zeromq', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3979, 'OMQ', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3981, 'HACMP', 2, 250, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3982, 'High Availability Cluster Multiprocessing', 2, 250, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3985, 'OPL Development Studio', 2, 253, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3986, 'LogicTools', 2, 257, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3987, 'Sqlite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3988, 'SQL Lite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3989, 'Sqlite3', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3990, 'SqlLite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3991, 'SQLLite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3992, 'SQLite4', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3993, 'SQLlite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3994, 'SQLite3', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3995, 'SQlite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3996, 'SQLLite DB', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3997, 'SQLite Manager', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3998, 'Sqllite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3999, 'SQLITE', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4000, 'Apache webserver', 8, 259, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4001, 'Apache Server', 8, 259, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4002, 'Apache web server', 8, 259, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4003, 'Apache WWW Server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4004, 'Apache (server)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4005, 'Apache (web server)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4006, 'Apache httpd', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4007, 'Apache server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4008, 'Apache2', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4009, 'Apache2ctl', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4012, 'Apache Web server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4013, 'Apache HTTPd', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4014, 'Apache http', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4015, 'Apache HTTPD', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4016, 'Apachectl', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4017, 'Apache http server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4018, 'Apache HTTP server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4019, 'Apache (HTTP server)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4020, 'Apache 1.3', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4021, 'Apache (webserver)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4022, 'Apache 2.2', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4023, 'Apache Webserver', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4024, 'Apache (computing)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4025, 'Tomcat Catalina', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4026, 'Apache tomcat', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4027, 'Tomcat Jasper', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4028, 'Tomcat6', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4030, 'Tomcat5', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4031, 'Catalina (Tomcat)', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4032, 'Tomcat Coyote', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4033, 'Tomcat (software)', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4034, 'Jakarta Tomcat', 8, 260, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4036, 'BEA-WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4037, 'Bea Weblogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4038, 'Oracle Weblogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4040, 'BEA AS', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4041, 'BEA WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4043, 'BEA Application Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4045, 'Oracle WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4047, 'Oracle Weblogic Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4048, 'WebLogic Application Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4049, 'Sun ONE Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4050, 'Oracle GlassFish Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4051, 'SJSAS', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4052, 'Java System Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4053, 'Glassfish Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4054, 'Sun GlassFish Enterprise Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4055, 'Glassfish server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4056, 'Sun Java Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4057, 'Sun Java System Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4058, 'IPlanet Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4059, 'Haproxy', 8, 264, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4061, 'Microsoft IIS', 8, 609, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4063, 'Internet Information Server', 8, 609, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4064, 'IIS 7', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4065, 'Microsoft Internet Information Server', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4066, 'IIS Media Services', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4067, 'Microsoft-IIS', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4068, 'MS IIS', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4069, 'IIS7', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4070, 'IIS Media Pack', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4071, 'Microsoft-iis', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4072, 'Microsoft IIS server', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4074, 'IIS server', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4075, 'Red Hat Software', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4076, 'RHTS', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4077, 'RHAT (NASDAQ)', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4078, 'Red Hat Czech', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4079, 'PNAELV', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4080, 'JBoss (company)', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4081, 'RHAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4082, 'Redhat.com', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4083, 'Red Hat Test Suite', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4084, 'Ntsysv', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4085, 'FUSE Message Broker', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4086, 'JBOSS', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4087, 'RESTEasy', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4088, 'Red Hat (company)', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4089, 'REDHAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4090, 'Red.ht', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4091, 'CloudForms', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4092, 'Red Hat High', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4093, 'Red Hat Enterprise MRG', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4095, 'RED HAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4096, 'JBoss Group', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4097, 'Red hat', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4098, 'Red Hat', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4099, 'Red Hat MGR', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4101, 'Red Hat MRG', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4102, 'RESTeasy', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4103, 'Red Hat Inc', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4104, 'Red Hat India', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4105, 'Red Hat Inc.', 8, 268, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4106, 'RedHat', 8, 268, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4111, 'Fuse Message Broker', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4119, 'NASDAQ:RHAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4142, 'IBM Domino', 8, 270, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4146, 'Nginx plus', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4147, 'NGINX', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4148, 'Engine X', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4149, 'NGINX Unit', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4150, 'Oracle OC4J', 8, 610, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4152, 'Oracle Application Server 10g', 8, 610, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4153, 'Oracle Imaging and Process Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4154, 'Oracle Content Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4155, 'WebCenter', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4156, 'Oracle Universal Content Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4157, 'Universal Content Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4158, 'Oracle WebCenter Imaging', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4159, 'Resin Server', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4160, 'Resin Application Server', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4161, 'Caucho Resin', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4162, 'Quercus (software)', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4163, 'NetWeawer', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4164, 'SAP Netweaver solution', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4165, 'Netweaver', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4166, 'SAP Central Process Scheduling', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4168, 'Apache Spark', 8, 280, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4169, 'Sun Java System Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4170, 'Sun Java Enterprise System Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4171, 'IPlanet Web Server 4.1', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4174, 'Netscape FastTrack Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4176, 'IPlanet Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4177, 'Sun-Java-System-Web-Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4179, 'WebSphere Application Server V3.0', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4180, 'WebSphere Application Server V5.0', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4181, 'Websphere 6', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4182, 'WAS 6', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4183, 'WebSphere Application Server', 8, 284, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4184, 'WebSphere', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4185, 'WebSphere Application Server V5.1 Business Integration Foundation Edition', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4186, 'WebSphere Application Server V6.0', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4187, 'WebSphere Application Server V5.0 Enterprise Edition', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4188, 'IBM WebSphere Real Time', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4189, 'Websphere', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4190, 'IBM Websphere', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4191, 'WebSphere Application Server V4.0', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4192, 'Websphere Software', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4193, 'IBM WebSphere Information Integration', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4194, 'WebSphere Information Integration', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4196, 'WebSphere Process Server', 8, 287, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4197, 'Integrity NonStop', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4198, 'HP Integrity NonStop', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4199, 'HPE NonStop', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4200, 'Nonstop kernel', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4201, 'NonStop Kernel', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4202, 'NonStop OS', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4203, 'IBM Power System', 4, 295, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4204, 'Lpar2rrd', 4, 295, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4205, 'Power Systems', 4, 295, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4206, 'L5335', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4207, 'Xeon E5-26xx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4208, 'Dunnington (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4209, 'Cascades (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4210, 'Scalable Memory Interconnect', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4211, 'X7460', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4212, 'Xeon E3-12xx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4213, 'Xeonx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4214, 'Woodcrest (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4215, 'Pentium II Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4216, 'Tigerton (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4217, 'Jasper Forest (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4218, 'XEON', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4219, 'Xeon E7-48xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4220, 'Clovertown (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4221, 'Xeon E5', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4222, 'Westmere-EX', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4223, 'Drake (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4224, 'X5650', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4225, 'Xeon E3 v2', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4226, 'Wolfdale-DP (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4227, 'Quad-Core Intel Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4228, 'Tanner (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4229, 'Scalable memory interconnect', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4230, 'Intel Xeon CPU', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4231, 'Quad-Core Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4232, 'Intel Xeon E5', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4233, 'Xeon E3 v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4234, 'Dempsey (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4235, 'Xeon Silver', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4236, 'Xeon E7-88xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4237, 'Harpertown (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4238, 'Xeon E5 v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4239, 'Intel SMI', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4240, 'Gainestown (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4241, 'Xeon MP', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4242, 'Dual-Core Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4243, 'Xeon E5-26xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4244, 'Intel Xeon Gold', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4245, 'Nancona', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4246, 'Haswell-EP', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4247, 'Intel Xeon Platinum', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4248, 'Sossaman (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4249, 'Xeon E3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4250, 'Xeon E7 v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4251, 'Xeon E7 v2', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4252, 'Intel Woodcrest', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4253, 'E5310', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4254, 'Intel Xeon Bronze', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4255, 'Xeon E5 v2', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4256, 'Pentium III Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4257, 'Nehalem-ex', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4258, 'Xeon E5-16xx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4259, 'Intel Xeon Silver', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4260, 'Beckton (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4261, 'Xeon E5-16xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4262, 'Xeon Bronze', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4263, 'Sossaman', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4264, 'Xeon E3-12xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4265, 'Intel Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4266, 'Xeon Platinum', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4268, 'Oracle Database Machine', 4, 298, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4269, 'Exadata', 4, 298, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4270, 'Autoit', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4271, 'Autoit script', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4272, 'AutoIt3', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4273, 'AI3', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4274, 'Awk', 9, 300, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4275, 'Nawk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4276, 'GNU Awk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4277, 'GAWK', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4278, 'GNU awk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4279, 'One true AWK', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4280, 'AWK (programming language)', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4281, 'AWK programming language', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4282, 'Awk (language)', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4283, 'Tawk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4284, 'One True AWK', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4285, 'Gawk (GNU package)', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4286, 'Awk language', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4287, 'One true awk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4288, 'Awk programming language', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4289, 'BASAIC programming language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4290, 'Beginner All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4291, 'Beginner''s All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4292, 'Beginners All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4293, 'Beginner All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4294, 'Beginner''s All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4295, 'Basic programming language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4296, 'Beginners'' All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4297, 'Beginners'' All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4298, 'Basic (programming language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4299, 'Basic (language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4300, 'Basic computer language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4301, 'Unstructured BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4302, 'B.A.S.I.C.', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4303, 'ECMA-55', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4304, 'Beginner All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4305, 'Compiled BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4306, 'Structured BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4307, 'Beginners All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4308, 'Beginner''s All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4309, 'ROM BASIC programming language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4310, 'Beginners All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4311, 'BASIC language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4312, 'BASIC (programming language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4313, 'Beginners All-purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4314, 'Basic (computer language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4315, 'Beginners'' All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4316, 'ANSI BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4317, 'BASIC programming language', 9, 301, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4318, 'Beginner''s All-purpose Symbolic Instruction Code', 9, 301, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4319, 'C prog', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4320, 'C programming Language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4321, 'C-programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4322, 'C programming language/Evolution', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4323, 'C (computer language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4324, 'C (programming langage)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4325, 'C lang', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4326, 'C (lang)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4327, 'C programing language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4328, 'C (programming)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4329, 'C78 (C version)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4330, 'C programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4331, 'C Language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4332, 'C language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4333, 'C Programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4334, 'C program', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4335, 'C programming language/K and R C', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4336, 'C (language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4337, '32/16 bit C programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4338, 'C (software)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4339, 'C(programming language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4340, 'C (Programming Language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4341, 'Programming language C', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4342, 'Computer language C', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4343, 'C programming language', 9, 303, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4344, 'C# (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4345, 'C++++', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4346, 'Visual C Sharp .Net', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4347, 'Visual C Sharp Express Edition', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4348, 'C♯ (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4349, 'Microsoft Visual C ♯', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4350, 'C Sharp language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4351, 'C# programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4352, 'ISO/IEC 23270', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4353, 'C Sharp Programming Language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4354, 'Microsoft Visual C Sharp', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4355, 'C-sharp programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4356, 'C ♯ (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4357, 'C hash', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4358, 'C♯ (language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4359, 'C sharp (computing)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4360, 'CS (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4361, 'C sharp (language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4362, 'C Sharp (language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4363, 'ECMA-334', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4364, 'C-hash', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4365, 'C sharp 6.0', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4366, 'C♯ programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4367, 'Visual C Sharp', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4368, 'C Sharp 5.0', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4369, 'C-Hash', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4370, 'C sharp programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4371, 'ISO 23270', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4372, 'C Sharp Programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4373, 'C Sharp (computing)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4374, 'C # (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4375, 'C sharp (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4376, 'C hashtag', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4377, 'C Pound', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4378, 'C Sharp programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4379, 'C plus plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4380, 'C++ 1.0', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4381, 'C plus plus programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4382, 'ISO/IEC 14882:2003', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4383, 'C++ standard', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4384, 'Standard C++ Foundation', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4385, 'ISO/IEC 14882', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4386, 'Sepples', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4387, 'Cee plus plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4388, 'C++ program', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4389, 'C++ (Programming Language)', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4390, 'C+++', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4391, 'C++ syntax', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4392, 'ANSI C++', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4393, 'ISO C++', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4394, 'C++ (programming language)', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4395, 'C++ 2.0', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4396, 'C++ language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4397, 'Cee Plus Plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4398, 'C Plus Plus programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4399, 'Core language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4400, 'ISO C++ programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4401, 'Cplusplus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4402, 'C++ programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4403, 'C++98', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4404, 'ISO/IEC 14882:2014', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4405, '++C', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4406, 'CPlusPlus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4407, 'ISO/IEC 14882:2015', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4408, 'C-plus-plus programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4409, 'C-plus-plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4410, 'C Plus Plus', 9, 583, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4411, 'Microsoft C', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4412, 'Visual C++ .NET 2003', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4413, 'Embedded Visual C++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4414, 'Visual C++ 2002', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4415, 'Visual C++ 5.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4416, 'Visual C++ 2010', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4417, 'Visual C++ .NET 2002', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4418, 'Visual C++ 2003', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4419, 'Vc++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4420, 'MSVC90', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4422, 'MSVC 2005', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4423, 'Embedded visual c plus plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4424, 'Visual C++ 6.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4425, 'Visual C++ 2.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4427, 'Visual C plus plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4428, 'Visual C Plus Plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4429, 'MSVC80', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4430, 'Visual C++ 4.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4431, 'Visual C++ 2012', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4432, 'Visual C++ 4.2', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4433, 'VisualC++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4434, 'MSVC110', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4435, 'VC++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4436, 'MSVC120', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4437, 'Microsoft C compiler', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4438, 'MSVC 2010', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4439, 'Microsoft Visual C plus plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4440, 'MSVC100', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4441, 'MSVC71', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4442, 'Vc9', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4443, 'MSVC 2013', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4444, 'Visual C++ 1.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4445, 'MSVC 2003', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4446, 'Msvc', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4447, 'Visual C++ 2013', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4448, 'Microsoft Visual C Plus Plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4449, 'Visual C++ 2005', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4450, 'MSVC 2002', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4451, 'MSVC 2008', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4452, 'MSVC 2012', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4453, 'Visual c', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4454, 'MS Visual C++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4455, 'Vc6', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4459, 'Cascading Stylesheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4460, 'Css1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4461, 'Cascading Style Sheet', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4462, 'CSS stylesheet', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4463, 'CSS selector', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4464, 'CSS (internet)', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4465, 'Cascading style sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4466, 'CSS1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4467, 'Css 2.1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4468, 'Aural Cascading Style Sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4469, 'Css3', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4470, 'CSS 2', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4471, 'CSS2', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4472, 'CSs', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4473, 'CSS 1.0', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4474, 'Text/css', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4475, 'Css 2.0', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4476, 'CSS4', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4477, 'Cascading Style Sheets - CSS', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4478, 'Css 3', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4479, 'Css', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4480, 'Cascading style sheet', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4481, 'CSS 4', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4482, 'XML/XSL skin', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4483, 'CSS styles', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4484, 'CSS style sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4485, 'Cascading Style Sheets 4', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4486, 'CSS styling', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4487, 'CSS 3.0', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4488, 'CSS style', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4489, 'CSS2.1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4490, 'Cascading stylesheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4491, 'Css2', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4492, 'CSS3', 9, 307, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4493, 'Clipper programming language', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4494, 'CA clipper', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4495, 'Clipper prog', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4496, 'CA-Clipper', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4497, 'Clist', 9, 309, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4498, 'CoBoL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4499, 'COBOL-85', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4500, 'COBOL 20XX', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4501, 'COBOL 85', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4502, 'ISO/IEC 1989', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4503, 'MF-COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4504, 'O-O COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4505, 'COBOL programming language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4506, 'COBOL-74', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4507, 'COBOL 60', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4508, 'ISO 1989', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4509, 'COBOL 74', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4510, 'COBOL74', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4511, 'COBOL-68', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4512, 'OO COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4513, 'COBOL language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4514, 'COBOL 1985', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4515, 'Common Ordinary Business-Oriented Language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4516, 'COBOL 1968', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4517, 'COBOL 2014', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4518, 'Object-oriented COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4519, 'Common Business Oriented Language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4520, 'COBOL (programming language)', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4521, 'X3J4', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4522, 'COBOL68', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4523, 'COBOL 1974', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4524, 'COBOL85', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4525, 'OO-COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4526, 'COBOL-60', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4527, 'COmmon Business-Oriented Language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4528, 'COBOL 1960', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4529, 'COBOL 2002', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4530, 'RM/COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4531, 'COBOL 68', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4532, 'Common Business-Oriented Language', 9, 594, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4533, 'Cobol', 9, 594, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4535, 'Cfml', 9, 311, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4536, 'Data Language/1', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4537, 'IBM Data Language One (DL/1)', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4539, 'DL/1', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4540, 'Borland Delphi 2006', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4541, 'Delphi rad', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4542, 'Delphi 2006', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4543, 'Delphi XE2', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4544, 'RAD Studio', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4545, 'Embarcadero RAD Studio', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4546, 'Delphi 2009', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4547, 'Delphi XE', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4548, 'CodeGear Delphi', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4549, 'Delphi (IDE)', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4550, 'Delphi XE4', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4551, 'Delphi XE3', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4552, 'Borland Delphi', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4553, 'Delphi code', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4554, 'Delphi 4', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4555, 'Embarcadero Delphi', 9, 313, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4558, 'Xhtml11', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4559, 'Xhtml strict', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4560, 'XHTML 1.0', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4561, 'XHTML 1.1', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4562, 'Xhtml', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4563, 'Xht', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4564, 'Xhtml 2', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4565, 'EXtensible HyperText Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4566, 'XHTML2', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4567, 'X(HTML)', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4568, 'XHTML 2.0', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4569, 'Extensible HyperText Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4570, 'XHTML 2', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4571, 'Extensible Hypertext Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4572, 'EXtensible Hypertext Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4573, '(X)HTML', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4574, 'XML feed', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4575, 'XML feeds', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4576, 'Well-formed XML', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4577, 'Extended markup language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4578, 'EXtensible Markup Language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4579, 'Xml:lang', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4580, 'Xml parser', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4581, 'XML tag set', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4582, 'Web3S', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4583, 'Extensible markup language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4584, 'Xml', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4585, 'Extended Markup Language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4586, 'Dynamic XML', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4587, 'XML parser', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4588, 'Text/xml', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4590, 'Valid XML document', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4591, 'MS XML', 9, 318, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4592, 'Microsoft XML Core Services', 9, 318, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4593, 'Xsl', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4594, 'Extensible stylesheet language', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4595, 'EXtensible Stylesheet Language', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4596, 'XSL stylesheet', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4597, 'XSL stylesheets', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4599, 'XML template engine', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4600, 'XSL Transformation', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4601, 'XSLT 2.0', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4602, 'Xslt', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4603, 'XSLT processor', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4604, 'XLST', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4605, 'XML template processor', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4606, 'XSL-T', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4607, 'XSL Transformations', 9, 320, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4609, 'Focus (software)', 9, 321, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4610, 'Focus software', 9, 321, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4611, 'FORTRAN', 9, 322, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4612, 'Formula Translation', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4613, 'Fortran 77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4614, 'FORTRAN II', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4615, 'Formula Translator', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4616, 'FORTRAN 66', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4617, 'FORTRAN programming language', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4618, 'Fortran (programming language)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4619, 'Fortran 2018', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4620, 'Fortran IV', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4621, 'Fortran 2008', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4622, 'Format (Fortran 66)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4623, 'Fortran 66', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4624, 'Fortran programming language', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4625, 'FORTRAN77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4626, 'ECMA-9', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4627, 'Fortran language', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4628, 'FORTRAN IV', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4629, 'Fortran 95', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4630, 'F77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4631, 'Fortran 2003', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4632, 'FORTRAN 77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4633, 'Visual Fortran', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4634, 'Fortran 90', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4635, 'FORTRAN (programming language)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4636, 'FORTRAN 86', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4637, 'Formula translation', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4638, 'F2003', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4639, 'Fort77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4640, 'Fortran 5 (programming language)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4641, 'F95', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4642, 'Fortran 8X', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4643, 'Fortran 2015', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4644, 'Fortran-66', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4645, 'FORTRAN I', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4646, 'Go (Programming language)', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4647, 'Gccgo', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4648, 'Go Programming Language', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4649, 'Google go', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4650, 'Go language', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4651, 'Golang', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4652, 'Go google', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4653, 'Go (language)', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4654, 'GoLang', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4655, 'Go lang', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4656, 'Go programming language', 9, 323, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4657, 'Google Go', 9, 323, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4658, 'Graphql', 9, 324, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4660, 'Dynamic Hypertext Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4661, 'HTML file', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4662, 'Hypertext markup language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4664, 'Basic HTML', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4665, 'HTM file', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4666, 'HTML 4.01', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4667, 'ISO/IEC HTML', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4668, 'Hyper text Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4670, 'Hyper Text Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4671, 'HTML2', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4672, 'HTML 4', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4673, 'HTML 3.2', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4674, 'HTML+', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4675, 'HLMT', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4676, 'ISO/IEC 15445', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4677, 'Hyper text markup language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4678, 'Html comment', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4679, 'HTML code', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4680, 'HTML strict', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4681, 'HyperText Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4682, 'HTML 4.0', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4683, 'Html', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4684, 'Html language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4685, 'Html code', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4686, 'HTML File Format', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4687, 'HTML syntax', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4688, 'HTML 3', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4689, 'HMTL', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4690, 'Text/html', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4691, 'Html coding', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4692, 'HTML 2', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4693, 'HTML3', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4694, 'Html 4.01', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4696, 'HLASM', 9, 328, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4697, 'IBM High-Level Assembler', 9, 328, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4699, 'AS/400 Control Language', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4700, 'CL Programming', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4701, 'Control Language Programming', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4702, 'CL (OS/400 command interpreter)', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4703, 'AS/400 Command Language', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4704, 'IBM i Control Language', 9, 329, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4705, 'Informix 4GL/SQL', 9, 330, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4707, 'Java programming language', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4708, 'Javax', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4709, 'Java (software)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4710, 'Java (Programming language)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4711, 'Javalang', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4712, 'Java Programming', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4713, 'JPD (file format)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4714, 'Java (programming)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4715, 'Java (langage)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4716, 'Java language', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4717, 'Java technology', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4718, 'Flow Java', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4719, 'Java (language)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4720, 'Java programming', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4721, 'Java (Programming Language)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4722, 'Java prog', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4723, 'Java code', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4724, 'Java computer language', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4725, 'Java Programing Languge', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4732, 'JavaEE', 9, 333, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4734, 'J2EE', 9, 333, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4735, 'Enterprise Java', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4736, 'Java enterprise', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4737, 'JSR 313', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4738, 'Java EE 5', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4739, 'Java Platform', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4741, 'Java Enterprise Platform', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4742, 'JSR 58', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4743, 'Java 2 Platform Enterprise', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4744, 'Java ee', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4745, 'J2EE 1.4', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4746, 'Jakarta Enterprise Edition', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4747, 'J2EE 1.3', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4748, 'Java 2 Enterprise Edition', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4749, 'J2EE 1.2', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4750, 'JSR 151', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4751, 'JSR 244', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4752, 'J2ee', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4753, 'J2SE', 9, 334, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4754, 'Java 2 Platform Standard Edition', 9, 334, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4755, 'Java SE', 9, 334, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4756, 'JSR 59', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4757, 'Javase', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4758, 'J2se', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4759, 'Java 2 Platform', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4760, 'Java 2 Standard Edition', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4761, 'Java Standard Edition', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4762, 'JavaSE', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4763, 'Java se', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4764, 'JSR 270', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4765, 'Java SE platform', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4766, 'JSR 176', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4767, 'JSR 152', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4768, 'JSP compiler', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4769, 'JSP container', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4770, 'Jave Page', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4771, 'Jakarta Server Pages compiler', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4772, 'Jave Server', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4773, 'Java server pages', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4774, 'Javaserver pages', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4775, 'Jsp2', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4776, 'JSP files', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4777, 'Java Server Page', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4778, 'Java Server Pages', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4779, 'JSP engine', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4780, 'JSPF', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4781, 'JSR 245', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4782, 'JavaServer Pages compiler', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4783, 'JavaServer Page', 9, 335, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4785, 'Scriptlets', 9, 336, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4786, 'JavaScripts', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4787, 'Live-script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4788, 'JavaScript programming language', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4789, 'Mocha (programming language)', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4790, 'JavaScript rollover', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4791, 'Live-Script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4792, 'Javascript Console', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4793, 'Server side javascript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4794, 'Live script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4795, 'Javascript programming language', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4796, 'JavaScript Forums', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4797, 'JavaScript 1.6', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4799, 'JavaScript language', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4800, 'Escript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4801, 'JavaScript (programming language)', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4802, 'Client-side JavaScript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4803, 'Javascript (programming language)', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4804, 'Vanilla JS', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4805, 'SSJS', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4806, 'Javascript 1.7', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4807, 'Java script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4809, 'JavaScript 1.7', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4810, 'DOM scripting', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4811, 'Vanilla JavaScript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4812, 'Live Script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4813, 'CSJS', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4814, 'Server-side JavaScript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4815, 'Server-Side JavaScript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4816, 'IBM JCL', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4817, 'Job Control Statements', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4818, 'Job management language', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4819, 'Job entry control language', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4820, 'JECL', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4821, 'Job control language', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4822, 'Jscript', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4823, 'Microsoft JScript', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4824, 'JS script', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4825, 'ActiveXObject', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4826, 'Managed JScript', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4827, 'Lisp computer language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4828, 'Lisp language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4829, 'Lisp atom', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4830, 'LISP (programming language)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4831, 'LISP atom', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4832, 'Lisp (programming)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4833, 'List Processing', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4834, 'Lisp (language)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4835, 'MuLISP', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4836, 'LISP', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4837, 'LISP language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4838, 'Lisp 1.5', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4839, 'LISP programming language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4840, 'Lisp programming language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4841, 'LISP 1.5', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4842, 'Lithp (programming language)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4843, 'Lisp renaissance', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4844, 'LISP (programming)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4845, 'NPL (Programming language)', 9, 342, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4846, 'NPL programming language', 9, 342, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4848, 'ObjC', 9, 343, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4849, 'Objc', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4850, 'Objective-C 2.0', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4851, 'Objective C++', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4852, 'Objective-C++', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4854, 'Object C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4855, 'Objective-C (programming language)', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4856, 'Obj-c', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4857, 'ObjC programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4858, 'Objective c', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4859, 'C and Smalltalk', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4860, 'Objective-c', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4861, 'ObjectiveC', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4862, 'Obj C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4863, 'Objective-C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4864, 'Obj C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4865, 'Objective C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4866, 'Objective C plus plus', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4867, 'Obj-C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4868, 'Smalltalk and C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4869, 'Object-C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4870, 'OpenEdge Advanced Business Language (ABL)', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4871, 'OpenEdge Database', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4873, 'OpenEdge Advance Business Language (ABL)', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4874, 'Progress RDBMS', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4875, 'Progress DBMS', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4876, 'Advanced Business Language', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4877, 'Progress (software)', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4878, 'Progress4GL', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4879, 'Webspeed', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4880, 'Progress 4GL', 9, 344, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4881, 'Pascal-SC', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4882, 'Pascal-P1', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4883, 'Pascal (language)', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4884, 'Pascal-P', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4885, 'Pascal programming language', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4886, 'PASCAL-XSC', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4887, 'Pascal-S', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4888, 'Pascal Programming Language', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4889, 'PASCAL-SC', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4890, 'PASCAL (Programming language)', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4891, 'Pascal-P2', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4892, 'Pascal-P3', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4893, 'Pascal-P system', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4894, 'Pascal-P System', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4895, 'Pascal-F', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4896, 'Pascal (command)', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4897, 'ISO/IEC 10206', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4898, 'Pascal-P5', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4899, 'Pascal language', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4900, 'Pascal-p2', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4901, 'Pascal 86', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4902, 'Pascal-P4', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4903, 'Pascal-XSC', 9, 599, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4904, 'Delphi (language)', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4905, 'Delphi programming language', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4906, 'Delphi (programming language)', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4907, 'Object-Oriented Pascal', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4908, 'Delphi language', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4909, 'Delphi (Computer Language)', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4910, 'Delphi programming', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4911, 'Perl 7', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4912, 'Perl (programming language)', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4913, 'Practical Extraction and Report Language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4914, 'Perl interpreter', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4915, 'Vanilla Perl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4916, 'Practical Extraction And Report Language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4917, 'Ponie', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4918, 'Embedded Perl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4919, 'Perl language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4920, 'X-perl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4921, 'Perl programming language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4922, 'Swiss army chainsaw', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4923, 'IndigoPerl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4924, 'Perl code', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4925, 'Swiss-army chainsaw', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4926, 'Perl5', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4927, 'PONIE', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4928, 'PERL', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4929, 'Perl 5', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4930, 'Perl programming', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4931, 'Perl (language)', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4932, 'PerlScript', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4933, 'Active Perl', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4934, 'Activeperl', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4935, 'Perlscript', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4947, 'Perl Golf', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4958, 'Php language', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4959, 'Php (programming language)', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4960, 'Zend Engine 3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4961, 'Php 5.3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4962, 'PHP interpreter', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4963, 'PHP (programming language)', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4964, 'Php 4', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4965, 'PHP 5', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4966, 'PHPNG', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4967, 'PHP8', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4968, 'PHP Next Generation', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4969, 'PHP5-FPM', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4970, 'PHP5', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4971, 'PHP4', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4972, 'Php 5.4', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4973, 'Php 5.1', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4974, 'PHP-FPM', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4975, 'Php', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4976, 'PHTML', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4977, 'PHP/FI', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4978, 'Php-fpm', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4979, 'Php6', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4980, 'PHP 6', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4981, 'Php 5.0', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4982, 'PHP3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4983, 'Php 6.0', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4984, 'Zephir (programming language)', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4985, 'Php1', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4986, 'PHP:Hypertext Preprocessor', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4987, 'Php 3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4988, 'PHP7', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4989, 'PHP programming', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4990, 'Phtml', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4991, 'Php 5.2', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4992, 'Php5', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4993, 'Php2', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4994, 'Phpng', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4995, 'PHP Hypertext Preprocessor (programming language)', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4996, 'PHP next generation', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4997, 'Php3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4998, 'PHP6', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4999, 'PHP programing language', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5000, 'PHP 7', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5001, 'Php 1', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5002, 'Php 2', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5003, 'Hypertext Preprocessor', 9, 586, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5004, 'PHP programming language', 9, 586, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5005, 'PHP: Hypertext Preprocessor', 9, 586, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5006, 'PHP Hypertext Preprocessor', 9, 586, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5007, 'SL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5009, 'Pl/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5010, 'PL1 language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5011, 'PL/I programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5012, 'Visual PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5013, 'DEC PL/I', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5014, 'PL/I-80', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5015, 'PL/MP', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5016, 'Raincode PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5017, 'PL/I-86', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5018, 'PLI programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5019, 'PL/I (programming language)', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5020, 'PL1 programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5021, 'PL/MI', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5022, 'PLI-86', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5023, 'VAX PL/I', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5024, 'PL/Ⅰ', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5025, 'RainCode PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5026, 'PL/1 programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5027, 'StepSqlite', 9, 352, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5028, 'PLSQL', 9, 352, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5029, 'P/SQL', 9, 352, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5031, 'Pro*C++', 9, 353, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5032, 'Pro C', 9, 353, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5033, 'Pro*C/C++', 9, 353, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5034, 'Python scripting language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5035, 'Python program', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5036, 'PythonLanguage', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5037, 'Python computer language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5038, 'Python code', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5039, 'Python3', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5040, 'Python (computing)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5041, 'Python programming language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5042, 'Python programming', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5043, 'Pythonistas', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5044, 'PEP8', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5045, 'Pyston', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5046, 'Python language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5047, 'Python (lang)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5048, 'Python2', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5049, 'Python3000', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5050, 'Python 3k', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5051, 'Python (language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5052, 'Coconut (programming language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5053, 'Python (software)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5054, 'Pythonlang', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5055, 'Python prog', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5056, 'Python Programming', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5057, 'Python Programming Language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5058, 'Python (scripting language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5059, 'Pythonista', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5060, 'Python (programming)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5061, 'Python (Programming Language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5062, 'Python (computer language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5063, 'Python 3K', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5064, 'R project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5065, 'R (programming)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5066, 'R Shiny', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5067, 'GNU-S', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5068, 'RStat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5069, 'R programming language', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5070, 'R Statistics', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5071, 'R-stat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5072, 'R lang', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5073, 'RPro', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5074, 'R code', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5075, 'R-Project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5076, 'R (computer language)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5077, 'R Project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5078, 'R programming', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5079, 'R (program)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5080, 'R-project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5081, 'R (software)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5082, 'R-Stat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5083, 'Rstat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5084, 'RGL (software package)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5085, 'R (language)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5086, 'Rlang', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5087, 'ParallelR', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5088, 'R Open', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5089, 'GNU R', 9, 355, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5090, 'GNU S', 9, 355, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5091, 'R language', 9, 355, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5092, 'Quercus Personal REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5093, 'Personal Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5094, 'Personal REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5095, 'REstructured eXtended eXecutor', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5096, 'Enterprise REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5097, 'Rexx programming language', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5098, 'IBM REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5099, 'Restructured Extended Executor', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5100, 'REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5101, 'Kilowatt Portable REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5102, 'Pmrexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5103, 'Enterprise Alternatives REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5104, 'Kilowatt Portable Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5105, 'Restructured extended executor', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5106, 'Quercus Personal Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5107, 'REXX (programming language)', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5108, 'Portable REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5109, 'Portable Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5110, 'REXX programming language', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5111, 'Report Program Generator', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5112, 'Report program generator', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5113, 'RPGLE', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5114, 'RPG (programming language)', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5115, 'IBM RPG (programming language)', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5116, 'RPG IV', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5117, 'RPG programming language', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5118, 'Ruby (Programming Language)', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5119, 'Ruby Programming Language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5120, 'Ruby programming', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5121, 'Ruby Enterprise Edition', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5122, 'Ruby language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5123, 'Ruby (language)', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5124, 'Ruby (programming language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5125, 'Ruby (lang)', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5126, 'Ruby lang', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5127, 'Ruby-gnome2', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5128, 'Ruby-language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5129, 'Ruby (computing)', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5130, 'Ruby programming language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5131, 'Rubylang', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5132, 'Ruby prog', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5133, 'SAS (Software)', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5134, 'SAS System', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5135, 'SAS (programming language)', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5136, 'SAS/STAT', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5137, 'Interactive Matrix Language', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5138, 'Statistical Analysis System', 9, 360, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5139, 'Scss', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5140, 'Sass CSS', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5141, 'Sass (CSS)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5142, 'Sass (Stylesheet Language)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5143, 'Sass (markup language)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5144, 'SASS (language)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5145, 'Sass (software)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5146, 'Libsass', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5147, 'Scala programming language', 9, 362, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5148, 'Scala language', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5149, 'Scala.js (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5150, 'ScalaNative', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5151, 'ScalaNative (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5152, 'Scala-JS (Programming Language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5153, 'Scala-JS', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5154, 'Scala Native', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5155, 'ScalaJS (Programming Language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5156, 'Scala (programming language', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5157, 'ScalaJs (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5158, 'Scala.js', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5159, 'Scala Native (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5160, 'Smalltalk (programming language)', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5161, 'Smalltalk programming language', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5162, 'Smalltak', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5163, 'Smalltalk-80', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5164, 'Smalltalk Programming Language', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5165, 'Smalltalk-72', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5166, 'SmallTalk', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5167, 'Smalltalk/V', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5168, 'Visual Smalltalk', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5169, 'Smalltalk 80', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5170, 'SmallTalk programming language', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5171, 'Swift (Apple programming language)', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5172, 'Swift programming language', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5173, 'Swift language', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5174, 'Apple Swift', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5175, 'SwiftNIO', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5176, 'Swiftlang', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5177, 'Tool Command Language', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5178, 'Safe-Tcl', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5179, 'Tcl (computer language)', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5180, 'Object-oriented programming in Tcl', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5181, 'Tcl (programming language)', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5182, 'Tcl programming language', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5183, 'Tcl/tk', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5184, 'TclTk', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5185, 'Tsql', 9, 366, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5188, 'T-sql', 9, 366, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5190, 'Microsoft TypeScript', 9, 367, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5192, 'Microsoft Visual Basic.NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5193, 'VB.Net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5194, 'VB.net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5195, 'Microsoft Visual Basic 2008 Express', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5196, 'VB 2005', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5197, 'VBx', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5198, 'Vb dot net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5199, 'Visual Basic 2005', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5201, 'Visual BASIC .net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5202, 'Visual Basic.NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5203, 'Vb.net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5204, 'Visual Basic (.NET Version)', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5205, 'Visual Basic .NET 2003', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5206, 'VB .NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5207, 'Visual basic .net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5208, 'Visual Basic.net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5209, 'Visual Basic.Net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5210, 'Microsoft Visual Basic .NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5211, 'Visual Basic .net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5212, 'Vbscript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5214, 'VBS Script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5215, 'VBScript (programming language)', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5216, 'VBSCRIPT', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5217, 'VB script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5218, 'Visual Basic Scripting', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5220, 'Visual Basic Script Edition', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5221, 'Visual Basic Scripting Edition', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5222, 'VBSScript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5223, 'Visual Basic Script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5224, 'VbScript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5225, 'VBScript programming language', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5226, 'Visual Basic 6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5227, 'Visual basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5228, 'Microsoft Visual Basic 5.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5229, 'Visual basic 6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5230, 'Microsoft Visual Basic 6.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5231, 'Vbasic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5232, 'Microsoft Visual Basic 6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5234, 'VB4', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5236, 'Classic Visual Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5237, 'Microsoft Visual Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5238, 'Hummingbird Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5239, 'MSVB', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5240, 'VBP', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5241, 'VB3', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5242, 'Visual Basic 6 Portable', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5243, 'Visual Basic programming language', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5244, 'Microsoft Visual BASIC', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5245, 'VBLang', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5246, 'Visual Basic Control', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5247, 'VisualBasic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5248, 'VBDOS 1.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5249, 'Virtual Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5250, 'Visual BASIC', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5251, 'Visual Basic Classic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5252, 'Visual Basic 5', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5253, 'Microsoft visual basic for applications', 9, 371, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5254, 'Visual Basic for Applications programming language', 9, 371, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5255, 'Visual basic for applications', 9, 371, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5256, 'Visual Foxpro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5257, 'Visual Fox pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5258, 'Microsoft Visual FoxPro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5259, 'Microsoft Visual Fox pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5260, 'Microsoft Visual Foxpro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5261, 'Visual FoxPro programming language', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5262, 'Visual Fox Pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5263, 'Microsoft Visual Fox Pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5265, 'Voice XML', 9, 373, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5266, 'Voicexml', 9, 373, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5268, 'XBase plus plus', 9, 374, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5269, 'Clucene', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5270, 'KinoSearch', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5271, 'Kinosearch', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5272, 'Solr/Lucene', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5274, 'Apache Xerces', 12, 376, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5275, 'Bootstarpping', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5276, 'Boot strap', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5277, 'Bootstrapped', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5278, 'Bootstrap support', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5279, 'Bootstrapping (computing)', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5280, 'Bootstrapper', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5281, 'Boot-strap', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5282, 'Bootstrap (word origin)', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5283, 'Java|Apache Camel', 12, 378, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5284, 'Java|Apache Commons BeanUtils', 12, 379, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5286, 'Velocity apache', 12, 381, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5287, 'Velocity (software)', 12, 381, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5288, 'Jakarta Velocity', 12, 381, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5289, 'Java|EclipseLink', 12, 382, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5292, 'Enterprise Java Beans', 12, 383, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5293, 'Enterprise Beans', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5294, 'Enterprise beans', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5295, 'Enterprise JavaBean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5296, 'Enterprise Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5297, 'SLSB', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5298, 'Enterprise bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5299, 'SFSB', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5300, 'Jakarta Enterprise Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5301, 'Bean-Managed Persistence', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5302, 'Enterprise Java Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5303, 'Java Enterprise Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5304, 'EJB Container', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5305, 'Jakarta Enterprise beans', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5306, 'Jakarta Enterprise bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5307, 'JSR 153', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5308, 'JSR 19', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5309, 'EJB container', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5310, 'Ejb', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5311, 'JSR 220', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5312, 'Container-Managed Persistence', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5313, 'Message-driven EJB', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5314, 'JSNI', 12, 385, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5315, 'Hibernate Query Language', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5316, 'Hibernate (Java)', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5317, 'Hibernate OGM', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5318, 'Hibernate (software)', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5319, 'Hibernet', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5320, 'Hibernate Core', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5321, 'Hibernate (java)', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5322, 'Java 2 SDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5324, 'Java SDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5325, 'J2SDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5326, 'Java 2 Software Development Kit', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5327, 'JDK 1.2', 12, 388, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5328, 'Java Development Toolkit', 12, 388, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5329, 'Java jdk', 12, 388, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5330, 'JSR 914', 12, 389, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5331, 'Java messaging service', 12, 389, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5333, 'JNLP', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5334, 'Web Start', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5335, 'Java webstart', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5336, 'Java Network Launching Protocol', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5337, 'JavaWS', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5338, 'Webstart', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5339, 'JSR 56', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5340, 'Javaws', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5341, 'Java web start', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5342, 'Java Webstart', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5343, 'JSR 127', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5344, 'JSR 252', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5345, 'Java Server Faces', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5346, 'Javaserver faces', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5349, 'Jdbc', 12, 392, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5350, 'Java Data Base Connectivity', 12, 392, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5352, 'JRuby programming language', 12, 393, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5353, 'JRuby language', 12, 393, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5354, 'Jruby', 12, 393, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5355, 'Apache Log4net', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5356, 'Log4javascript', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5357, 'Apache log4net', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5358, 'Log4js', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5359, 'Log4Net', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5360, 'Log4c', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5361, 'Log4J', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5362, 'Quartz job scheduler', 12, 395, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5363, 'JRMI', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5364, 'Remote Method Invokation', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5365, 'Java Remote Method Invocation', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5366, 'Rmic', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5368, 'Free-source', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5369, 'Free source', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5370, 'Four Freedoms (software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5371, 'Free (software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5372, 'Software Libre', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5373, 'Libre software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5374, 'Free-source software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5375, 'Free-libre software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5376, 'Four Freedoms (Free software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5377, 'Libre Software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5378, 'Freedom-ware', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5379, '4 software freedoms', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5380, 'Free sofware', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5381, 'Free-software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5382, 'FSF''s "free software" ideal', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5383, 'Free and Open Source Software (FOSS) for development', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5384, 'Freedomware', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5385, 'Free computer software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5386, 'Freed Software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5387, 'Freedom software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5388, 'Software libre', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5389, 'Free software development', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5390, 'Four Freedoms (free software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5391, 'Spring (Java)', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5392, 'Spring framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5394, 'Spring beans', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5395, 'Spring (framework)', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5396, 'Spring Boot', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5397, 'Java Spring', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5398, 'Spring Framework (Java)', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5399, 'Springframework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5400, 'Spring IOC Framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5401, 'Spring AOP framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5402, 'Spring AOP', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5403, 'The Spring Framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5404, 'Java|Spring|Spring Boot', 12, 399, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5405, 'Jakarta Struts', 12, 402, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5406, 'Struts Studio', 12, 402, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5407, 'Struts Framework', 12, 402, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5408, 'Java Struts', 12, 402, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5409, 'Swing (java)', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5410, 'Swing java', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5411, 'Java Swing', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5412, 'Javax.swing', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5413, 'IT Mill Toolkit', 12, 404, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5414, 'Ajax framework', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5415, 'Ajax programming', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5416, 'CAJAX', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5417, 'Ajax scripts', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5418, 'AJAX (programming)', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5419, 'AJAXy', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5420, 'AJAX framework', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5421, 'Ajax desktops', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5422, 'Asynchronous Javascript and XML', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5423, 'Ajax language', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5424, 'Ajax (software)', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5425, 'Asynchronous JavaScript and JSON', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5426, 'Asynchronous JavaScript and XML', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5427, 'AJAX Framework', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5428, 'AJAJ', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5431, 'Angular.js', 12, 406, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5432, 'MVW framework', 12, 406, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5433, 'Scope (AngularJS)', 12, 406, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5434, 'Angularjs', 12, 406, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5435, 'Expressjs', 12, 408, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5436, 'Ext Core', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5437, 'Extjs', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5438, 'Ext (JavaScript library)', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5440, 'Ext (javascript library)', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5441, 'CssQuery', 12, 411, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5442, 'Jquery Library', 12, 411, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5443, 'Jquery', 12, 411, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5444, 'JQueryUI', 12, 412, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5445, 'React.js', 12, 413, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5447, 'Reactjs', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5448, 'Facebook React', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5449, 'React (web framework)', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5450, 'React JS', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5451, 'React Fiber', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5452, 'JavaScript|script.aculo.us', 12, 414, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5453, 'Android operating system', 6, 418, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5454, 'Android OS', 6, 418, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5455, 'Google Android', 6, 418, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5456, 'Android (software stack)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5457, 'Android system', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5458, 'Android (phone)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5459, 'Android (Google)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5460, 'Android phone operating system', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5461, 'Google Android Linux OS', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5462, 'Android (Operating System)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5463, 'Android (mobile device platform)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5464, 'Android Apps', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5465, 'Android Phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5466, 'Android cell phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5467, 'Honeycomb', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5468, 'Android software', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5469, 'Android google', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5470, 'Android 3.0 Honeycomb', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5471, 'Android platform', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5472, 'Android cellphone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5473, 'Android device', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5474, 'Android mobile phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5475, 'Mobile Android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5476, 'Android 3.0', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5478, 'Android phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5479, 'TaintDroid', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5480, 'Google android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5481, 'Android (system)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5482, 'Android Open Source Project', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5483, 'Android app', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5484, 'Os android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5485, 'Android (software)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5486, 'Android application', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5487, 'Android (os)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5488, 'Android.os', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5489, 'Android (OS)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5490, 'Android Device Manager', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5491, 'Android (platform)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5492, 'Android client', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5493, 'IDroid', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5494, 'Android (company)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5495, 'Android-powered device', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5496, 'Android (mobile phone platform)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5497, 'Android Operating System', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5498, 'Android devices', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5499, 'Google''s Android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5500, 'Android mobile', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5501, 'Android fork', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5502, 'Android (google)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5503, 'Surfaceflinger', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5504, 'Android os', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5505, 'Android mobile phone platform', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5506, 'Google Android One', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5507, 'B.E.O.S', 6, 419, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5508, 'Be OS', 6, 419, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5509, 'Internetwork Operating System', 6, 420, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5510, 'IOS (Cisco)', 6, 420, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5511, 'CIOSS', 6, 420, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5512, 'Interface Descriptor Block', 6, 420, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5513, 'Google Dash', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5514, 'ECMA Dart', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5515, 'Dart (language)', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5516, 'Dart programming language', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5517, 'Dart language', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5518, 'DartLang', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5519, 'ECMA-408', 6, 421, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5520, 'Google Dart', 6, 421, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5521, 'Fabos', 6, 422, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5522, 'The GNU operating system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5523, 'GNU/DOS', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5524, 'GNU System', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5525, 'GNU Operating System', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5526, 'The GNU system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5527, 'GNU OS', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5528, 'GNU system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5529, 'GNU''s Not Unix', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5530, 'GNU operating system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5531, 'I5os', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5532, 'IBM OS/400', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5534, 'IBM i5/OS', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5535, 'I on Power', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5536, 'IBM i on Power', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5538, 'I5/OS', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5539, 'IBM I5/OS', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5540, 'I-OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5541, 'OS X iPhone', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5542, 'IPhoneOS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5543, 'IPhone Operating System', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5544, 'IPhone os', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5545, 'Mac OS X (iPhone)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5546, 'IOS Apple', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5547, 'Ipod touch os', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5548, 'IPod Touch OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5549, 'IPhone OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5550, 'Apple iPhone OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5551, 'OS X Mobile', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5552, 'IOS (Apple Inc.)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5553, 'Multitasking (iOS)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5554, 'Apple iOS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5555, 'Iphone os', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5556, 'IPhone operating system', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5557, 'AppleiOS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5558, 'IOS (Apple)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5559, 'IOS (operating system)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5560, 'Ios (Apple)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5561, 'Linux (operating system)', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5562, 'LINUX', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5563, 'Linuces', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5564, 'GNU/Linux/X11', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5565, 'LinuX', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5566, 'Linux-based GNU system', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5567, 'Gnu/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5568, 'Linux+GNU', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5569, 'Linux desktop', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5570, 'Lienucks', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5571, 'GNU-Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5572, 'Linux/GNU', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5573, 'Desktop GNU/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5574, 'Desktop Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5575, 'Linux Powered System', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5576, 'Linux/gnu', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5577, 'Linux server', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5578, 'GNU-linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5579, 'GNU/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5580, 'Linux box', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5581, 'GNULinux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5582, 'Lynux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5583, 'Linux OS', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5584, 'Linices', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5585, 'Linux-based GNU systems', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5586, 'GNU/Linux/X', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5587, 'Desktop linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5588, 'GNU–Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5589, 'Gnu/linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5590, 'Linux on the desktop', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5591, 'GNU+Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5592, 'GNU Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5593, 'Linux (GNU/Linux)', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5594, 'Lineux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5595, 'Linux/X11', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5596, 'Linix', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5597, 'Linux operating system', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5598, 'Linux/X', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5599, 'BlackRhino GNU/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5600, 'Centos', 6, 427, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5601, 'CentOs', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5602, 'Centos7', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5603, 'Centos Stream', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5604, 'CentOS Linux', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5605, 'Community Enterprise Operating System', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5606, 'CAOS Linux', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5607, 'Cent OS', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5608, 'CentOS Stream', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5609, 'CheckPoint INSPECT Code', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5610, 'VPN-1', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5611, 'FireWall-1', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5612, 'VPN-1 Power', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5613, 'FireWall-1/VPN-1', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5615, 'Debian GNU/Linux', 6, 429, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5616, 'Debian Sid', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5617, 'Debian GNU Hurd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5618, 'Debian Unstable', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5619, 'Debian GNU/kFreeBSD', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5620, 'Debian/sid', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5621, 'Debian GNU/FreeBSD', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5622, 'Debian Live', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5623, 'Embedded Debian', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5624, 'Debian Project', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5625, 'Debian stable', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5626, 'Kfreebsd-i386', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5627, 'Debian Multimedia Project', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5628, 'Debian repository', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5629, 'Debian GNU', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5630, 'Sid (Debian)', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5631, 'Debian LTS', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5632, 'GNU/Debian', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5633, 'Kfreebsd-amd64', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5634, 'Debian gnu/kfreebsd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5635, 'Debian OS', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5636, 'Embedian', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5637, 'KFreeBSD', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5638, 'Debian Manifesto', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5639, 'Debian Hurd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5640, 'Debian GNU/Hurd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5641, 'Debian (operating system)', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5643, 'Juniper JUNOS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5644, 'Juniper OS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5645, 'JUNOS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5646, 'Juniper Junos', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5647, 'Junos SDK', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5648, 'Junos', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5649, 'OpenSuSE', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5650, 'SUSE Linux Professional', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5651, 'OpenSUSE 11', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5652, 'OpenSUSE Linux', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5653, 'Factory (openSUSE)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5654, 'Factory (software)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5655, 'OpenSuSe', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5656, 'Tumbleweed (software)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5657, 'OpenSUSE Tumbleweed', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5658, 'Open SUSE', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5660, 'Tumbleweed (operating system)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5661, 'OPENSUSE', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5662, 'SUSEWatcher', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5663, 'Opensuse', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5664, 'Unbreakable Enterprise Kernel', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5665, 'Oracle Unbreakable Enterprise Kernel', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5666, 'Unbreakable Linux', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5667, 'Oracle linux', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5668, 'Unbreakable Linux Network', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5669, 'Red Hat Compatible Kernel', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5670, 'Oracle Unbreakable Linux', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5674, 'Red Hat Global Desktop', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5675, 'RedHat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5676, 'Red hat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5677, 'RedHat Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5678, 'Redhat Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5679, 'Redhat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5680, 'Rhel', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5681, 'Red hat enterprise', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5682, 'Red Hat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5683, 'Rhel4', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5684, 'Red Hat Global Desktop Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5685, 'Red Hat Enterprise Linux (RHEL)', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5686, 'Red hat Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5687, 'Red Hat Enterprise Linux 3', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5688, 'Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5689, 'RedPatch', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5690, 'SUSE LINUX Enterprise Server', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5691, 'SuSE SLES', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5692, 'SLES (software)', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5693, 'SuSE Linux Enterprise Server', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5694, 'SUSE Linux Enterprise', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5695, 'SLES (operating system)', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5696, 'SuSE Enterprise Linux', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5697, 'SUSE SLES', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5698, 'Ubunt', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5699, 'Ubuntu (GNU/Linux distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5700, 'Ubuntu Server Edition', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5701, 'Ubuntu Light', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5702, 'Ubuntu (linux)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5703, 'Ubuntu (Operating system)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5704, 'Ubuntulinux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5705, 'Uboonto Linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5706, 'Easyubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5707, 'Ubuntu (os)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5708, 'Ubuntu LTS', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5709, 'Linux ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5710, 'Ubuntu (software)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5711, 'Ubuntu desktop', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5712, 'Ubuntu (OS)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5713, 'Ubuntu (Operating System)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5714, 'Ubuntu operating system', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5715, 'Ubufox', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5716, 'Ubunto Linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5717, 'Ubuntu (O.S.)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5718, 'Ubuntu Business Desktop Remix', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5719, 'Ubuntu GNU/Linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5720, 'Ubuntu os', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5721, 'Ubuntu Server', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5722, 'Ubuntu (distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5723, 'Ubuntu (operating system)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5724, 'Ubanto', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5725, 'Unbuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5726, 'Uboonto', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5727, 'Ubuntu Linux (operating system based on Debian)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5728, 'EasyUbuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5729, 'Ubuntu Linux os', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5730, 'Portable Ubuntu for Windows', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5731, 'Ubuntu distro', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5732, 'Ubuntu server', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5733, 'Ubuntu distribution', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5734, 'Ubuntu linux os', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5735, 'Ubuntu (Linux)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5736, 'Ubuntu (Linux distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5737, 'Ubutnu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5738, 'Ubunut', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5739, 'Ubuntu Desktop', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5740, 'Ubuntu Linux Server Edition', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5741, 'Ubuntu Universe', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5742, 'Unbutu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5743, 'Ubuntu Foundation', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5744, 'Linux Ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5745, 'Universe ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5746, 'Ubuntu operatng system', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5747, 'Ubuntu (linux distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5748, 'Ubununtu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5749, 'Ubuntu Linux distribution', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5750, 'Easy Ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5751, 'Ubunto', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5752, 'Ubuntu Enterprise Cloud', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5753, 'ShipIt', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5754, 'Ubuntu linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5755, 'Ubuntu Linux operating system', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5757, 'Ubuntu OS', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5758, 'Ubuntu Project', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5759, 'Ubuntu GNU/linux', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5760, 'Linux on zSeries', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5761, 'LinuxONE', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5762, 'ZLinux', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5763, 'Linux for zSeries', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5764, 'Linux on System z9', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5765, 'Linux on mainframe', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5766, 'S390x', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5767, 'Linux/390', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5768, 'IBM LinuxONE', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5769, 'Linux for mainframe', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5770, 'Linux on z Systems', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5771, 'Linux on System z', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5772, 'Linux on Z Systems', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5773, 'Linux for mainframes', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5774, 'Linux on zseries', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5775, 'Linux on mainframes', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5776, 'Mainframe Linux', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5777, 'Linux on z', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5778, 'Z/Linux', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5779, 'Apple OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5780, 'Marklar project', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5781, 'OS/X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5782, 'Max os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5783, 'Mac OS X 10', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5784, 'OS-X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5785, 'Mac os 10', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5786, 'Mac osx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5787, 'MacOS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5788, 'Macintosh OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5789, 'Macos', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5790, 'Mac OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5791, 'MacOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5792, 'Macosx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5793, 'Apple Macintosh OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5794, 'Mac OS/OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5795, 'Macintosh OS-X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5796, 'Os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5797, 'Mac OS-X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5798, 'MacOS/X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5799, 'Mac Os X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5800, 'MAC OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5801, 'MacintoshOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5802, 'Apple Macintosh OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5803, 'Os ten', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5804, 'Mac OS/X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5805, 'Osx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5806, 'IBSD', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5807, 'Apple macOS', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5808, 'OSx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5809, 'Mac os ten', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5810, 'OS X (operating system)', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5811, 'MacOs', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5812, 'Apple Mac OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5813, 'Macos x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5814, 'MAC OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5815, 'Apple OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5816, 'Apple Mac OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5817, 'Macintosh OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5818, 'MOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5819, 'Mac os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5820, 'Apple MacOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5821, 'MacOS 10', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5822, 'Apple os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5823, 'OSX', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5824, 'Mac OS 10', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5825, 'Mac OS X', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5826, 'OS X', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5827, 'MSP (operating system)', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5828, 'MVS/ESA', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5829, 'OS/MVS', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5830, 'MVS Operating System', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5831, 'Data Facility Product', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5832, 'MVS/XA', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5833, 'MVS/370', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5834, 'Fujitsu MSP', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5835, 'OS/VS2 (MVS)', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5836, 'Hitachi VOS3', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5837, 'MVS/SP', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5838, 'Multiple Virtual Storage', 6, 577, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5839, 'MVS|OS/390', 6, 440, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5840, 'ZOS', 6, 441, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5841, 'IBM z/OS', 6, 441, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5842, 'Virtual Memory System', 6, 442, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5843, 'VAX/VMS', 6, 442, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5844, 'Open vms', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5845, 'VMS operating system', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5846, 'OpenVMS 7.2', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5847, 'DECwindows', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5848, 'VMS (operating system)', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5849, 'VAX-VMS', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5850, 'DEC VMS', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5851, 'DECWindows', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5852, 'Vax/vms', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5853, 'Open VMS', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5854, 'Openvms', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5855, 'OS/2 Warp', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5856, 'Win-OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5857, 'DOS/286 (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5858, 'NEWDOS (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5859, 'Microsoft Betriebssystem/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5860, 'Os2 warp', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5861, 'OS/2 Warp 3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5862, 'OS/2 Warp 3J', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5863, 'Warp 3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5864, 'IBM BS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5865, 'BS/2 1.1', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5866, 'Os2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5867, 'OS/2 1.21', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5868, 'BS/2 1.3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5869, 'Advanced DOS', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5870, 'OS2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5871, 'BS/2 1.0', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5872, 'WINOS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5873, 'OS/2 Warp 4.5', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5874, 'IBM OS2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5875, 'OS/2 Special Edition for Windows', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5876, 'OS/2 2.1', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5877, 'OS/2 Warp 4', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5878, 'OS/2 1.3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5879, 'WinOS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5880, 'OS/2 1.0', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5881, 'Warp Server', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5882, 'Microsoft OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5883, 'WIN-OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5884, 'OS/2 Warp Connect', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5885, 'Microsoft Operating System/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5886, 'IBM OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5887, 'OS/2 for Windows', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5888, 'OS/2 2.0', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5889, 'IBM Operating System/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5890, 'OS 2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5891, 'Betriebssystem/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5892, 'DOS 5 (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5893, 'Microsoft BS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5894, 'IBM Betriebssystem/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5895, 'DOS 286 (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5896, 'OS/2 API', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5897, 'OS/2 1.1', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5898, 'BS/2 1.2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5899, 'Os/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5900, 'BS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5901, 'CP/DOS', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5902, 'ADOS (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5903, 'OS/2 1.2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5904, '0S/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5905, 'Operating System/2', 6, 443, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5906, 'Unixes', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5907, 'UNIX operating system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5908, 'UNIX systems', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5909, 'Unix operating system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5910, 'Truly Unix', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5911, 'UNIX system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5912, 'Unix box', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5913, 'Unix system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5914, 'Traditional Unix', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5915, 'UNIX', 6, 578, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5916, 'Advanced IBM UNIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5917, 'IBM-RT/AIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5918, 'IBM AIX (operating system)', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5919, 'Object Data Manager', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5920, 'AIX (operating system)', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5921, 'Aix os', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5922, 'IBM System AIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5923, 'Ibm lum', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5924, 'AIX for Apple Network Server', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5925, 'IBM AIX/370', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5926, 'Advanced Interactive eXecutive', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5927, 'AIX/RT', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5928, 'AIX/370', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5929, 'AIXv3', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5930, 'IBM370/AIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5931, 'IBM AIX/PS2', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5932, 'VM/IX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5933, 'IX/370', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5934, 'AIX for ANS', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5935, 'IBM AIX/RT', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5936, 'AIX Operating System', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5937, 'AIX operating system', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5938, 'AIX for Apple Network Servers', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5939, 'IBM AIX/390', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5940, 'AIX/PS2', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5941, 'AIX/390', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5943, 'BSD operating system', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5944, 'Berkeley software distribution', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5945, '4.4BSD-Lite', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5946, 'Vmunix', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5947, 'BSD Unices', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5948, 'HPBSD', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5949, '4.4BSD-Encumbered', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5950, 'Berkeley UNIX', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5951, 'Berkley Software Distribution', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5952, 'Net/1', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5953, 'Berkeley UNIX 4.3BSD', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5954, 'BSD-based', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5955, 'Bsdgames', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5956, 'Net/2', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5957, 'Bsd', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5958, '*BSD', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5960, 'BSD (operating system)', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5962, 'BSD UNIX', 6, 579, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5965, 'TrustedBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5966, 'Freebsd', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5967, 'FBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5968, 'Free BSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5969, 'FreeBSD 8', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5970, 'NanoBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5971, 'Linuxulator', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5972, 'FreeBSD Project', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5973, 'FREEBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5974, 'FreeBSD kernel', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5975, 'FreeBSD 5.0', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5976, 'Free bsd', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5978, 'Sun os', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5979, 'SunOS Unix', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5980, 'Sunos', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5981, 'SunOS 4.1', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5982, 'Sun OS', 6, 448, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5984, 'Hewlett Packard Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5985, 'HP/UX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5986, 'Hewlett-Packard UniX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5987, 'Hewlett Packard-Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5988, 'Hpux', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5989, 'Hewlett-Packard Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5991, 'Hewlett-Packard UNIX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5992, 'Hewlett Packard UniX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5993, 'Hewlett Packard UNIX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5995, 'MS Windows', 6, 580, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5997, 'Apptimum', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5998, 'Windows Operating System', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5999, 'Windows OS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6000, 'Windows 365', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6001, 'Windows the operating system', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6002, 'Windows (Operating System)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6003, 'WINDOWS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6004, 'Windows (OS)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6005, 'Microsoft windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6006, 'MS-Windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6007, 'Windows operating system', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6009, 'Mswin', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6010, 'Microsoft windows os', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6011, 'MICROSOFT WINDOWS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6012, 'Widnows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6013, 'Windwos', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6014, 'Windows (operating system)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6015, 'MSWindows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6016, 'Alliance OS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6017, 'Windows®', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6019, 'Ms windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6020, 'Windows os', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6021, 'MsWindows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6022, 'Windows (Operating system)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6023, '32-bit Windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6024, 'Microsoft windows operating system', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6025, 'Windows Microsoft', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6026, 'Freedows OS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6027, 'MSWin', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6028, 'Windows computers', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6042, 'Windows PC', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6052, 'PC Windows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6063, 'Windows Storage Server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6064, 'Microsoft Windows Server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6065, 'Windows Web Edition', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6066, 'Windows server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6067, 'Windows Server 200x', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6068, 'Windows Server 2022', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6069, 'Microsoft Windows server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6070, 'Fedora Rawhide', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6071, 'Linux fedora', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6072, 'Fedora (OS)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6073, 'Fedora AOS', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6074, 'Fedora Extras', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6075, 'Fedora (GNU/Linux distribution)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6076, 'Fedora Core Linux', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6077, 'Fedora Workstation', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6078, 'Fedora OS', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6079, 'Fedora (linux distribution)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6080, 'COPR (Fedora)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6081, 'Rawhide (operating system)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6082, 'Fedora linux', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6083, 'Fedora Robotics', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6084, 'Cool Other Package Repositories', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6085, 'Fedora Linux', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6086, 'Fedomatix', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6087, 'Fedora (Operating System)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6088, 'Rawhide (software)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6089, 'Eeedora', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6090, 'Fedora operating system', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6091, 'Fedora (software)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6092, 'Fedora Core', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6093, 'Fedora Cloud', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6094, 'Rawhide (computing)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6095, 'Fedora IoT', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6096, 'Fedora Linux Swap', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6097, 'Fedora (Linux)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6098, 'Fedora Modular Server', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6099, 'Fedora (Linux distribution)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6100, 'Fedora CoreOS', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6101, 'Fedora 10', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6102, 'Fedora Silverblue', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6103, 'Fedora Atomic Host', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6104, 'Fedora spin', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6105, 'Fedora Server', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6106, 'EPEL', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6107, 'Fedora LXQt', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6108, 'Fedora core', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6109, 'Linux|Amazon Linux', 6, 454, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6111, 'Microsoft Exchange Server|Veeam Explorer', 5, 464, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6112, 'Data Transformation Service', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6113, 'DTS package', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6114, 'DTS Package', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6115, 'Data transformation service', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6116, 'DTS Packages', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6117, 'DTS Tasks', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6118, 'OLAP Services', 5, 468, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6119, 'ADOMD.NET', 5, 468, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6121, 'SSIS package', 5, 470, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6122, 'SSMS', 5, 471, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6123, 'SSMSE', 5, 471, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6124, 'Management studio', 5, 471, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6127, 'SQL Reporting Services', 5, 473, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6128, 'Sql server reporting services', 5, 473, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6129, 'Spatial Data Option', 5, 475, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6130, 'GeoRaster', 5, 475, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6131, 'Oracle Spatial', 5, 475, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6133, 'Sqlplus', 5, 478, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6135, 'Run-time library', 7, 482, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6136, '.NET Framework|log4net', 7, 483, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6137, 'Windows Communications Foundation', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6138, 'Indigo Application Server', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6139, 'Windows communication foundation', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6141, 'Windows Communication Framework', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6142, 'Indigo (messaging system)', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6143, 'Microsoft Indigo', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6144, 'WF4', 7, 486, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6145, 'Workflow Foundation', 7, 486, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6146, 'Windows Overflow Foundation', 7, 486, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6147, 'Windows.Forms', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6148, 'Winforms', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6149, 'Windows Forms control', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6150, 'WindowsForms', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6151, 'Windows Forms application', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6153, 'ActiveX Data Object', 7, 488, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6154, 'Active X Data Objects', 7, 488, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6155, 'Msado', 7, 488, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6156, 'Jboss seam', 7, 492, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6157, 'JBoss SEAM', 7, 492, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6158, 'Seam framework', 7, 492, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6159, 'JBoss application server', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6161, 'JBoss AS', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6162, 'Jbossas', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6163, 'Jboss as', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6164, 'Jboss', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6165, 'JBossWS', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6168, 'ABAP Objects', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6169, 'SAP ABAP', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6170, 'Abap Objects', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6171, 'ABAP/4', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6172, 'Abap IV', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6173, 'Abap', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6174, '.NET SDK', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6175, 'Dot NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6176, 'Microsoft net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6177, 'Net Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6178, 'Dotnet framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6179, 'Netfx', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6180, 'Dot Net Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6181, 'Dot net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6182, '.NET Enterprise Server', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6183, '.NET framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6184, 'NetFX', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6185, 'Microsoft .NET framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6186, 'Microsoft''s .NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6187, '.NET Server', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6188, '.Net Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6190, '.NET Services', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6191, '.NET platform', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6192, '.Net (programming language)', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6193, 'Microsoft .NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6194, '.net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6195, 'NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6196, 'Active Directory Services', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6197, 'Likewise Open', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6198, 'Active directory object', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6199, 'AD/LDS', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6200, 'Active Directory Schema', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6201, 'AD DS', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6202, 'Microsoft Active Directory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6203, 'NT Directory Service', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6204, 'Active Directory Site', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6205, 'ActiveDirectory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6206, 'Active directory authentication module', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6207, 'Active Directory Domain Services', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6208, 'Active directory objects', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6209, 'Active directory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6210, 'Micorsoft Active Directory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6211, 'Active Directory Service Interfaces', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6212, 'Active Directory Service', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6213, 'Active Directory Directory Services', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6214, 'Microsoft Active Direcory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6215, 'Domain tree', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6216, 'Active Directory Application Mode', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6217, 'AD LDS', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6218, 'ASP programming language', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6220, 'ASP3', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6221, 'Apache::ASP', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6222, 'Active server pages', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6224, 'Asp Apache', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6225, 'Active X', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6226, 'ActiveX Control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6227, 'Activex', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6228, 'ActiveX client', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6229, 'ActiveX Object', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6230, 'ActiveX control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6231, 'ActiveX component', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6232, 'MFC ActiveX Control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6233, 'Active x', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6234, 'ActiveX server', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6235, 'Active-x', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6236, 'Activex control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6237, 'Apache Cordoba', 10, 501, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6238, 'Apache Callback', 10, 501, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6239, 'Customer Information Control System', 10, 502, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6240, 'CICS Transaction Server', 10, 502, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6241, 'Docker software', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6242, 'Docker (Linux container engine)', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6243, 'Libcontainer', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6244, 'Dockerfile', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6245, 'Docker Toolbox', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6246, 'Shockwave Flash', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6247, 'UIRA', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6248, 'Flash MX', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6249, 'Flash CS3', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6250, 'Futuresplash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6251, 'Adobe Flash CS4', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6252, 'Flash 8', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6253, 'Flash mx 2004', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6254, 'Flash (software)', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6255, 'FutureSplash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6256, 'Macromedia Flash Remoting', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6257, 'Macromedia flash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6258, 'Flash programming', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6259, 'Adobe Flash animation', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6260, 'Flash 6', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6261, 'Adobe flash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6262, 'Adobe Flash Platform', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6263, 'Macromedia Flash Professional 9', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6264, 'F4L', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6265, 'Flash components', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6266, 'Flash 10', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6267, 'F4l', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6268, 'Flash 9', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6269, 'Qflash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6270, 'Flash mx', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6273, 'NodeJs', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6274, 'Node js', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6275, 'Node.JS', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6277, 'Iojs', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6278, 'Io.js', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6279, 'NodeJS', 10, 507, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6280, 'Action Web Service', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6281, 'Rubyonrails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6282, 'Ruby on Яails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6283, 'Ruby on rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6284, 'Action Mailer', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6285, 'Ruby on Iaails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6286, 'Rails framework', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6287, 'Ruby on Rails (web framework)', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6288, 'Ruby On Rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6289, 'Ruby-on-rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6290, 'Ruby with rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6293, 'Application management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6294, 'Application life-cycle management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6295, 'Integrated application lifecycle management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6296, 'Software Lifecycle Management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6297, 'Assembly Language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6298, 'Assembler (computer programming)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6299, 'Meta-assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6300, 'Op code mnemonic', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6301, 'Cross-assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6302, 'Assembly languages', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6303, 'Programming language/assembly', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6304, 'Assembly language assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6305, 'Two-pass assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6306, 'Cross assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6307, 'Assembly code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6308, 'Assembler code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6309, 'Assembler language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6310, 'Assembler program', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6311, 'Assembly language macros', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6312, 'Mnemonics (assembler)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6313, 'ARM Assembly Language Programming', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6314, 'Extended mnemonics', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6315, 'Mnemonics (assembly language)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6316, 'Symbolic machine code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6317, 'Assembly programming language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6318, 'Assembly Programming System', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6319, 'Assembler (programming language)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6320, 'Symbolic Machine Code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6321, 'Mnemonic (assembly language)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6322, 'Macro assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6323, 'Assembler (computing)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6324, 'Assembly file', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6325, 'Mnemonic (assembler)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6326, 'Assember language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6327, 'Assembler for an assembly language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6328, 'Assembler programming', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6329, 'Macroassembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6330, 'Assembler directive', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6331, 'Assembly programming', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6332, 'Opcode mnemonics', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6333, 'Assembly time', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6335, 'Cgi script', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6336, 'CGI script', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6337, 'Common gateway interface', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6340, 'Interface ID', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6341, 'ActiveX application', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6342, 'COM/ActiveX', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6343, 'Multi Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6344, 'COM object', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6345, 'Neutral Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6346, 'COM server', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6347, 'Component object model', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6348, 'Single-Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6349, 'ActiveX script', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6350, 'Single Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6351, 'COM and OLE', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6352, 'Microsoft Component Object Model', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6353, 'Single-threaded apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6355, 'Apartment model', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6356, 'Multi-Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6358, 'Portable Object Adapter', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6359, 'Object Management Architecture', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6360, 'Portable interceptors', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6361, 'OMG IDL', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6362, 'Common object request broker architecture', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6363, 'VMCID', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6364, 'Incarnation (CORBA)', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6366, 'Corbaloc', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6367, 'CORBA Component Model', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6368, 'Servant (CORBA)', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6369, 'Corba', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6370, 'CORBA architecture', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6373, 'DDBMS', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6374, 'Enterprise database management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6375, 'Distributed data base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6376, 'Database management system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6377, 'Database Management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6378, 'Database query', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6379, 'DBMSs', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6380, 'Research database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6381, 'Database management software', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6382, 'Database (computing)', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6383, 'Distributed Database Management System', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6384, 'Database instance', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6385, 'Database management program', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6386, 'DataBase', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6387, 'Library database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6388, 'Database system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6389, 'Database management systems', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6390, 'Database/Applications', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6391, 'Data Base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6392, 'Distributed database management system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6393, 'Database Management System', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6394, 'Database manager', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6395, 'Database programming', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6396, 'Database software', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6397, 'Public database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6398, 'Distributed databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6399, 'Dbms', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6400, 'Forensic database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6401, 'Data base management system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6402, 'Databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6403, 'Electronic data processing database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6404, 'Database management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6405, 'Computer database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6406, 'Data-base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6407, 'Data bases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6408, 'DBMS', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6409, 'Computer Databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6410, 'Database System', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6411, 'Database development', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6412, 'Numeric database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6413, 'DB file', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6414, 'Scientific database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6415, 'Database Manager', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6416, 'Database systems', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6417, 'Database information system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6418, 'Data base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6419, 'D-base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6420, 'Database backend', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6421, 'General-purpose DBMS', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6422, 'Public databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6423, 'Db management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6424, 'EDI Translation Software', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6426, 'ANSI ASC X.12', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6427, 'X.12', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6428, 'Web-servers', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6429, 'Web Servers', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6430, 'Webserver', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6432, 'Www server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6433, 'Web-server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6434, 'HTTP web server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6436, 'Web servers', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6437, 'WWW server', 1, 522, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6438, 'HTTP server', 1, 522, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6439, 'Jdom', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6440, 'Java object model', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6441, 'JSR 102', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6442, 'Java Document Object Model', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6443, 'Ldap', 1, 524, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6444, 'Eldap', 1, 524, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6445, 'LDAPS', 1, 524, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6447, 'Database driver', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6448, 'ODBC driver', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6449, 'ODBC Driver', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6450, 'Open DataBase Connectivity', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6451, 'OBDC', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6452, 'Odbc', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6453, 'Open database connectivity', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6456, 'Order management', 1, 526, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6459, 'REST API', 1, 529, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6462, 'REST Architecture', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6463, 'REST-SST', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6464, 'RESTful web service', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6465, 'REST interface', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6466, 'RESTFul', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6467, 'RESTfully', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6468, 'Rest interface', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6469, 'Restful interface', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6470, 'RESTful API', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6471, 'Restful web service', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6472, 'Restful', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6473, 'Restful application', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6474, 'RESTful', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6475, 'SOA Lifecycle', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6476, 'SOA environment', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6477, 'Service Oriented Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6478, 'Endpoint computing', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6479, 'Service orientated architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6480, 'Soba (computing)', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6481, 'Broker (service-oriented architecture)', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6483, 'Service-oriented business application', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6484, 'Service Oriented Computing', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6485, 'Service-oriented Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6486, 'Service-oriented architectures', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6487, 'Service oriented architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6488, 'Service Orientated Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6489, 'Service-orientated architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6490, 'Service-Orientated Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6491, 'Service Oriented Architectures', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6493, 'SOAP request', 1, 531, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6494, 'SOAP (protocol)', 1, 531, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6495, 'Soap service', 1, 531, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6496, 'Structured Query Language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6497, 'SQL script', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6498, 'ANSI SQL', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6499, 'SQL Servers', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6500, 'Procedural SQL', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6501, 'Structured query language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6502, 'SQL language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6503, 'Distributed SQL processing', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6504, 'SQL programming language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6505, 'Transaction Control Language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6506, 'SEQUEL', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6507, 'SQL (programming language)', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6508, 'SQL database', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6509, 'Structure Query Language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6510, 'Sql', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6511, 'Yaml', 1, 533, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6512, 'Yet Another Markup Language', 1, 533, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6513, 'YAML Ain''t Markup Language', 1, 533, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6514, 'Model', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6515, 'Model-view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6516, 'Model view controller triad', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6517, 'controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6518, 'view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6519, 'Model-template-view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6520, 'Model–View–Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6521, 'Model View Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6522, 'MVC controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6523, 'View (MVC)', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6524, 'Model-View-Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6525, 'Controller (MVC)', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6526, 'MVC Design Pattern', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6527, 'MVC architecture', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6528, 'Model-view controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6529, 'Model-Template-View', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6530, 'MVC Pattern', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6531, 'Model-view-controller design pattern', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6532, 'Model-View-Controller paradigm', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6533, 'Model view controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6534, 'Model/View/Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6535, 'MVC view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6536, 'MVC model', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6537, 'Model (MVC)', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6538, 'Model-view-controller', 1, 574, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6539, 'Application server computing', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6541, 'Mobile App Server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6542, 'Application servers', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6543, 'Enterprise application server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6544, 'Java application server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6545, 'Appserver', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6546, 'App server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6547, 'Web application server', 1, 535, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6548, 'Cloud hosting', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6549, 'Cloud architecture', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6550, 'Cloud service', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6551, 'IoT Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6552, 'Cloud-hosted', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6553, 'Cloud vendor', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6554, 'Cloud Provider Interface', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6555, 'Cloud transformation', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6556, 'XaaS', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6557, 'Cloud computing platform', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6558, 'Cloud computing vendor', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6559, 'Cloud Computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6560, 'Cloud-based', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6561, 'Cloud provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6562, 'Could computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6563, 'Cloud computing provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6564, 'Computing cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6565, 'Computing in the cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6566, 'Communication as a service', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6567, 'Cloud infrastructure', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6568, 'Hybrid cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6569, 'Private cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6570, 'Cloud Technology', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6571, 'Cloud client', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6572, 'Cloud vendors', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6573, 'Cloud networking', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6574, 'Cloud Hosting', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6575, 'Remote computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6576, 'Private Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6577, 'Computing-in-the-cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6578, 'Cloud hardware', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6579, 'Cloud computer', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6580, 'Cloud technology', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6581, 'Public Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6582, 'Cloud processing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6583, 'Burst computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6584, 'Member Only Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6585, 'Content Marketing Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6586, 'Cloud computing user', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6587, 'Cloud Applications', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6588, 'Online software', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6589, 'Cloud Software', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6590, 'Cloud services provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6591, 'Computer cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6592, 'Cloud-computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6593, 'Cloud distribution', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6594, 'Public cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6595, 'Cloud services', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6596, 'Cloud-based computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6597, 'Cloud Service', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6598, 'Cloudware', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6599, 'EaaS', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6600, 'Cloud service provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6601, 'Cloud software', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6602, 'Cloud user', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6603, 'Cloud (computing)', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6604, 'Cross-Platform Hybrid Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6605, 'Cloud Infrastructure', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6606, 'Cloud (computers)', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6607, 'Hybrid Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6608, 'Cloud standards', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6609, 'Cloud users', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6610, 'Cloud clients', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6611, 'Cloud computing platforms', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6612, 'Enterprise Cloud Computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6613, 'Dynamic Provisioning Environment', 1, 538, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6615, 'Workgroup File server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6616, 'Fileserver', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6617, 'File host', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6618, 'Storage server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6620, 'Workgroup file server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6621, 'File Server Solution', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6622, 'Nominal ledgers', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6624, 'Generalledger', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6625, 'General ledgers', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6626, 'Nominal ledger', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6635, 'HTTP daemon', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6641, 'IXP', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6642, 'Internet Exchange', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6643, 'Internet exchange', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6644, 'Internet Exchange Point', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6645, 'IMAP server', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6646, 'DIMAP', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6647, 'Interactive Mail Access Protocol', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6648, 'IMAP4', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6649, 'IMAP3', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6650, 'Imapd', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6651, 'IMAPv4', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6652, 'Imaps', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6653, 'IMAPS', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6654, 'Internet message access protocol', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6656, 'Javascript Object Notation', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6657, 'Json', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6658, 'JSONNP', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6659, 'Internet JSON', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6660, 'JSON Schema', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6661, 'JSON5', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6662, 'I-JSON', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6663, 'HJSON', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6664, 'JavaScript Object Notation', 1, 548, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6665, 'Mainframe computers', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6666, 'Mainframe', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6667, 'Main frame', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6668, 'Big-iron', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6669, 'MainFrame', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6670, 'Mainframe computing', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6671, 'Mainframe Computer', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6672, 'Main frame computer', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6673, 'Mainframes', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6674, 'Big iron (computing)', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6675, 'Main Frame Computer', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6676, 'Main-frame', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6677, 'Mainframe server', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6679, 'Manufacturing execution systems', 1, 553, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6680, 'Manufacturing Execution Systems', 1, 553, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6682, 'Software as a secure service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6683, 'Saasworld', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6684, 'Software as service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6685, 'SasS', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6686, 'Software-As-A-Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6687, 'Software-as-a-service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6688, 'OpenSaaS', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6689, 'Software plus services', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6690, 'Software-as-a-Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6691, 'Software As A Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6692, 'Software as a Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6693, 'Software as a sevice', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6694, 'Cloud application', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6695, 'SaaSS', 1, 556, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6697, 'Storage area networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6698, 'Storage Area Networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6699, 'Storage network', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6700, 'Distributed storage area networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6702, 'Sanoip', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6703, 'SANoIP', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6704, 'Storage area networking', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6705, 'San server', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6706, 'SAN (computing)', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6707, 'Storage Area Network(SAN)', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6708, 'Centralized storage area networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6709, 'Storage layer', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6711, 'Storage networking', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6712, 'Online desktop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6713, 'WebTop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6714, 'Cloud desktop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6716, 'Web Desktop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6717, 'Anonymous Surfing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6718, 'Proxy IP address', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6719, 'Application layer proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6720, 'Caching proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6721, 'Translation proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6722, 'Internet proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6723, 'Anonymous server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6724, 'Anonymous Web surfing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6725, 'Proxyserver', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6726, 'Web Proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6727, 'Proxy Bouncing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6728, 'Proxifier', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6729, 'Http proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6730, 'Proxy chaining', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6731, 'Suffix proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6732, 'Anonymity network', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6733, 'Application-layer proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6734, 'CGI proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6735, 'HTTP proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6736, 'Free proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6737, 'Proxy Website', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6738, 'Intercepting proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6739, 'HTTPS Proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6740, 'Proxy chain', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6741, 'Proxy IP', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6742, 'Proxy gateway', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6743, 'Web proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6745, 'Web proxies', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6746, 'Proxy servers', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6747, 'Proxy bypass', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6748, 'Anonymous proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6749, 'Bypass (computing)', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6750, 'Residential proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6751, 'Transparent proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6752, 'Myspace proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6753, 'Split proxies', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6754, 'Forward proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6755, 'P roxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6756, 'HTTP proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6757, 'Proxy Sites', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6758, 'SSL Proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6759, 'Anonymous Web proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6760, 'Server proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6761, 'Tproxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6762, 'Circumventor', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6763, 'Caching proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6764, 'Secure & Anonymous Internet Surfing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6765, 'HTTP proxying', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6766, 'Proxy filter', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6767, 'Anonymous web proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6768, 'Utility (computer science)', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6769, 'Software utility', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6770, 'Utility program', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6771, 'Utility (software)', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6772, 'Software utilities', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6773, 'Utility Programs', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6774, 'Utility (computing)', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6775, 'Utility Software', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6776, 'NetScaler', 3, 563, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6777, 'Netscaler', 3, 563, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6778, 'Oracle virtual machine', 3, 567, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6780, 'ESX Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6781, 'VMware ESXi Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6782, 'VMware ESX Server 2.0', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6783, 'VMWare ESX Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6784, 'ESX Server 3i', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6785, 'VMware ESX Server 3.0', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6786, 'VMware ESX', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6787, 'VMware ESXi (software)', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6790, 'VMware ESX Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6791, 'ESXI', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6793, 'VMware GSX Server', 3, 569, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6794, 'GSX Server', 3, 569, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6795, 'VMWare Server', 3, 569, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6811, 'Structured Programming Facility', 2, 223, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6812, 'System Productivity Facility', 2, 223, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6813, 'Program Development Facility', 2, 223, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6814, 'Interactive System Productivity Facility', 2, 223, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6974, 'Data Source Views', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7032, 'ISO 14882', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7050, 'Java Language Specification', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7057, 'Java language specification', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7119, 'OpenRsync', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7120, 'Openbsd', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7121, 'OpenCVS', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7122, 'Opencvs', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7123, 'Open bsd', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7124, 'OpenBSD project', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7125, 'Open BSD', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7126, 'OpenBSD Project', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7127, 'Obsd', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7128, 'Openrsync', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7129, 'VSE/SP', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7130, 'Z/VSE (operating system)', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7131, 'VSE/ESA', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7132, 'Z/VSE', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7140, 'ASP Hints', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7143, 'MSDOS', 6, 593, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7146, 'MS-DOS 1.51', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7147, 'Microsoft Arabic MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7148, 'HP MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7149, 'MS-DOS 3.31', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7150, 'MS-DOS 5.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7151, 'MS-DOS 3.3a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7152, 'MS-DOS 3.3A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7153, 'Ms-dos', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7154, 'TI MS-DOS 2.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7155, 'MS-DOS 3.30', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7156, 'MS-DOS 1.52', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7157, 'Ms-Dos', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7158, 'TeleVideo Personal Computer DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7159, 'MSN-DOS Prompt', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7160, 'MS-DOS 2.5', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7161, 'AST Premium Exec DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7162, 'Texas Instruments MS-DOS 2.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7163, 'MS-DOS 1.50', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7164, 'MS-DOS 1.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7165, 'Altos MS-DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7166, 'Microsoft Hebrew MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7167, 'MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7168, 'MS-DOS 3.4', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7169, 'MSdos', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7170, 'HDOS (Microsoft)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7171, 'MS-DOS 3.21R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7172, 'Microsoft MS-DOS 3.30A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7173, 'Compaq MS-DOS 3.31', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7174, 'TeleVideo PC DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7175, 'AST Premium Exec MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7176, 'NCR-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7177, 'MS-DOS 7.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7178, 'Microsoft ADOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7179, 'MS-DOS 1.23', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7180, 'Hebrew MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7181, 'MS-DOS 2.25', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7182, 'MS-DOS 3.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7183, 'ADOS 5.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7184, 'Microsoft HDOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7185, 'MS-DOS 2.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7186, 'MS-DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7187, 'MS-DOS Mobile', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7188, 'MS-DOS 2.10', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7189, 'Microsoft HDOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7190, 'MS-DOS 1.27', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7191, 'MS-DOS 5.01', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7192, 'MS-DOS 1.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7193, 'MS-DOS 8.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7194, 'Tandy MS-DOS 2.11R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7195, 'MS-DOS 6.x', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7196, 'MS-DOS 2.05', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7197, 'MS-DOS 3.30+', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7198, 'MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7199, 'HDOS (MS-DOS)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7200, 'MS/DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7201, 'MS-DOS 1.1', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7202, 'MS-DOS 2.50', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7203, 'Microsoft Arabic MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7204, 'MS-DOS 3.1', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7205, 'MS-DOS 1.14', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7206, 'MS-DOS 2.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7207, 'MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7208, 'TeleVideo Personal Computer DOS 2.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7209, 'ADOS (Microsoft)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7210, 'MS-DOS 3.40', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7211, 'MS-DOS 2.13', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7212, 'TeleVideo PC DOS 2.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7213, 'Microsoft Arabic MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7214, 'AST Premium Exec MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7215, 'Access DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7216, 'MS-DOS 3.30a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7217, 'MS-DOS 2.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7218, 'PC MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7219, 'MS-DOS 3.30A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7220, 'TI MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7221, 'MS-DOS 6', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7222, 'MS-DOS 5', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7223, 'Microsoft MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7224, 'MS-DOS 1.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7225, 'MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7226, 'ADOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7227, 'Texas Instruments MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7228, 'AST MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7229, 'Microsoft HDOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7230, 'TI MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7231, 'MS-DOS 4.00 (IBM-developed)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7232, 'MS-DOS 1.22', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7233, 'MS-DOS 1.53', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7234, 'ADOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7235, 'MS-ROMDOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7236, 'MS-DOS 3.25', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7237, 'Hebrew MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7238, 'MS-DOS 1.40', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7239, 'MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7240, 'AST Premium Exec DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7241, 'Texas Instruments MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7242, 'MS-DOS 1.25', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7243, 'MS-DOS 2.01', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7244, 'MS-DOS 1.26', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7245, 'MS-DOS 1.41', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7246, 'MS-DOS 1.29', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7247, 'TeleVideo Personal Computer DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7248, 'MS-DOS 6.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7249, 'Microsoft MS-DOS 3.30a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7250, 'TeleVideo PC DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7251, 'SB-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7252, 'Microsoft Hebrew MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7253, 'HDOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7254, 'Hewlett-Packard MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7255, 'MS-DOS 5.00A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7256, 'MS-DOS 6.22', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7257, 'Microsoft ADOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7258, 'MS-DOS 3.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7259, 'MS-DOS 2.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7260, 'Hebrew MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7261, 'MS-DOS 1', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7262, 'COMPAQ-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7263, 'MS-DOS 3.21', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7264, 'MS-DOS 3.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7265, 'Microsoft MS-DOS 3.3A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7266, 'MS-DOS 3.22', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7267, 'MS-DOS 6.21', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7268, 'MS-DOS 3.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7269, 'Microsoft ADOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7270, 'MS-DOS 1.30', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7271, 'MS-DOS 7.10', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7272, 'MS-DOS 3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7273, 'MS-DOS 4.01', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7274, 'Altos MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7275, 'Microsoft Hebrew MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7276, 'Arabic MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7277, 'MsDOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7278, 'MS-DOS 1.28', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7279, 'MS-DOS 2.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7280, 'MS-DOS 1.13', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7281, 'MS-DOS 1.24', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7282, 'HDOS 5.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7283, 'ADOS (MS-DOS)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7284, 'MS-DOS 1.21', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7285, 'MS-DOS 2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7286, 'HDOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7287, 'MS DOS Mobile', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7288, 'MS-DOS 6.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7289, 'MS-DOS 6.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7290, 'MS-DOS 2.11R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7291, 'MS-DOS 1.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7292, 'MS-DOS 6.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7293, 'Arabic MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7294, 'Arabic MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7295, 'MS-DOS 4.0 (IBM-developed)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7296, 'Microsoft MS-DOS 3.3a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7297, 'MS-DOS 1.54', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7298, 'MS-DOS 3.10', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7335, 'XML comment', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7339, 'XML Specification', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7342, 'XML vocabulary', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7345, 'XML document', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7356, 'DOS/VS', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7357, 'IBM TOS/360', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7359, 'Tape Operating System', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7360, 'TOS/360', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7361, 'SSX/VSE', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7362, 'Z/TPF', 6, 598, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7363, 'TPF/ESA', 6, 598, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7394, 'T3Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7395, 'DbKona', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7401, 'Netbsd', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7402, 'NETBSD', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7403, 'Nbsd', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7404, 'The NetBSD Foundation', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7405, 'NBSD', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7406, 'Net bsd', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7407, 'Net BSD', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7408, 'NetBSD kernel', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7438, 'Web part packager', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7466, 'Arbor Software', 2, 607, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7486, 'credstash', 2, 612, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7487, 'Snyk', 2, 613, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7488, 'Akka', 2, 614, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7489, 'Akka (software)', 2, 614, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7490, 'Akka (toolkit)', 2, 614, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7491, 'Varnish', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7492, 'Varnish (Software)', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7493, 'Varinish (Software)', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7494, 'Varnish cache', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7495, 'Varnishd', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7496, 'Varnish cache server', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7497, 'Varnish-cache.org', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7498, 'Varnish (software)', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7499, 'Datadog', 10, 616, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7500, 'API', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7501, 'Application-programming interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7502, 'Application Programming Interfaces', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7503, 'Application-level interaction', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7504, 'Application Program Interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7505, 'Api', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7506, 'API documentation', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7507, 'API Documentation', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7508, 'Application Programming Interface (API)', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7509, 'Application program interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7510, 'Applications programming interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7512, 'Hazelcast', 10, 618, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7513, 'Nuxeo', 10, 620, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7514, 'ArangoDB', 2, 621, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7515, 'AQL (ArangoDB Query Language)', 2, 621, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7516, 'AvocadoDB', 2, 621, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7517, 'Eclipse Che', 2, 622, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7518, 'Codenvy', 2, 622, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7519, 'Amazon S3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7520, 'Amazon Simple Storage Service', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7521, 'Simple Storage Service', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7522, 'S3.amazonaws.com', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7523, 'Amazon-s3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7524, 'AWS S3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7525, 'Applications that use S3 API', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7526, 'User:Leoinspace/Applications that use S3 API', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7527, 'Amazon S3 server', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7528, 'Amazon s3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7530, 'S3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7531, 'ClickHouse', 2, 624, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7532, 'Clickhouse', 2, 624, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7533, 'MinIO', 2, 625, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7534, 'Minio', 2, 625, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7535, 'Elasticsearch', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7536, 'Compass Project', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7537, 'ElasticSearch', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7538, 'Shay Banon', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7539, 'Logstash', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7540, 'Elastic search', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7541, 'Elastic Search', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7542, 'Elasticsearch BV', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7543, 'Elastic stack', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7544, 'ELK stack', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7545, 'es', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7546, 'XtraDB', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7547, 'Xtradb', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7548, 'Xtra DB', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7549, 'Percona XtraDB', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7550, 'Keycloak', 2, 628, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7551, 'JBoss SSO', 2, 628, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7552, 'PicketLink (software)', 2, 628, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7553, 'Grafana', 2, 629, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7554, 'Mattermost', 10, 630, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7555, 'Mattermost.com', 10, 630, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7556, 'Cloud IAM', 2, 632, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7557, 'Knative', 10, 633, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7558, 'Apache Cassandra', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7559, 'Apache cassandra', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7560, 'Cassandra (database)', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7561, 'Cassandra (software)', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7562, 'Cassandra software', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7563, 'Cassandra', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7564, 'Kubeflow', 10, 635, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7565, 'Qiskit', 2, 636, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7566, 'QISKit', 2, 636, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7567, 'Microsoft Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7568, 'Windows Strata', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7569, 'Windows Cloud', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7570, 'Windows azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7571, 'Windows Azure Fabric Controller', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7572, 'Microsoft Windows Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7573, 'Azure Services Platform', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7574, 'Windows Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7575, 'Azure machine learning studio', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7576, 'Microsoft azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7577, 'Ethereum Blockchain as a Service', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7579, 'Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7580, 'Strimzi', 10, 638, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7581, 'Sematext', 10, 639, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7582, 'Eclipse Ditto', 2, 641, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7583, 'Zadara', 2, 643, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7584, 'Zadara Storage', 2, 643, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7585, 'Istio', 2, 644, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7586, 'Vault', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7587, 'Vault overseer', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7588, 'Vault (disambiguation)', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7589, 'Vaults', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7590, 'Vault (software)', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7591, 'HashiCorp Vault', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7592, 'Apache Druid', 2, 646, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7593, 'Druid (open-source data store)', 2, 646, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7594, 'etcd', 2, 647, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7595, 'Traefik', 8, 648, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7596, 'IBM Cloud', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7597, 'Bluemix', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7598, 'IBM Bluemix', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7599, 'OpenWhisk', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7600, 'CockroachDB', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7601, 'Cockroach DB', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7602, 'User:Remote50/sandbox', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7603, 'Cockroachlabs', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7604, 'Cockroach Labs', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7605, 'Jaeger', 10, 652, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7606, 'NATURAL', 9, 653, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7607, 'NPL', 9, 653, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7608, 'Natural Programming Language', 9, 653, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7609, 'ACUCOBOL-GT', 9, 654, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7610, 'ACUCOBOL', 9, 654, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7611, 'AcuCOBOL', 9, 654, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7612, 'Ada', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7613, 'MIL-STD-1815', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7614, 'ISO/IEC 8652', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7615, 'Ada 95', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7616, 'Ada 83', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7617, 'Ada 80', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7618, 'Ada 2012', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7619, 'Adaptable DAta BAse System', 2, 656, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7620, 'ADABAS', 2, 656, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7621, 'Adabas database', 2, 656, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7622, 'Application Development System Online', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7623, 'ADS/O', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7624, 'ADS', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7625, 'ADS/Online', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7626, 'Ansible', 2, 5, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7627, 'Ansible Software', 2, 5, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7628, 'batch', 9, 659, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7629, 'BAT file', 9, 659, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7630, 'batch file', 9, 659, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7631, 'Windows PowerShell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7632, 'PowerShell Core', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7633, 'PS', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7634, 'Power Shell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7635, 'Monal Shell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7636, 'Microsoft Shell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7637, 'MSH', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7638, 'COM+', 9, 661, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7639, 'Microsoft Component Services', 9, 661, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7640, 'COM Services', 9, 661, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7641, 'DataFlex', 9, 662, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7642, 'Dataflex', 9, 662, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7643, 'Visual DataFlex', 9, 662, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7644, 'DDS', 9, 663, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7645, 'Data distribution service', 9, 663, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7646, 'Forte 4GL', 9, 664, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7647, 'Forte', 9, 664, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7648, 'FoxPro', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7649, 'Foxpro', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7650, 'FoxPro 2', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7651, 'FoxPro 26', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7652, 'FoxPro 2.6', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7653, 'FPU26', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7654, 'IBM DB2 Purescale', 2, 666, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7655, 'DB2 Purescale', 2, 666, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7656, 'IDMS DB', 2, 667, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7657, 'IDMS Database', 2, 667, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7658, 'IDMS/DB Database', 2, 667, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7659, 'IDMS/DB DML', 9, 668, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7660, 'IDMS/DB Data Manipulation Language', 9, 668, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7661, 'IDMS DML', 9, 668, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7662, 'Jaguar', 8, 669, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7663, 'EAServer', 8, 670, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7664, 'Enterprise Application Server', 8, 670, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7665, 'Sybase Enterprise Application Server', 8, 670, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7668, 'Cassandra SGBD', 2, 634, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7669, 'Netezza', 4, 672, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7670, 'IBM Netezza', 4, 672, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7674, 'OpenEdge Advanced Business Language', 9, 344, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7676, 'Open Rapid Object Application Development', 9, 674, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7677, 'Oracle Reports', 2, 675, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7678, 'Oracle RPT', 2, 675, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7679, 'Oracle Reports 1', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7680, 'Oracle Reports 2.0', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7681, 'Oracle Reports 2.5', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7682, 'Oracle Reports 6i', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7683, 'Oracle Reports 9i', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7684, 'Oracle Reports 10g', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7685, 'SAP Replication Server', 2, 676, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7686, 'content tracker', 2, 677, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7687, 'Git', 2, 677, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7688, 'the stupid content tracker', 2, 677, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7689, 'gitlab', 2, 678, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7690, 'Virtual Storage Access Method', 2, 679, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7691, 'VSAM', 2, 679, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7692, 'BMS Map', 9, 689, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7693, 'Basic Mapping Supprt', 9, 689, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7695, 'DB400', 2, 690, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7696, 'DB/400', 2, 690, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7697, 'Integrated Language Environment', 9, 691, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7698, 'ILE', 9, 691, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7699, 'indexed sequential access method', 2, 693, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7700, 'ISAM', 2, 693, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7701, 'IBM ISAM', 2, 693, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7702, 'Oracle RDS', 2, 694, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7703, 'RDS Oracle DB', 2, 694, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7704, 'Oracle RDS Database', 2, 694, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7705, 'SAP IQ', 2, 695, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7706, 'Sybase IQ', 2, 695, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7707, 'SAP Sybase IQ', 2, 695, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7708, 'z/Linux', 2, 437, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7709, 'Linux on IBM Z', 2, 437, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7710, 'Integrated Data Store (IDS)', 2, 692, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7711, 'IDS', 2, 692, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7712, 'IDS/I', 2, 692, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7713, 'Springboot', 12, 399, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7714, 'Apache Maven', 2, 697, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7715, 'Maven', 2, 697, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7716, 'BAL', 9, 698, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7717, 'Basic Assembler Language', 9, 698, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7718, 'Basic Assembly Language', 9, 698, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7719, 'IBM Basic assembly language', 9, 698, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7720, 'COM plus', 9, 661, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7721, 'COM+ Events', 9, 661, 'others'); + +-- Table: entity_relations CREATE TABLE entity_relations ( id integer PRIMARY KEY AUTOINCREMENT, entity_parent_type_id integer NOT NULL, @@ -7838,1399 +7913,1403 @@ CREATE TABLE entity_relations ( FOREIGN KEY (entity_parent_id) REFERENCES entities (id), FOREIGN KEY (entity_child_id) REFERENCES entities (id) ); -INSERT INTO entity_relations VALUES(1,6,580,10,497,''); -INSERT INTO entity_relations VALUES(2,6,580,10,498,''); -INSERT INTO entity_relations VALUES(3,6,580,10,592,''); -INSERT INTO entity_relations VALUES(4,6,580,10,500,''); -INSERT INTO entity_relations VALUES(5,6,418,10,501,''); -INSERT INTO entity_relations VALUES(6,6,425,10,501,''); -INSERT INTO entity_relations VALUES(7,6,438,10,501,''); -INSERT INTO entity_relations VALUES(8,6,580,10,501,''); -INSERT INTO entity_relations VALUES(9,6,441,10,502,''); -INSERT INTO entity_relations VALUES(10,6,591,10,502,''); -INSERT INTO entity_relations VALUES(11,6,576,10,503,''); -INSERT INTO entity_relations VALUES(12,6,438,10,503,''); -INSERT INTO entity_relations VALUES(13,6,580,10,503,''); -INSERT INTO entity_relations VALUES(14,6,418,10,504,''); -INSERT INTO entity_relations VALUES(15,6,425,10,504,''); -INSERT INTO entity_relations VALUES(16,6,576,10,504,''); -INSERT INTO entity_relations VALUES(17,6,438,10,504,''); -INSERT INTO entity_relations VALUES(18,6,448,10,504,''); -INSERT INTO entity_relations VALUES(19,6,580,10,504,''); -INSERT INTO entity_relations VALUES(20,6,580,10,505,''); -INSERT INTO entity_relations VALUES(22,6,576,10,507,''); -INSERT INTO entity_relations VALUES(23,6,438,10,507,''); -INSERT INTO entity_relations VALUES(24,6,445,10,507,''); -INSERT INTO entity_relations VALUES(25,6,447,10,507,''); -INSERT INTO entity_relations VALUES(26,6,590,10,507,''); -INSERT INTO entity_relations VALUES(27,6,580,10,507,''); -INSERT INTO entity_relations VALUES(28,6,576,10,508,''); -INSERT INTO entity_relations VALUES(29,6,438,10,508,''); -INSERT INTO entity_relations VALUES(30,6,580,10,508,''); -INSERT INTO entity_relations VALUES(32,8,609,7,490,''); -INSERT INTO entity_relations VALUES(33,8,609,7,489,''); -INSERT INTO entity_relations VALUES(34,8,609,7,491,''); -INSERT INTO entity_relations VALUES(35,8,268,7,492,''); -INSERT INTO entity_relations VALUES(36,8,610,7,494,''); -INSERT INTO entity_relations VALUES(37,8,276,7,495,''); -INSERT INTO entity_relations VALUES(38,8,279,7,496,''); -INSERT INTO entity_relations VALUES(39,10,497,7,482,''); -INSERT INTO entity_relations VALUES(40,10,497,7,483,''); -INSERT INTO entity_relations VALUES(41,10,497,7,484,''); -INSERT INTO entity_relations VALUES(42,10,497,7,485,''); -INSERT INTO entity_relations VALUES(43,10,497,7,486,''); -INSERT INTO entity_relations VALUES(44,10,497,7,487,''); -INSERT INTO entity_relations VALUES(45,10,500,7,488,''); -INSERT INTO entity_relations VALUES(46,2,33,5,455,''); -INSERT INTO entity_relations VALUES(47,2,46,5,456,''); -INSERT INTO entity_relations VALUES(48,2,62,5,457,''); -INSERT INTO entity_relations VALUES(49,2,68,5,458,''); -INSERT INTO entity_relations VALUES(50,2,606,5,459,''); -INSERT INTO entity_relations VALUES(51,2,604,5,460,''); -INSERT INTO entity_relations VALUES(52,2,604,5,461,''); -INSERT INTO entity_relations VALUES(53,2,604,5,462,''); -INSERT INTO entity_relations VALUES(54,2,604,5,463,''); -INSERT INTO entity_relations VALUES(55,2,104,5,464,''); -INSERT INTO entity_relations VALUES(56,2,581,5,466,''); -INSERT INTO entity_relations VALUES(57,2,581,5,467,''); -INSERT INTO entity_relations VALUES(58,2,581,5,468,''); -INSERT INTO entity_relations VALUES(59,2,581,5,469,''); -INSERT INTO entity_relations VALUES(60,2,581,5,470,''); -INSERT INTO entity_relations VALUES(61,2,581,5,471,''); -INSERT INTO entity_relations VALUES(62,2,581,5,473,''); -INSERT INTO entity_relations VALUES(63,2,581,5,465,''); -INSERT INTO entity_relations VALUES(64,2,581,5,472,''); -INSERT INTO entity_relations VALUES(65,2,134,5,474,''); -INSERT INTO entity_relations VALUES(66,2,134,5,475,''); -INSERT INTO entity_relations VALUES(67,2,134,5,478,''); -INSERT INTO entity_relations VALUES(68,2,174,5,476,''); -INSERT INTO entity_relations VALUES(69,2,174,5,477,''); -INSERT INTO entity_relations VALUES(70,2,190,5,479,''); -INSERT INTO entity_relations VALUES(71,2,190,5,480,''); -INSERT INTO entity_relations VALUES(72,2,217,5,481,''); -INSERT INTO entity_relations VALUES(73,9,582,12,375,''); -INSERT INTO entity_relations VALUES(74,9,583,12,375,''); -INSERT INTO entity_relations VALUES(75,9,584,12,375,''); -INSERT INTO entity_relations VALUES(76,9,346,12,375,''); -INSERT INTO entity_relations VALUES(77,9,585,12,375,''); -INSERT INTO entity_relations VALUES(78,9,586,12,375,''); -INSERT INTO entity_relations VALUES(79,9,587,12,375,''); -INSERT INTO entity_relations VALUES(80,9,588,12,375,''); -INSERT INTO entity_relations VALUES(81,9,583,12,376,''); -INSERT INTO entity_relations VALUES(82,9,584,12,376,''); -INSERT INTO entity_relations VALUES(83,9,585,12,376,''); -INSERT INTO entity_relations VALUES(84,9,307,12,377,''); -INSERT INTO entity_relations VALUES(85,9,584,12,378,''); -INSERT INTO entity_relations VALUES(86,9,584,12,379,''); -INSERT INTO entity_relations VALUES(87,9,584,12,380,''); -INSERT INTO entity_relations VALUES(88,9,584,12,381,''); -INSERT INTO entity_relations VALUES(89,9,584,12,382,''); -INSERT INTO entity_relations VALUES(90,9,584,12,383,''); -INSERT INTO entity_relations VALUES(91,9,584,12,384,''); -INSERT INTO entity_relations VALUES(92,9,584,12,385,''); -INSERT INTO entity_relations VALUES(93,9,584,12,386,''); -INSERT INTO entity_relations VALUES(94,9,584,12,387,''); -INSERT INTO entity_relations VALUES(95,9,584,12,388,''); -INSERT INTO entity_relations VALUES(96,9,584,12,389,''); -INSERT INTO entity_relations VALUES(97,9,584,12,390,''); -INSERT INTO entity_relations VALUES(98,9,584,12,391,''); -INSERT INTO entity_relations VALUES(99,9,584,12,392,''); -INSERT INTO entity_relations VALUES(100,9,584,12,393,''); -INSERT INTO entity_relations VALUES(101,9,584,12,394,''); -INSERT INTO entity_relations VALUES(102,9,584,12,395,''); -INSERT INTO entity_relations VALUES(103,9,584,12,396,''); -INSERT INTO entity_relations VALUES(104,9,584,12,397,''); -INSERT INTO entity_relations VALUES(105,9,584,12,398,''); -INSERT INTO entity_relations VALUES(106,9,584,12,399,''); -INSERT INTO entity_relations VALUES(107,9,584,12,400,''); -INSERT INTO entity_relations VALUES(108,9,584,12,401,''); -INSERT INTO entity_relations VALUES(109,9,584,12,402,''); -INSERT INTO entity_relations VALUES(110,9,584,12,403,''); -INSERT INTO entity_relations VALUES(111,9,584,12,404,''); -INSERT INTO entity_relations VALUES(112,9,589,12,405,''); -INSERT INTO entity_relations VALUES(113,9,589,12,406,''); -INSERT INTO entity_relations VALUES(114,9,589,12,407,''); -INSERT INTO entity_relations VALUES(115,9,589,12,408,''); -INSERT INTO entity_relations VALUES(116,9,589,12,409,''); -INSERT INTO entity_relations VALUES(117,9,589,12,410,''); -INSERT INTO entity_relations VALUES(118,9,589,12,411,''); -INSERT INTO entity_relations VALUES(119,9,589,12,412,''); -INSERT INTO entity_relations VALUES(120,9,589,12,413,''); -INSERT INTO entity_relations VALUES(121,9,589,12,414,''); -INSERT INTO entity_relations VALUES(122,9,589,12,415,''); -INSERT INTO entity_relations VALUES(123,9,311,12,416,''); -INSERT INTO entity_relations VALUES(124,9,584,12,416,''); -INSERT INTO entity_relations VALUES(125,9,589,12,416,''); -INSERT INTO entity_relations VALUES(126,9,586,12,416,''); -INSERT INTO entity_relations VALUES(127,9,587,12,416,''); -INSERT INTO entity_relations VALUES(128,9,585,12,417,''); -INSERT INTO entity_relations VALUES(129,6,580,9,299,''); -INSERT INTO entity_relations VALUES(130,6,576,9,300,''); -INSERT INTO entity_relations VALUES(131,6,578,9,300,''); -INSERT INTO entity_relations VALUES(133,6,580,9,302,''); -INSERT INTO entity_relations VALUES(135,6,580,9,582,''); -INSERT INTO entity_relations VALUES(138,6,593,9,308,''); -INSERT INTO entity_relations VALUES(139,6,577,9,309,''); -INSERT INTO entity_relations VALUES(140,6,441,9,594,''); -INSERT INTO entity_relations VALUES(141,6,442,9,594,''); -INSERT INTO entity_relations VALUES(142,6,578,9,594,''); -INSERT INTO entity_relations VALUES(143,6,576,9,594,''); -INSERT INTO entity_relations VALUES(144,6,595,9,594,''); -INSERT INTO entity_relations VALUES(145,6,580,9,594,''); -INSERT INTO entity_relations VALUES(146,6,591,9,594,''); -INSERT INTO entity_relations VALUES(147,6,580,9,311,''); -INSERT INTO entity_relations VALUES(149,6,418,9,313,''); -INSERT INTO entity_relations VALUES(150,6,425,9,313,''); -INSERT INTO entity_relations VALUES(151,6,576,9,313,''); -INSERT INTO entity_relations VALUES(152,6,438,9,313,''); -INSERT INTO entity_relations VALUES(153,6,580,9,313,''); -INSERT INTO entity_relations VALUES(154,6,576,9,314,''); -INSERT INTO entity_relations VALUES(155,6,441,9,314,''); -INSERT INTO entity_relations VALUES(156,6,578,9,314,''); -INSERT INTO entity_relations VALUES(157,6,580,9,314,''); -INSERT INTO entity_relations VALUES(158,6,608,9,314,''); -INSERT INTO entity_relations VALUES(159,6,591,9,314,''); -INSERT INTO entity_relations VALUES(165,6,597,9,321,''); -INSERT INTO entity_relations VALUES(166,6,577,9,321,''); -INSERT INTO entity_relations VALUES(167,6,442,9,321,''); -INSERT INTO entity_relations VALUES(168,6,443,9,321,''); -INSERT INTO entity_relations VALUES(169,6,578,9,321,''); -INSERT INTO entity_relations VALUES(170,6,608,9,321,''); -INSERT INTO entity_relations VALUES(172,6,576,9,323,''); -INSERT INTO entity_relations VALUES(173,6,438,9,323,''); -INSERT INTO entity_relations VALUES(174,6,579,9,323,''); -INSERT INTO entity_relations VALUES(175,6,580,9,323,''); -INSERT INTO entity_relations VALUES(180,6,441,9,328,''); -INSERT INTO entity_relations VALUES(181,6,598,9,328,''); -INSERT INTO entity_relations VALUES(182,6,608,9,328,''); -INSERT INTO entity_relations VALUES(183,6,591,9,328,''); -INSERT INTO entity_relations VALUES(184,6,424,9,329,''); -INSERT INTO entity_relations VALUES(188,6,597,9,338,''); -INSERT INTO entity_relations VALUES(189,6,577,9,338,''); -INSERT INTO entity_relations VALUES(190,6,591,9,338,''); -INSERT INTO entity_relations VALUES(191,6,576,9,339,''); -INSERT INTO entity_relations VALUES(192,6,578,9,339,''); -INSERT INTO entity_relations VALUES(193,6,580,9,339,''); -INSERT INTO entity_relations VALUES(194,6,580,9,340,''); -INSERT INTO entity_relations VALUES(196,6,431,9,342,''); -INSERT INTO entity_relations VALUES(197,6,442,9,342,''); -INSERT INTO entity_relations VALUES(198,6,445,9,342,''); -INSERT INTO entity_relations VALUES(199,6,448,9,342,''); -INSERT INTO entity_relations VALUES(200,6,449,9,342,''); -INSERT INTO entity_relations VALUES(201,6,580,9,342,''); -INSERT INTO entity_relations VALUES(205,6,576,9,585,''); -INSERT INTO entity_relations VALUES(206,6,438,9,585,''); -INSERT INTO entity_relations VALUES(207,6,578,9,585,''); -INSERT INTO entity_relations VALUES(208,6,580,9,585,''); -INSERT INTO entity_relations VALUES(209,6,576,9,586,''); -INSERT INTO entity_relations VALUES(210,6,438,9,586,''); -INSERT INTO entity_relations VALUES(211,6,578,9,586,''); -INSERT INTO entity_relations VALUES(212,6,580,9,586,''); -INSERT INTO entity_relations VALUES(213,6,577,9,351,''); -INSERT INTO entity_relations VALUES(214,6,445,9,351,''); -INSERT INTO entity_relations VALUES(215,6,580,9,351,''); -INSERT INTO entity_relations VALUES(216,6,608,9,351,''); -INSERT INTO entity_relations VALUES(221,6,424,9,356,''); -INSERT INTO entity_relations VALUES(222,6,577,9,356,''); -INSERT INTO entity_relations VALUES(223,6,443,9,356,''); -INSERT INTO entity_relations VALUES(224,6,445,9,356,''); -INSERT INTO entity_relations VALUES(225,6,608,9,356,''); -INSERT INTO entity_relations VALUES(226,6,591,9,356,''); -INSERT INTO entity_relations VALUES(227,6,424,9,357,''); -INSERT INTO entity_relations VALUES(228,6,441,9,357,''); -INSERT INTO entity_relations VALUES(229,6,442,9,357,''); -INSERT INTO entity_relations VALUES(230,6,580,9,357,''); -INSERT INTO entity_relations VALUES(231,6,591,9,357,''); -INSERT INTO entity_relations VALUES(236,6,576,9,362,''); -INSERT INTO entity_relations VALUES(237,6,438,9,362,''); -INSERT INTO entity_relations VALUES(238,6,578,9,362,''); -INSERT INTO entity_relations VALUES(239,6,580,9,362,''); -INSERT INTO entity_relations VALUES(240,6,576,9,363,''); -INSERT INTO entity_relations VALUES(241,6,438,9,363,''); -INSERT INTO entity_relations VALUES(242,6,578,9,363,''); -INSERT INTO entity_relations VALUES(243,6,580,9,363,''); -INSERT INTO entity_relations VALUES(244,6,576,9,364,''); -INSERT INTO entity_relations VALUES(245,6,438,9,364,''); -INSERT INTO entity_relations VALUES(246,6,441,9,364,''); -INSERT INTO entity_relations VALUES(247,6,447,9,364,''); -INSERT INTO entity_relations VALUES(248,6,580,9,364,''); -INSERT INTO entity_relations VALUES(249,6,576,9,365,''); -INSERT INTO entity_relations VALUES(250,6,438,9,365,''); -INSERT INTO entity_relations VALUES(251,6,578,9,365,''); -INSERT INTO entity_relations VALUES(252,6,580,9,365,''); -INSERT INTO entity_relations VALUES(255,6,418,9,368,''); -INSERT INTO entity_relations VALUES(256,6,425,9,368,''); -INSERT INTO entity_relations VALUES(257,6,576,9,368,''); -INSERT INTO entity_relations VALUES(258,6,438,9,368,''); -INSERT INTO entity_relations VALUES(259,6,578,9,368,''); -INSERT INTO entity_relations VALUES(260,6,579,9,368,''); -INSERT INTO entity_relations VALUES(261,6,580,9,368,''); -INSERT INTO entity_relations VALUES(262,6,580,9,369,''); -INSERT INTO entity_relations VALUES(263,6,593,9,370,''); -INSERT INTO entity_relations VALUES(264,6,580,9,370,''); -INSERT INTO entity_relations VALUES(265,6,438,9,371,''); -INSERT INTO entity_relations VALUES(266,6,580,9,371,''); -INSERT INTO entity_relations VALUES(267,6,580,9,372,''); -INSERT INTO entity_relations VALUES(269,6,580,9,374,''); -INSERT INTO entity_relations VALUES(270,6,576,8,259,''); -INSERT INTO entity_relations VALUES(271,6,445,8,259,''); -INSERT INTO entity_relations VALUES(272,6,448,8,259,''); -INSERT INTO entity_relations VALUES(273,6,449,8,259,''); -INSERT INTO entity_relations VALUES(274,6,580,8,259,''); -INSERT INTO entity_relations VALUES(275,6,434,8,260,''); -INSERT INTO entity_relations VALUES(276,6,436,8,260,''); -INSERT INTO entity_relations VALUES(277,6,448,8,260,''); -INSERT INTO entity_relations VALUES(278,6,580,8,260,''); -INSERT INTO entity_relations VALUES(279,6,576,8,260,''); -INSERT INTO entity_relations VALUES(280,6,578,8,260,''); -INSERT INTO entity_relations VALUES(281,6,438,8,260,''); -INSERT INTO entity_relations VALUES(282,6,576,8,261,''); -INSERT INTO entity_relations VALUES(283,6,580,8,261,''); -INSERT INTO entity_relations VALUES(284,6,432,8,600,''); -INSERT INTO entity_relations VALUES(285,6,434,8,600,''); -INSERT INTO entity_relations VALUES(286,6,435,8,600,''); -INSERT INTO entity_relations VALUES(287,6,445,8,600,''); -INSERT INTO entity_relations VALUES(288,6,448,8,600,''); -INSERT INTO entity_relations VALUES(289,6,449,8,600,''); -INSERT INTO entity_relations VALUES(290,6,580,8,600,''); -INSERT INTO entity_relations VALUES(291,6,434,8,263,''); -INSERT INTO entity_relations VALUES(292,6,435,8,263,''); -INSERT INTO entity_relations VALUES(293,6,436,8,263,''); -INSERT INTO entity_relations VALUES(294,6,438,8,263,''); -INSERT INTO entity_relations VALUES(295,6,445,8,263,''); -INSERT INTO entity_relations VALUES(296,6,448,8,263,''); -INSERT INTO entity_relations VALUES(297,6,580,8,263,''); -INSERT INTO entity_relations VALUES(298,6,576,8,264,''); -INSERT INTO entity_relations VALUES(299,6,438,8,264,''); -INSERT INTO entity_relations VALUES(300,6,445,8,264,''); -INSERT INTO entity_relations VALUES(301,6,447,8,264,''); -INSERT INTO entity_relations VALUES(302,6,590,8,264,''); -INSERT INTO entity_relations VALUES(303,6,448,8,264,''); -INSERT INTO entity_relations VALUES(304,6,580,8,609,''); -INSERT INTO entity_relations VALUES(305,6,576,8,268,''); -INSERT INTO entity_relations VALUES(306,6,434,8,268,''); -INSERT INTO entity_relations VALUES(307,6,578,8,268,''); -INSERT INTO entity_relations VALUES(308,6,448,8,268,''); -INSERT INTO entity_relations VALUES(309,6,580,8,268,''); -INSERT INTO entity_relations VALUES(310,6,580,8,268,''); -INSERT INTO entity_relations VALUES(311,6,425,8,269,''); -INSERT INTO entity_relations VALUES(312,6,576,8,269,''); -INSERT INTO entity_relations VALUES(313,6,438,8,269,''); -INSERT INTO entity_relations VALUES(314,6,576,8,270,''); -INSERT INTO entity_relations VALUES(315,6,438,8,270,''); -INSERT INTO entity_relations VALUES(316,6,580,8,270,''); -INSERT INTO entity_relations VALUES(317,6,576,8,271,''); -INSERT INTO entity_relations VALUES(318,6,438,8,271,''); -INSERT INTO entity_relations VALUES(319,6,578,8,271,''); -INSERT INTO entity_relations VALUES(320,6,580,8,271,''); -INSERT INTO entity_relations VALUES(321,6,448,8,272,''); -INSERT INTO entity_relations VALUES(322,6,580,8,272,''); -INSERT INTO entity_relations VALUES(323,6,576,8,273,''); -INSERT INTO entity_relations VALUES(324,6,445,8,273,''); -INSERT INTO entity_relations VALUES(325,6,448,8,273,''); -INSERT INTO entity_relations VALUES(326,6,449,8,273,''); -INSERT INTO entity_relations VALUES(327,6,580,8,273,''); -INSERT INTO entity_relations VALUES(328,6,576,8,274,''); -INSERT INTO entity_relations VALUES(329,6,438,8,274,''); -INSERT INTO entity_relations VALUES(330,6,445,8,274,''); -INSERT INTO entity_relations VALUES(331,6,579,8,274,''); -INSERT INTO entity_relations VALUES(332,6,449,8,274,''); -INSERT INTO entity_relations VALUES(333,6,580,8,274,''); -INSERT INTO entity_relations VALUES(334,6,580,8,610,''); -INSERT INTO entity_relations VALUES(335,6,432,8,610,''); -INSERT INTO entity_relations VALUES(336,6,434,8,610,''); -INSERT INTO entity_relations VALUES(337,6,435,8,610,''); -INSERT INTO entity_relations VALUES(338,6,438,8,610,''); -INSERT INTO entity_relations VALUES(339,6,445,8,610,''); -INSERT INTO entity_relations VALUES(340,6,448,8,610,''); -INSERT INTO entity_relations VALUES(341,6,449,8,610,''); -INSERT INTO entity_relations VALUES(342,6,432,8,276,''); -INSERT INTO entity_relations VALUES(343,6,434,8,276,''); -INSERT INTO entity_relations VALUES(344,6,435,8,276,''); -INSERT INTO entity_relations VALUES(345,6,445,8,276,''); -INSERT INTO entity_relations VALUES(346,6,448,8,276,''); -INSERT INTO entity_relations VALUES(347,6,449,8,276,''); -INSERT INTO entity_relations VALUES(348,6,580,8,276,''); -INSERT INTO entity_relations VALUES(349,6,576,8,278,''); -INSERT INTO entity_relations VALUES(350,6,438,8,278,''); -INSERT INTO entity_relations VALUES(351,6,578,8,278,''); -INSERT INTO entity_relations VALUES(352,6,580,8,278,''); -INSERT INTO entity_relations VALUES(353,6,576,8,280,''); -INSERT INTO entity_relations VALUES(354,6,438,8,280,''); -INSERT INTO entity_relations VALUES(355,6,580,8,280,''); -INSERT INTO entity_relations VALUES(356,6,580,8,282,''); -INSERT INTO entity_relations VALUES(357,6,432,8,600,''); -INSERT INTO entity_relations VALUES(358,6,434,8,600,''); -INSERT INTO entity_relations VALUES(359,6,435,8,600,''); -INSERT INTO entity_relations VALUES(360,6,445,8,600,''); -INSERT INTO entity_relations VALUES(361,6,448,8,600,''); -INSERT INTO entity_relations VALUES(362,6,449,8,600,''); -INSERT INTO entity_relations VALUES(363,6,580,8,600,''); -INSERT INTO entity_relations VALUES(364,6,424,8,283,''); -INSERT INTO entity_relations VALUES(365,6,576,8,283,''); -INSERT INTO entity_relations VALUES(366,6,445,8,283,''); -INSERT INTO entity_relations VALUES(367,6,448,8,283,''); -INSERT INTO entity_relations VALUES(368,6,449,8,283,''); -INSERT INTO entity_relations VALUES(369,6,580,8,283,''); -INSERT INTO entity_relations VALUES(370,6,424,8,284,''); -INSERT INTO entity_relations VALUES(371,6,576,8,284,''); -INSERT INTO entity_relations VALUES(372,6,441,8,284,''); -INSERT INTO entity_relations VALUES(373,6,445,8,284,''); -INSERT INTO entity_relations VALUES(374,6,448,8,284,''); -INSERT INTO entity_relations VALUES(375,6,449,8,284,''); -INSERT INTO entity_relations VALUES(376,6,580,8,284,''); -INSERT INTO entity_relations VALUES(377,6,580,8,285,''); -INSERT INTO entity_relations VALUES(378,6,424,8,285,''); -INSERT INTO entity_relations VALUES(379,6,576,8,285,''); -INSERT INTO entity_relations VALUES(380,6,441,8,285,''); -INSERT INTO entity_relations VALUES(381,6,445,8,285,''); -INSERT INTO entity_relations VALUES(382,6,448,8,285,''); -INSERT INTO entity_relations VALUES(383,6,449,8,285,''); -INSERT INTO entity_relations VALUES(384,6,580,8,285,''); -INSERT INTO entity_relations VALUES(385,6,424,8,286,''); -INSERT INTO entity_relations VALUES(386,6,576,8,286,''); -INSERT INTO entity_relations VALUES(387,6,441,8,286,''); -INSERT INTO entity_relations VALUES(388,6,445,8,286,''); -INSERT INTO entity_relations VALUES(389,6,448,8,286,''); -INSERT INTO entity_relations VALUES(390,6,449,8,286,''); -INSERT INTO entity_relations VALUES(391,6,580,8,286,''); -INSERT INTO entity_relations VALUES(392,6,424,8,287,''); -INSERT INTO entity_relations VALUES(393,6,576,8,287,''); -INSERT INTO entity_relations VALUES(394,6,441,8,287,''); -INSERT INTO entity_relations VALUES(395,6,445,8,287,''); -INSERT INTO entity_relations VALUES(396,6,448,8,287,''); -INSERT INTO entity_relations VALUES(397,6,449,8,287,''); -INSERT INTO entity_relations VALUES(398,6,580,8,287,''); -INSERT INTO entity_relations VALUES(399,6,445,8,265,''); -INSERT INTO entity_relations VALUES(400,6,449,8,265,''); -INSERT INTO entity_relations VALUES(401,6,576,8,265,''); -INSERT INTO entity_relations VALUES(402,6,448,8,265,''); -INSERT INTO entity_relations VALUES(403,6,580,8,265,''); -INSERT INTO entity_relations VALUES(404,6,424,8,265,''); -INSERT INTO entity_relations VALUES(405,6,441,8,265,''); -INSERT INTO entity_relations VALUES(406,6,434,8,277,''); -INSERT INTO entity_relations VALUES(407,6,432,8,277,''); -INSERT INTO entity_relations VALUES(408,6,427,8,277,''); -INSERT INTO entity_relations VALUES(409,6,435,8,277,''); -INSERT INTO entity_relations VALUES(410,6,436,8,277,''); -INSERT INTO entity_relations VALUES(411,6,448,8,277,''); -INSERT INTO entity_relations VALUES(412,6,580,8,277,''); -INSERT INTO entity_relations VALUES(413,6,438,8,277,''); -INSERT INTO entity_relations VALUES(414,6,445,8,279,''); -INSERT INTO entity_relations VALUES(415,6,449,8,279,''); -INSERT INTO entity_relations VALUES(416,6,576,8,279,''); -INSERT INTO entity_relations VALUES(417,6,448,8,279,''); -INSERT INTO entity_relations VALUES(418,6,580,8,281,''); -INSERT INTO entity_relations VALUES(419,6,445,8,281,''); -INSERT INTO entity_relations VALUES(420,6,449,8,281,''); -INSERT INTO entity_relations VALUES(421,6,445,8,281,''); -INSERT INTO entity_relations VALUES(422,6,449,8,281,''); -INSERT INTO entity_relations VALUES(423,6,580,8,281,''); -INSERT INTO entity_relations VALUES(424,6,448,8,281,''); -INSERT INTO entity_relations VALUES(425,6,434,8,281,''); -INSERT INTO entity_relations VALUES(426,6,576,8,268,''); -INSERT INTO entity_relations VALUES(427,6,580,8,268,''); -INSERT INTO entity_relations VALUES(428,6,578,8,268,''); -INSERT INTO entity_relations VALUES(429,6,441,2,1,''); -INSERT INTO entity_relations VALUES(431,6,576,2,5,''); -INSERT INTO entity_relations VALUES(432,6,438,2,5,''); -INSERT INTO entity_relations VALUES(433,6,578,2,5,''); -INSERT INTO entity_relations VALUES(434,6,580,2,5,''); -INSERT INTO entity_relations VALUES(435,6,576,2,6,''); -INSERT INTO entity_relations VALUES(436,6,438,2,6,''); -INSERT INTO entity_relations VALUES(437,6,578,2,6,''); -INSERT INTO entity_relations VALUES(438,6,580,2,6,''); -INSERT INTO entity_relations VALUES(439,6,576,2,8,''); -INSERT INTO entity_relations VALUES(440,6,438,2,8,''); -INSERT INTO entity_relations VALUES(441,6,578,2,8,''); -INSERT INTO entity_relations VALUES(442,6,580,2,8,''); -INSERT INTO entity_relations VALUES(443,6,576,2,9,''); -INSERT INTO entity_relations VALUES(444,6,438,2,9,''); -INSERT INTO entity_relations VALUES(445,6,580,2,9,''); -INSERT INTO entity_relations VALUES(446,6,578,2,9,''); -INSERT INTO entity_relations VALUES(447,6,576,2,10,''); -INSERT INTO entity_relations VALUES(448,6,438,2,10,''); -INSERT INTO entity_relations VALUES(449,6,578,2,10,''); -INSERT INTO entity_relations VALUES(450,6,580,2,10,''); -INSERT INTO entity_relations VALUES(451,6,576,2,11,''); -INSERT INTO entity_relations VALUES(452,6,438,2,11,''); -INSERT INTO entity_relations VALUES(453,6,580,2,11,''); -INSERT INTO entity_relations VALUES(454,6,419,2,12,''); -INSERT INTO entity_relations VALUES(455,6,427,2,12,''); -INSERT INTO entity_relations VALUES(456,6,429,2,12,''); -INSERT INTO entity_relations VALUES(457,6,431,2,12,''); -INSERT INTO entity_relations VALUES(458,6,434,2,12,''); -INSERT INTO entity_relations VALUES(459,6,435,2,12,''); -INSERT INTO entity_relations VALUES(460,6,436,2,12,''); -INSERT INTO entity_relations VALUES(461,6,438,2,12,''); -INSERT INTO entity_relations VALUES(462,6,443,2,12,''); -INSERT INTO entity_relations VALUES(463,6,579,2,12,''); -INSERT INTO entity_relations VALUES(464,6,449,2,12,''); -INSERT INTO entity_relations VALUES(465,6,580,2,12,''); -INSERT INTO entity_relations VALUES(467,6,576,2,14,''); -INSERT INTO entity_relations VALUES(468,6,438,2,14,''); -INSERT INTO entity_relations VALUES(469,6,579,2,14,''); -INSERT INTO entity_relations VALUES(470,6,580,2,14,''); -INSERT INTO entity_relations VALUES(471,6,427,2,15,''); -INSERT INTO entity_relations VALUES(472,6,434,2,15,''); -INSERT INTO entity_relations VALUES(473,6,580,2,15,''); -INSERT INTO entity_relations VALUES(474,6,576,2,16,''); -INSERT INTO entity_relations VALUES(475,6,445,2,16,''); -INSERT INTO entity_relations VALUES(476,6,448,2,16,''); -INSERT INTO entity_relations VALUES(477,6,449,2,16,''); -INSERT INTO entity_relations VALUES(478,6,580,2,16,''); -INSERT INTO entity_relations VALUES(479,6,576,2,19,''); -INSERT INTO entity_relations VALUES(480,6,445,2,19,''); -INSERT INTO entity_relations VALUES(481,6,448,2,19,''); -INSERT INTO entity_relations VALUES(482,6,449,2,19,''); -INSERT INTO entity_relations VALUES(483,6,580,2,19,''); -INSERT INTO entity_relations VALUES(484,6,427,2,21,''); -INSERT INTO entity_relations VALUES(485,6,431,2,21,''); -INSERT INTO entity_relations VALUES(486,6,432,2,21,''); -INSERT INTO entity_relations VALUES(487,6,434,2,21,''); -INSERT INTO entity_relations VALUES(488,6,435,2,21,''); -INSERT INTO entity_relations VALUES(489,6,580,2,21,''); -INSERT INTO entity_relations VALUES(490,6,576,2,23,''); -INSERT INTO entity_relations VALUES(491,6,445,2,23,''); -INSERT INTO entity_relations VALUES(492,6,448,2,23,''); -INSERT INTO entity_relations VALUES(493,6,580,2,23,''); -INSERT INTO entity_relations VALUES(494,6,424,2,25,''); -INSERT INTO entity_relations VALUES(495,6,593,2,25,''); -INSERT INTO entity_relations VALUES(496,6,577,2,25,''); -INSERT INTO entity_relations VALUES(497,6,443,2,25,''); -INSERT INTO entity_relations VALUES(498,6,578,2,25,''); -INSERT INTO entity_relations VALUES(499,6,580,2,25,''); -INSERT INTO entity_relations VALUES(500,6,591,2,25,''); -INSERT INTO entity_relations VALUES(502,6,427,2,27,''); -INSERT INTO entity_relations VALUES(503,6,429,2,27,''); -INSERT INTO entity_relations VALUES(504,6,432,2,27,''); -INSERT INTO entity_relations VALUES(505,6,434,2,27,''); -INSERT INTO entity_relations VALUES(506,6,435,2,27,''); -INSERT INTO entity_relations VALUES(507,6,436,2,27,''); -INSERT INTO entity_relations VALUES(508,6,438,2,27,''); -INSERT INTO entity_relations VALUES(509,6,445,2,27,''); -INSERT INTO entity_relations VALUES(510,6,447,2,27,''); -INSERT INTO entity_relations VALUES(511,6,448,2,27,''); -INSERT INTO entity_relations VALUES(512,6,580,2,27,''); -INSERT INTO entity_relations VALUES(513,6,448,2,29,''); -INSERT INTO entity_relations VALUES(514,6,580,2,29,''); -INSERT INTO entity_relations VALUES(515,6,576,2,31,''); -INSERT INTO entity_relations VALUES(516,6,580,2,32,''); -INSERT INTO entity_relations VALUES(517,6,576,2,32,''); -INSERT INTO entity_relations VALUES(519,6,418,2,36,''); -INSERT INTO entity_relations VALUES(520,6,425,2,36,''); -INSERT INTO entity_relations VALUES(521,6,434,2,36,''); -INSERT INTO entity_relations VALUES(522,6,435,2,36,''); -INSERT INTO entity_relations VALUES(523,6,436,2,36,''); -INSERT INTO entity_relations VALUES(524,6,445,2,36,''); -INSERT INTO entity_relations VALUES(525,6,448,2,36,''); -INSERT INTO entity_relations VALUES(526,6,580,2,36,''); -INSERT INTO entity_relations VALUES(527,6,427,2,37,''); -INSERT INTO entity_relations VALUES(528,6,434,2,37,''); -INSERT INTO entity_relations VALUES(529,6,435,2,37,''); -INSERT INTO entity_relations VALUES(530,6,436,2,37,''); -INSERT INTO entity_relations VALUES(531,6,438,2,37,''); -INSERT INTO entity_relations VALUES(532,6,580,2,37,''); -INSERT INTO entity_relations VALUES(534,6,580,2,39,''); -INSERT INTO entity_relations VALUES(535,6,434,2,40,''); -INSERT INTO entity_relations VALUES(536,6,435,2,40,''); -INSERT INTO entity_relations VALUES(537,6,441,2,40,''); -INSERT INTO entity_relations VALUES(538,6,445,2,40,''); -INSERT INTO entity_relations VALUES(539,6,448,2,40,''); -INSERT INTO entity_relations VALUES(540,6,449,2,40,''); -INSERT INTO entity_relations VALUES(541,6,580,2,40,''); -INSERT INTO entity_relations VALUES(542,6,580,2,41,''); -INSERT INTO entity_relations VALUES(543,6,580,2,42,''); -INSERT INTO entity_relations VALUES(544,6,576,2,43,''); -INSERT INTO entity_relations VALUES(545,6,438,2,43,''); -INSERT INTO entity_relations VALUES(546,6,445,2,43,''); -INSERT INTO entity_relations VALUES(547,6,580,2,43,''); -INSERT INTO entity_relations VALUES(548,6,576,2,44,''); -INSERT INTO entity_relations VALUES(549,6,578,2,44,''); -INSERT INTO entity_relations VALUES(550,6,580,2,44,''); -INSERT INTO entity_relations VALUES(551,6,576,2,45,''); -INSERT INTO entity_relations VALUES(552,6,438,2,45,''); -INSERT INTO entity_relations VALUES(553,6,578,2,45,''); -INSERT INTO entity_relations VALUES(554,6,580,2,45,''); -INSERT INTO entity_relations VALUES(555,6,576,2,46,''); -INSERT INTO entity_relations VALUES(556,6,438,2,46,''); -INSERT INTO entity_relations VALUES(557,6,448,2,46,''); -INSERT INTO entity_relations VALUES(558,6,580,2,46,''); -INSERT INTO entity_relations VALUES(559,6,427,2,47,''); -INSERT INTO entity_relations VALUES(560,6,429,2,47,''); -INSERT INTO entity_relations VALUES(561,6,431,2,47,''); -INSERT INTO entity_relations VALUES(562,6,432,2,47,''); -INSERT INTO entity_relations VALUES(563,6,434,2,47,''); -INSERT INTO entity_relations VALUES(564,6,435,2,47,''); -INSERT INTO entity_relations VALUES(565,6,436,2,47,''); -INSERT INTO entity_relations VALUES(566,6,580,2,47,''); -INSERT INTO entity_relations VALUES(568,6,425,2,51,''); -INSERT INTO entity_relations VALUES(569,6,438,2,51,''); -INSERT INTO entity_relations VALUES(570,6,580,2,51,''); -INSERT INTO entity_relations VALUES(571,6,418,2,54,''); -INSERT INTO entity_relations VALUES(572,6,425,2,54,''); -INSERT INTO entity_relations VALUES(573,6,438,2,54,''); -INSERT INTO entity_relations VALUES(574,6,580,2,54,''); -INSERT INTO entity_relations VALUES(575,6,427,2,57,''); -INSERT INTO entity_relations VALUES(576,6,429,2,57,''); -INSERT INTO entity_relations VALUES(577,6,432,2,57,''); -INSERT INTO entity_relations VALUES(578,6,434,2,57,''); -INSERT INTO entity_relations VALUES(579,6,435,2,57,''); -INSERT INTO entity_relations VALUES(580,6,436,2,57,''); -INSERT INTO entity_relations VALUES(581,6,580,2,57,''); -INSERT INTO entity_relations VALUES(582,6,449,2,58,''); -INSERT INTO entity_relations VALUES(583,6,449,2,59,''); -INSERT INTO entity_relations VALUES(584,6,434,2,60,''); -INSERT INTO entity_relations VALUES(585,6,435,2,60,''); -INSERT INTO entity_relations VALUES(586,6,447,2,60,''); -INSERT INTO entity_relations VALUES(587,6,448,2,60,''); -INSERT INTO entity_relations VALUES(588,6,580,2,60,''); -INSERT INTO entity_relations VALUES(590,6,434,2,65,''); -INSERT INTO entity_relations VALUES(591,6,435,2,65,''); -INSERT INTO entity_relations VALUES(592,6,437,2,65,''); -INSERT INTO entity_relations VALUES(593,6,445,2,65,''); -INSERT INTO entity_relations VALUES(594,6,448,2,65,''); -INSERT INTO entity_relations VALUES(595,6,449,2,65,''); -INSERT INTO entity_relations VALUES(596,6,580,2,65,''); -INSERT INTO entity_relations VALUES(597,6,576,2,66,''); -INSERT INTO entity_relations VALUES(598,6,445,2,66,''); -INSERT INTO entity_relations VALUES(599,6,448,2,66,''); -INSERT INTO entity_relations VALUES(600,6,449,2,66,''); -INSERT INTO entity_relations VALUES(601,6,580,2,66,''); -INSERT INTO entity_relations VALUES(602,6,576,2,67,''); -INSERT INTO entity_relations VALUES(603,6,445,2,67,''); -INSERT INTO entity_relations VALUES(604,6,580,2,67,''); -INSERT INTO entity_relations VALUES(605,6,576,2,68,''); -INSERT INTO entity_relations VALUES(606,6,441,2,68,''); -INSERT INTO entity_relations VALUES(607,6,445,2,68,''); -INSERT INTO entity_relations VALUES(608,6,448,2,68,''); -INSERT INTO entity_relations VALUES(609,6,449,2,68,''); -INSERT INTO entity_relations VALUES(610,6,580,2,68,''); -INSERT INTO entity_relations VALUES(611,6,580,2,71,''); -INSERT INTO entity_relations VALUES(612,6,418,2,72,''); -INSERT INTO entity_relations VALUES(613,6,425,2,72,''); -INSERT INTO entity_relations VALUES(614,6,576,2,72,''); -INSERT INTO entity_relations VALUES(615,6,438,2,72,''); -INSERT INTO entity_relations VALUES(616,6,445,2,72,''); -INSERT INTO entity_relations VALUES(617,6,448,2,72,''); -INSERT INTO entity_relations VALUES(618,6,449,2,72,''); -INSERT INTO entity_relations VALUES(619,6,580,2,72,''); -INSERT INTO entity_relations VALUES(620,6,424,2,79,''); -INSERT INTO entity_relations VALUES(621,6,576,2,79,''); -INSERT INTO entity_relations VALUES(622,6,445,2,79,''); -INSERT INTO entity_relations VALUES(623,6,448,2,79,''); -INSERT INTO entity_relations VALUES(624,6,449,2,79,''); -INSERT INTO entity_relations VALUES(625,6,580,2,79,''); -INSERT INTO entity_relations VALUES(626,6,424,2,81,''); -INSERT INTO entity_relations VALUES(627,6,576,2,81,''); -INSERT INTO entity_relations VALUES(628,6,441,2,81,''); -INSERT INTO entity_relations VALUES(629,6,445,2,81,''); -INSERT INTO entity_relations VALUES(630,6,448,2,81,''); -INSERT INTO entity_relations VALUES(631,6,449,2,81,''); -INSERT INTO entity_relations VALUES(632,6,580,2,81,''); -INSERT INTO entity_relations VALUES(633,6,591,2,81,''); -INSERT INTO entity_relations VALUES(634,6,434,2,82,''); -INSERT INTO entity_relations VALUES(635,6,435,2,82,''); -INSERT INTO entity_relations VALUES(636,6,445,2,82,''); -INSERT INTO entity_relations VALUES(637,6,580,2,82,''); -INSERT INTO entity_relations VALUES(638,6,576,2,83,''); -INSERT INTO entity_relations VALUES(639,6,441,2,83,''); -INSERT INTO entity_relations VALUES(640,6,445,2,83,''); -INSERT INTO entity_relations VALUES(641,6,448,2,83,''); -INSERT INTO entity_relations VALUES(642,6,449,2,83,''); -INSERT INTO entity_relations VALUES(643,6,580,2,83,''); -INSERT INTO entity_relations VALUES(644,6,576,2,601,''); -INSERT INTO entity_relations VALUES(645,6,441,2,601,''); -INSERT INTO entity_relations VALUES(646,6,445,2,601,''); -INSERT INTO entity_relations VALUES(647,6,448,2,601,''); -INSERT INTO entity_relations VALUES(648,6,449,2,601,''); -INSERT INTO entity_relations VALUES(649,6,580,2,601,''); -INSERT INTO entity_relations VALUES(650,6,441,2,84,''); -INSERT INTO entity_relations VALUES(651,6,576,2,86,''); -INSERT INTO entity_relations VALUES(652,6,580,2,86,''); -INSERT INTO entity_relations VALUES(653,6,434,2,87,''); -INSERT INTO entity_relations VALUES(654,6,435,2,87,''); -INSERT INTO entity_relations VALUES(655,6,445,2,87,''); -INSERT INTO entity_relations VALUES(656,6,448,2,87,''); -INSERT INTO entity_relations VALUES(657,6,580,2,87,''); -INSERT INTO entity_relations VALUES(658,6,576,2,88,''); -INSERT INTO entity_relations VALUES(659,6,442,2,88,''); -INSERT INTO entity_relations VALUES(660,6,445,2,88,''); -INSERT INTO entity_relations VALUES(661,6,448,2,88,''); -INSERT INTO entity_relations VALUES(662,6,449,2,88,''); -INSERT INTO entity_relations VALUES(663,6,580,2,88,''); -INSERT INTO entity_relations VALUES(664,6,427,2,90,''); -INSERT INTO entity_relations VALUES(665,6,429,2,90,''); -INSERT INTO entity_relations VALUES(666,6,453,2,90,''); -INSERT INTO entity_relations VALUES(667,6,431,2,90,''); -INSERT INTO entity_relations VALUES(668,6,434,2,90,''); -INSERT INTO entity_relations VALUES(669,6,436,2,90,''); -INSERT INTO entity_relations VALUES(670,6,438,2,90,''); -INSERT INTO entity_relations VALUES(671,6,447,2,90,''); -INSERT INTO entity_relations VALUES(672,6,590,2,90,''); -INSERT INTO entity_relations VALUES(673,6,580,2,90,''); -INSERT INTO entity_relations VALUES(674,6,576,2,93,''); -INSERT INTO entity_relations VALUES(675,6,438,2,93,''); -INSERT INTO entity_relations VALUES(676,6,580,2,93,''); -INSERT INTO entity_relations VALUES(677,6,418,2,94,''); -INSERT INTO entity_relations VALUES(678,6,425,2,94,''); -INSERT INTO entity_relations VALUES(679,6,438,2,94,''); -INSERT INTO entity_relations VALUES(680,6,580,2,94,''); -INSERT INTO entity_relations VALUES(681,6,580,2,96,''); -INSERT INTO entity_relations VALUES(682,6,580,2,99,''); -INSERT INTO entity_relations VALUES(683,6,580,2,100,''); -INSERT INTO entity_relations VALUES(684,6,580,2,101,''); -INSERT INTO entity_relations VALUES(685,6,580,2,102,''); -INSERT INTO entity_relations VALUES(686,6,580,2,104,''); -INSERT INTO entity_relations VALUES(687,6,580,2,106,''); -INSERT INTO entity_relations VALUES(688,6,580,2,109,''); -INSERT INTO entity_relations VALUES(689,6,580,2,112,''); -INSERT INTO entity_relations VALUES(690,6,580,2,113,''); -INSERT INTO entity_relations VALUES(691,6,580,2,114,''); -INSERT INTO entity_relations VALUES(692,6,576,2,115,''); -INSERT INTO entity_relations VALUES(693,6,438,2,115,''); -INSERT INTO entity_relations VALUES(694,6,580,2,115,''); -INSERT INTO entity_relations VALUES(695,6,576,2,116,''); -INSERT INTO entity_relations VALUES(696,6,438,2,116,''); -INSERT INTO entity_relations VALUES(697,6,447,2,116,''); -INSERT INTO entity_relations VALUES(698,6,448,2,116,''); -INSERT INTO entity_relations VALUES(699,6,580,2,116,''); -INSERT INTO entity_relations VALUES(700,6,424,2,118,''); -INSERT INTO entity_relations VALUES(701,6,576,2,118,''); -INSERT INTO entity_relations VALUES(702,6,441,2,118,''); -INSERT INTO entity_relations VALUES(703,6,445,2,118,''); -INSERT INTO entity_relations VALUES(704,6,448,2,118,''); -INSERT INTO entity_relations VALUES(705,6,449,2,118,''); -INSERT INTO entity_relations VALUES(706,6,580,2,118,''); -INSERT INTO entity_relations VALUES(707,6,576,2,581,''); -INSERT INTO entity_relations VALUES(708,6,580,2,581,''); -INSERT INTO entity_relations VALUES(709,6,578,2,581,''); -INSERT INTO entity_relations VALUES(710,6,580,2,121,''); -INSERT INTO entity_relations VALUES(711,6,576,2,122,''); -INSERT INTO entity_relations VALUES(712,6,438,2,122,''); -INSERT INTO entity_relations VALUES(713,6,445,2,122,''); -INSERT INTO entity_relations VALUES(714,6,447,2,122,''); -INSERT INTO entity_relations VALUES(715,6,448,2,122,''); -INSERT INTO entity_relations VALUES(716,6,449,2,122,''); -INSERT INTO entity_relations VALUES(717,6,580,2,122,''); -INSERT INTO entity_relations VALUES(718,6,427,2,123,''); -INSERT INTO entity_relations VALUES(719,6,429,2,123,''); -INSERT INTO entity_relations VALUES(720,6,453,2,123,''); -INSERT INTO entity_relations VALUES(721,6,434,2,123,''); -INSERT INTO entity_relations VALUES(722,6,435,2,123,''); -INSERT INTO entity_relations VALUES(723,6,436,2,123,''); -INSERT INTO entity_relations VALUES(724,6,438,2,123,''); -INSERT INTO entity_relations VALUES(725,6,580,2,123,''); -INSERT INTO entity_relations VALUES(727,6,576,2,125,''); -INSERT INTO entity_relations VALUES(728,6,438,2,125,''); -INSERT INTO entity_relations VALUES(729,6,418,2,126,''); -INSERT INTO entity_relations VALUES(730,6,438,2,126,''); -INSERT INTO entity_relations VALUES(731,6,441,2,126,''); -INSERT INTO entity_relations VALUES(732,6,445,2,126,''); -INSERT INTO entity_relations VALUES(733,6,579,2,126,''); -INSERT INTO entity_relations VALUES(734,6,448,2,126,''); -INSERT INTO entity_relations VALUES(735,6,449,2,126,''); -INSERT INTO entity_relations VALUES(736,6,580,2,126,''); -INSERT INTO entity_relations VALUES(738,6,576,2,128,''); -INSERT INTO entity_relations VALUES(739,6,438,2,128,''); -INSERT INTO entity_relations VALUES(740,6,447,2,128,''); -INSERT INTO entity_relations VALUES(741,6,602,2,128,''); -INSERT INTO entity_relations VALUES(742,6,590,2,128,''); -INSERT INTO entity_relations VALUES(743,6,448,2,128,''); -INSERT INTO entity_relations VALUES(744,6,580,2,128,''); -INSERT INTO entity_relations VALUES(746,6,432,2,130,''); -INSERT INTO entity_relations VALUES(747,6,434,2,130,''); -INSERT INTO entity_relations VALUES(748,6,435,2,130,''); -INSERT INTO entity_relations VALUES(749,6,438,2,130,''); -INSERT INTO entity_relations VALUES(750,6,580,2,130,''); -INSERT INTO entity_relations VALUES(751,6,576,2,131,''); -INSERT INTO entity_relations VALUES(752,6,445,2,131,''); -INSERT INTO entity_relations VALUES(753,6,448,2,131,''); -INSERT INTO entity_relations VALUES(754,6,449,2,131,''); -INSERT INTO entity_relations VALUES(755,6,580,2,131,''); -INSERT INTO entity_relations VALUES(756,6,432,2,132,''); -INSERT INTO entity_relations VALUES(757,6,434,2,132,''); -INSERT INTO entity_relations VALUES(758,6,435,2,132,''); -INSERT INTO entity_relations VALUES(759,6,580,2,132,''); -INSERT INTO entity_relations VALUES(760,6,432,2,133,''); -INSERT INTO entity_relations VALUES(761,6,434,2,133,''); -INSERT INTO entity_relations VALUES(762,6,435,2,133,''); -INSERT INTO entity_relations VALUES(763,6,445,2,133,''); -INSERT INTO entity_relations VALUES(764,6,448,2,133,''); -INSERT INTO entity_relations VALUES(765,6,449,2,133,''); -INSERT INTO entity_relations VALUES(766,6,580,2,133,''); -INSERT INTO entity_relations VALUES(767,6,432,2,134,''); -INSERT INTO entity_relations VALUES(768,6,434,2,134,''); -INSERT INTO entity_relations VALUES(769,6,445,2,134,''); -INSERT INTO entity_relations VALUES(770,6,448,2,134,''); -INSERT INTO entity_relations VALUES(771,6,449,2,134,''); -INSERT INTO entity_relations VALUES(772,6,580,2,134,''); -INSERT INTO entity_relations VALUES(773,6,424,2,134,''); -INSERT INTO entity_relations VALUES(774,6,441,2,134,''); -INSERT INTO entity_relations VALUES(776,6,576,2,136,''); -INSERT INTO entity_relations VALUES(777,6,445,2,136,''); -INSERT INTO entity_relations VALUES(778,6,448,2,136,''); -INSERT INTO entity_relations VALUES(779,6,449,2,136,''); -INSERT INTO entity_relations VALUES(780,6,580,2,136,''); -INSERT INTO entity_relations VALUES(781,6,432,2,137,''); -INSERT INTO entity_relations VALUES(782,6,434,2,137,''); -INSERT INTO entity_relations VALUES(783,6,435,2,137,''); -INSERT INTO entity_relations VALUES(784,6,445,2,137,''); -INSERT INTO entity_relations VALUES(785,6,448,2,137,''); -INSERT INTO entity_relations VALUES(786,6,449,2,137,''); -INSERT INTO entity_relations VALUES(787,6,580,2,137,''); -INSERT INTO entity_relations VALUES(790,6,432,2,143,''); -INSERT INTO entity_relations VALUES(791,6,434,2,143,''); -INSERT INTO entity_relations VALUES(792,6,435,2,143,''); -INSERT INTO entity_relations VALUES(793,6,445,2,143,''); -INSERT INTO entity_relations VALUES(794,6,448,2,143,''); -INSERT INTO entity_relations VALUES(795,6,449,2,143,''); -INSERT INTO entity_relations VALUES(796,6,580,2,143,''); -INSERT INTO entity_relations VALUES(797,6,432,2,147,''); -INSERT INTO entity_relations VALUES(798,6,434,2,147,''); -INSERT INTO entity_relations VALUES(799,6,435,2,147,''); -INSERT INTO entity_relations VALUES(800,6,438,2,147,''); -INSERT INTO entity_relations VALUES(801,6,445,2,147,''); -INSERT INTO entity_relations VALUES(802,6,448,2,147,''); -INSERT INTO entity_relations VALUES(803,6,580,2,147,''); -INSERT INTO entity_relations VALUES(804,6,432,2,148,''); -INSERT INTO entity_relations VALUES(805,6,434,2,148,''); -INSERT INTO entity_relations VALUES(806,6,445,2,148,''); -INSERT INTO entity_relations VALUES(807,6,448,2,148,''); -INSERT INTO entity_relations VALUES(808,6,449,2,148,''); -INSERT INTO entity_relations VALUES(809,6,580,2,148,''); -INSERT INTO entity_relations VALUES(810,6,577,2,149,''); -INSERT INTO entity_relations VALUES(811,6,443,2,149,''); -INSERT INTO entity_relations VALUES(812,6,445,2,149,''); -INSERT INTO entity_relations VALUES(813,6,448,2,149,''); -INSERT INTO entity_relations VALUES(814,6,449,2,149,''); -INSERT INTO entity_relations VALUES(815,6,580,2,149,''); -INSERT INTO entity_relations VALUES(816,6,576,2,150,''); -INSERT INTO entity_relations VALUES(817,6,438,2,150,''); -INSERT INTO entity_relations VALUES(818,6,580,2,150,''); -INSERT INTO entity_relations VALUES(821,6,576,2,157,''); -INSERT INTO entity_relations VALUES(822,6,438,2,157,''); -INSERT INTO entity_relations VALUES(823,6,447,2,157,''); -INSERT INTO entity_relations VALUES(824,6,590,2,157,''); -INSERT INTO entity_relations VALUES(825,6,580,2,157,''); -INSERT INTO entity_relations VALUES(826,6,580,2,158,''); -INSERT INTO entity_relations VALUES(827,6,576,2,160,''); -INSERT INTO entity_relations VALUES(828,6,448,2,160,''); -INSERT INTO entity_relations VALUES(829,6,580,2,160,''); -INSERT INTO entity_relations VALUES(830,6,434,2,163,''); -INSERT INTO entity_relations VALUES(831,6,445,2,163,''); -INSERT INTO entity_relations VALUES(832,6,448,2,163,''); -INSERT INTO entity_relations VALUES(833,6,580,2,163,''); -INSERT INTO entity_relations VALUES(834,6,576,2,165,''); -INSERT INTO entity_relations VALUES(835,6,438,2,165,''); -INSERT INTO entity_relations VALUES(836,6,447,2,165,''); -INSERT INTO entity_relations VALUES(837,6,448,2,165,''); -INSERT INTO entity_relations VALUES(838,6,580,2,165,''); -INSERT INTO entity_relations VALUES(839,6,454,2,168,''); -INSERT INTO entity_relations VALUES(840,6,427,2,168,''); -INSERT INTO entity_relations VALUES(841,6,432,2,168,''); -INSERT INTO entity_relations VALUES(842,6,434,2,168,''); -INSERT INTO entity_relations VALUES(843,6,427,2,169,''); -INSERT INTO entity_relations VALUES(844,6,434,2,169,''); -INSERT INTO entity_relations VALUES(845,6,435,2,169,''); -INSERT INTO entity_relations VALUES(846,6,448,2,169,''); -INSERT INTO entity_relations VALUES(847,6,580,2,169,''); -INSERT INTO entity_relations VALUES(848,6,576,2,170,''); -INSERT INTO entity_relations VALUES(849,6,438,2,170,''); -INSERT INTO entity_relations VALUES(850,6,579,2,170,''); -INSERT INTO entity_relations VALUES(851,6,448,2,170,''); -INSERT INTO entity_relations VALUES(852,6,580,2,171,''); -INSERT INTO entity_relations VALUES(853,6,580,2,172,''); -INSERT INTO entity_relations VALUES(854,6,580,2,173,''); -INSERT INTO entity_relations VALUES(857,6,580,2,603,''); -INSERT INTO entity_relations VALUES(858,6,432,2,182,''); -INSERT INTO entity_relations VALUES(859,6,434,2,182,''); -INSERT INTO entity_relations VALUES(860,6,435,2,182,''); -INSERT INTO entity_relations VALUES(861,6,445,2,182,''); -INSERT INTO entity_relations VALUES(862,6,448,2,182,''); -INSERT INTO entity_relations VALUES(863,6,449,2,182,''); -INSERT INTO entity_relations VALUES(864,6,580,2,182,''); -INSERT INTO entity_relations VALUES(865,6,580,2,183,''); -INSERT INTO entity_relations VALUES(866,6,576,2,188,''); -INSERT INTO entity_relations VALUES(867,6,438,2,188,''); -INSERT INTO entity_relations VALUES(868,6,445,2,188,''); -INSERT INTO entity_relations VALUES(869,6,447,2,188,''); -INSERT INTO entity_relations VALUES(870,6,448,2,188,''); -INSERT INTO entity_relations VALUES(871,6,580,2,188,''); -INSERT INTO entity_relations VALUES(872,6,580,2,189,''); -INSERT INTO entity_relations VALUES(874,6,441,2,191,''); -INSERT INTO entity_relations VALUES(875,6,435,2,215,''); -INSERT INTO entity_relations VALUES(876,6,580,2,216,''); -INSERT INTO entity_relations VALUES(877,6,434,2,217,''); -INSERT INTO entity_relations VALUES(878,6,435,2,217,''); -INSERT INTO entity_relations VALUES(879,6,445,2,217,''); -INSERT INTO entity_relations VALUES(880,6,448,2,217,''); -INSERT INTO entity_relations VALUES(881,6,449,2,217,''); -INSERT INTO entity_relations VALUES(882,6,580,2,217,''); -INSERT INTO entity_relations VALUES(884,6,424,2,219,''); -INSERT INTO entity_relations VALUES(885,6,434,2,219,''); -INSERT INTO entity_relations VALUES(886,6,435,2,219,''); -INSERT INTO entity_relations VALUES(887,6,438,2,219,''); -INSERT INTO entity_relations VALUES(888,6,442,2,219,''); -INSERT INTO entity_relations VALUES(889,6,445,2,219,''); -INSERT INTO entity_relations VALUES(890,6,448,2,219,''); -INSERT INTO entity_relations VALUES(891,6,449,2,219,''); -INSERT INTO entity_relations VALUES(892,6,580,2,219,''); -INSERT INTO entity_relations VALUES(893,6,434,2,220,''); -INSERT INTO entity_relations VALUES(894,6,435,2,220,''); -INSERT INTO entity_relations VALUES(895,6,437,2,220,''); -INSERT INTO entity_relations VALUES(896,6,445,2,220,''); -INSERT INTO entity_relations VALUES(897,6,448,2,220,''); -INSERT INTO entity_relations VALUES(898,6,580,2,220,''); -INSERT INTO entity_relations VALUES(899,6,441,2,223,''); -INSERT INTO entity_relations VALUES(900,6,441,2,224,''); -INSERT INTO entity_relations VALUES(901,6,580,2,226,''); -INSERT INTO entity_relations VALUES(902,6,424,2,227,''); -INSERT INTO entity_relations VALUES(903,6,434,2,227,''); -INSERT INTO entity_relations VALUES(904,6,435,2,227,''); -INSERT INTO entity_relations VALUES(905,6,445,2,227,''); -INSERT INTO entity_relations VALUES(906,6,434,2,228,''); -INSERT INTO entity_relations VALUES(907,6,435,2,228,''); -INSERT INTO entity_relations VALUES(908,6,445,2,228,''); -INSERT INTO entity_relations VALUES(909,6,448,2,228,''); -INSERT INTO entity_relations VALUES(910,6,449,2,228,''); -INSERT INTO entity_relations VALUES(911,6,580,2,228,''); -INSERT INTO entity_relations VALUES(912,6,580,2,228,''); -INSERT INTO entity_relations VALUES(913,6,424,2,232,''); -INSERT INTO entity_relations VALUES(914,6,434,2,232,''); -INSERT INTO entity_relations VALUES(915,6,437,2,232,''); -INSERT INTO entity_relations VALUES(916,6,445,2,232,''); -INSERT INTO entity_relations VALUES(917,6,448,2,232,''); -INSERT INTO entity_relations VALUES(918,6,449,2,232,''); -INSERT INTO entity_relations VALUES(919,6,580,2,232,''); -INSERT INTO entity_relations VALUES(920,6,432,2,233,''); -INSERT INTO entity_relations VALUES(921,6,434,2,233,''); -INSERT INTO entity_relations VALUES(922,6,435,2,233,''); -INSERT INTO entity_relations VALUES(923,6,445,2,233,''); -INSERT INTO entity_relations VALUES(924,6,448,2,233,''); -INSERT INTO entity_relations VALUES(925,6,449,2,233,''); -INSERT INTO entity_relations VALUES(926,6,580,2,233,''); -INSERT INTO entity_relations VALUES(927,6,576,2,235,''); -INSERT INTO entity_relations VALUES(928,6,441,2,235,''); -INSERT INTO entity_relations VALUES(929,6,445,2,235,''); -INSERT INTO entity_relations VALUES(930,6,448,2,235,''); -INSERT INTO entity_relations VALUES(931,6,449,2,235,''); -INSERT INTO entity_relations VALUES(932,6,580,2,235,''); -INSERT INTO entity_relations VALUES(933,6,576,2,236,''); -INSERT INTO entity_relations VALUES(934,6,578,2,236,''); -INSERT INTO entity_relations VALUES(935,6,580,2,236,''); -INSERT INTO entity_relations VALUES(936,6,580,2,237,''); -INSERT INTO entity_relations VALUES(937,6,580,2,244,''); -INSERT INTO entity_relations VALUES(938,6,576,2,245,''); -INSERT INTO entity_relations VALUES(939,6,578,2,245,''); -INSERT INTO entity_relations VALUES(940,6,580,2,245,''); -INSERT INTO entity_relations VALUES(941,6,576,2,246,''); -INSERT INTO entity_relations VALUES(942,6,438,2,246,''); -INSERT INTO entity_relations VALUES(943,6,580,2,246,''); -INSERT INTO entity_relations VALUES(944,6,427,2,248,''); -INSERT INTO entity_relations VALUES(945,6,429,2,248,''); -INSERT INTO entity_relations VALUES(946,6,453,2,248,''); -INSERT INTO entity_relations VALUES(947,6,434,2,248,''); -INSERT INTO entity_relations VALUES(948,6,435,2,248,''); -INSERT INTO entity_relations VALUES(949,6,436,2,248,''); -INSERT INTO entity_relations VALUES(950,6,438,2,248,''); -INSERT INTO entity_relations VALUES(951,6,580,2,248,''); -INSERT INTO entity_relations VALUES(952,6,441,2,2,''); -INSERT INTO entity_relations VALUES(953,6,578,2,2,''); -INSERT INTO entity_relations VALUES(954,6,576,2,2,''); -INSERT INTO entity_relations VALUES(955,6,580,2,2,''); -INSERT INTO entity_relations VALUES(956,6,580,2,4,''); -INSERT INTO entity_relations VALUES(957,6,438,2,4,''); -INSERT INTO entity_relations VALUES(958,6,418,2,4,''); -INSERT INTO entity_relations VALUES(959,6,425,2,4,''); -INSERT INTO entity_relations VALUES(960,6,576,2,4,''); -INSERT INTO entity_relations VALUES(961,6,448,2,4,''); -INSERT INTO entity_relations VALUES(962,6,449,2,4,''); -INSERT INTO entity_relations VALUES(963,6,445,2,4,''); -INSERT INTO entity_relations VALUES(965,6,580,2,17,''); -INSERT INTO entity_relations VALUES(966,6,454,2,18,''); -INSERT INTO entity_relations VALUES(967,6,427,2,18,''); -INSERT INTO entity_relations VALUES(968,6,445,2,18,''); -INSERT INTO entity_relations VALUES(969,6,580,2,18,''); -INSERT INTO entity_relations VALUES(970,6,432,2,18,''); -INSERT INTO entity_relations VALUES(971,6,448,2,18,''); -INSERT INTO entity_relations VALUES(972,6,434,2,18,''); -INSERT INTO entity_relations VALUES(973,6,435,2,18,''); -INSERT INTO entity_relations VALUES(974,6,580,2,20,''); -INSERT INTO entity_relations VALUES(975,6,449,2,22,''); -INSERT INTO entity_relations VALUES(976,6,445,2,22,''); -INSERT INTO entity_relations VALUES(977,6,448,2,22,''); -INSERT INTO entity_relations VALUES(978,6,576,2,22,''); -INSERT INTO entity_relations VALUES(979,6,441,2,24,''); -INSERT INTO entity_relations VALUES(980,6,591,2,24,''); -INSERT INTO entity_relations VALUES(981,6,580,2,193,''); -INSERT INTO entity_relations VALUES(982,6,580,2,213,''); -INSERT INTO entity_relations VALUES(983,6,438,2,213,''); -INSERT INTO entity_relations VALUES(984,6,576,2,213,''); -INSERT INTO entity_relations VALUES(985,6,445,2,604,''); -INSERT INTO entity_relations VALUES(986,6,449,2,604,''); -INSERT INTO entity_relations VALUES(987,6,576,2,604,''); -INSERT INTO entity_relations VALUES(988,6,448,2,604,''); -INSERT INTO entity_relations VALUES(989,6,580,2,604,''); -INSERT INTO entity_relations VALUES(990,6,580,2,103,''); -INSERT INTO entity_relations VALUES(991,6,438,2,103,''); -INSERT INTO entity_relations VALUES(992,6,418,2,103,''); -INSERT INTO entity_relations VALUES(993,6,425,2,103,''); -INSERT INTO entity_relations VALUES(994,6,434,2,77,''); -INSERT INTO entity_relations VALUES(995,6,435,2,77,''); -INSERT INTO entity_relations VALUES(996,6,580,2,77,''); -INSERT INTO entity_relations VALUES(997,6,580,2,77,''); -INSERT INTO entity_relations VALUES(998,6,576,2,77,''); -INSERT INTO entity_relations VALUES(999,6,578,2,77,''); -INSERT INTO entity_relations VALUES(1000,6,580,2,77,''); -INSERT INTO entity_relations VALUES(1001,6,418,2,117,''); -INSERT INTO entity_relations VALUES(1002,6,576,2,117,''); -INSERT INTO entity_relations VALUES(1003,6,438,2,117,''); -INSERT INTO entity_relations VALUES(1004,6,425,2,117,''); -INSERT INTO entity_relations VALUES(1005,6,580,2,117,''); -INSERT INTO entity_relations VALUES(1006,6,447,2,117,''); -INSERT INTO entity_relations VALUES(1007,6,602,2,117,''); -INSERT INTO entity_relations VALUES(1008,6,590,2,117,''); -INSERT INTO entity_relations VALUES(1009,6,448,2,117,''); -INSERT INTO entity_relations VALUES(1010,6,418,2,119,''); -INSERT INTO entity_relations VALUES(1011,6,425,2,119,''); -INSERT INTO entity_relations VALUES(1012,6,438,2,119,''); -INSERT INTO entity_relations VALUES(1013,6,580,2,119,''); -INSERT INTO entity_relations VALUES(1014,6,580,2,121,''); -INSERT INTO entity_relations VALUES(1015,6,580,2,30,''); -INSERT INTO entity_relations VALUES(1016,6,424,2,43,''); -INSERT INTO entity_relations VALUES(1017,6,418,2,55,''); -INSERT INTO entity_relations VALUES(1018,6,425,2,55,''); -INSERT INTO entity_relations VALUES(1019,6,576,2,55,''); -INSERT INTO entity_relations VALUES(1020,6,580,2,55,''); -INSERT INTO entity_relations VALUES(1021,6,438,2,55,''); -INSERT INTO entity_relations VALUES(1022,6,434,2,56,''); -INSERT INTO entity_relations VALUES(1023,6,427,2,56,''); -INSERT INTO entity_relations VALUES(1024,6,436,2,56,''); -INSERT INTO entity_relations VALUES(1025,6,445,2,63,''); -INSERT INTO entity_relations VALUES(1026,6,576,2,63,''); -INSERT INTO entity_relations VALUES(1027,6,448,2,63,''); -INSERT INTO entity_relations VALUES(1028,6,580,2,63,''); -INSERT INTO entity_relations VALUES(1029,6,418,2,28,''); -INSERT INTO entity_relations VALUES(1030,6,425,2,28,''); -INSERT INTO entity_relations VALUES(1031,6,434,2,28,''); -INSERT INTO entity_relations VALUES(1032,6,438,2,28,''); -INSERT INTO entity_relations VALUES(1033,6,580,2,28,''); -INSERT INTO entity_relations VALUES(1034,6,434,2,34,''); -INSERT INTO entity_relations VALUES(1035,6,427,2,34,''); -INSERT INTO entity_relations VALUES(1036,6,580,2,34,''); -INSERT INTO entity_relations VALUES(1037,6,438,2,34,''); -INSERT INTO entity_relations VALUES(1038,6,580,2,48,''); -INSERT INTO entity_relations VALUES(1039,6,580,2,49,''); -INSERT INTO entity_relations VALUES(1040,6,580,2,52,''); -INSERT INTO entity_relations VALUES(1041,6,445,2,52,''); -INSERT INTO entity_relations VALUES(1042,6,454,2,52,''); -INSERT INTO entity_relations VALUES(1043,6,427,2,52,''); -INSERT INTO entity_relations VALUES(1044,6,429,2,52,''); -INSERT INTO entity_relations VALUES(1045,6,580,2,53,''); -INSERT INTO entity_relations VALUES(1046,6,580,2,62,''); -INSERT INTO entity_relations VALUES(1047,6,576,2,62,''); -INSERT INTO entity_relations VALUES(1048,6,448,2,62,''); -INSERT INTO entity_relations VALUES(1049,6,445,2,62,''); -INSERT INTO entity_relations VALUES(1050,6,438,2,62,''); -INSERT INTO entity_relations VALUES(1051,6,418,2,62,''); -INSERT INTO entity_relations VALUES(1052,6,425,2,62,''); -INSERT INTO entity_relations VALUES(1053,6,445,2,64,''); -INSERT INTO entity_relations VALUES(1054,6,576,2,64,''); -INSERT INTO entity_relations VALUES(1055,6,448,2,64,''); -INSERT INTO entity_relations VALUES(1056,6,580,2,64,''); -INSERT INTO entity_relations VALUES(1057,6,445,2,69,''); -INSERT INTO entity_relations VALUES(1058,6,449,2,69,''); -INSERT INTO entity_relations VALUES(1059,6,424,2,69,''); -INSERT INTO entity_relations VALUES(1060,6,576,2,69,''); -INSERT INTO entity_relations VALUES(1061,6,448,2,69,''); -INSERT INTO entity_relations VALUES(1062,6,580,2,69,''); -INSERT INTO entity_relations VALUES(1063,6,445,2,70,''); -INSERT INTO entity_relations VALUES(1064,6,576,2,70,''); -INSERT INTO entity_relations VALUES(1065,6,580,2,70,''); -INSERT INTO entity_relations VALUES(1066,6,445,2,73,''); -INSERT INTO entity_relations VALUES(1067,6,576,2,73,''); -INSERT INTO entity_relations VALUES(1068,6,580,2,73,''); -INSERT INTO entity_relations VALUES(1069,6,441,2,73,''); -INSERT INTO entity_relations VALUES(1070,6,445,2,605,''); -INSERT INTO entity_relations VALUES(1071,6,576,2,605,''); -INSERT INTO entity_relations VALUES(1072,6,580,2,605,''); -INSERT INTO entity_relations VALUES(1073,6,580,2,606,''); -INSERT INTO entity_relations VALUES(1074,6,576,2,606,''); -INSERT INTO entity_relations VALUES(1075,6,445,2,606,''); -INSERT INTO entity_relations VALUES(1076,6,448,2,606,''); -INSERT INTO entity_relations VALUES(1077,6,449,2,606,''); -INSERT INTO entity_relations VALUES(1078,6,445,2,76,''); -INSERT INTO entity_relations VALUES(1079,6,434,2,76,''); -INSERT INTO entity_relations VALUES(1080,6,435,2,76,''); -INSERT INTO entity_relations VALUES(1081,6,448,2,76,''); -INSERT INTO entity_relations VALUES(1082,6,580,2,76,''); -INSERT INTO entity_relations VALUES(1083,6,445,2,80,''); -INSERT INTO entity_relations VALUES(1084,6,449,2,80,''); -INSERT INTO entity_relations VALUES(1085,6,576,2,80,''); -INSERT INTO entity_relations VALUES(1086,6,448,2,80,''); -INSERT INTO entity_relations VALUES(1087,6,580,2,80,''); -INSERT INTO entity_relations VALUES(1088,6,441,2,80,''); -INSERT INTO entity_relations VALUES(1089,6,438,2,85,''); -INSERT INTO entity_relations VALUES(1090,6,580,2,85,''); -INSERT INTO entity_relations VALUES(1091,6,577,2,91,''); -INSERT INTO entity_relations VALUES(1092,6,438,2,92,''); -INSERT INTO entity_relations VALUES(1093,6,580,2,92,''); -INSERT INTO entity_relations VALUES(1094,6,580,2,95,''); -INSERT INTO entity_relations VALUES(1095,6,438,2,95,''); -INSERT INTO entity_relations VALUES(1096,6,418,2,95,''); -INSERT INTO entity_relations VALUES(1097,6,425,2,95,''); -INSERT INTO entity_relations VALUES(1098,6,580,2,97,''); -INSERT INTO entity_relations VALUES(1099,6,448,2,97,''); -INSERT INTO entity_relations VALUES(1100,6,434,2,97,''); -INSERT INTO entity_relations VALUES(1101,6,435,2,97,''); -INSERT INTO entity_relations VALUES(1102,6,427,2,97,''); -INSERT INTO entity_relations VALUES(1103,6,454,2,97,''); -INSERT INTO entity_relations VALUES(1104,6,438,2,97,''); -INSERT INTO entity_relations VALUES(1105,6,576,2,98,''); -INSERT INTO entity_relations VALUES(1106,6,438,2,98,''); -INSERT INTO entity_relations VALUES(1107,6,580,2,98,''); -INSERT INTO entity_relations VALUES(1108,6,580,2,105,''); -INSERT INTO entity_relations VALUES(1109,6,580,2,107,''); -INSERT INTO entity_relations VALUES(1110,6,438,2,107,''); -INSERT INTO entity_relations VALUES(1111,6,448,2,107,''); -INSERT INTO entity_relations VALUES(1112,6,449,2,107,''); -INSERT INTO entity_relations VALUES(1113,6,580,2,108,''); -INSERT INTO entity_relations VALUES(1114,6,580,2,110,''); -INSERT INTO entity_relations VALUES(1115,6,576,2,110,''); -INSERT INTO entity_relations VALUES(1116,6,438,2,110,''); -INSERT INTO entity_relations VALUES(1117,6,580,2,111,''); -INSERT INTO entity_relations VALUES(1118,6,438,2,111,''); -INSERT INTO entity_relations VALUES(1119,6,580,2,607,''); -INSERT INTO entity_relations VALUES(1120,6,576,2,607,''); -INSERT INTO entity_relations VALUES(1121,6,448,2,607,''); -INSERT INTO entity_relations VALUES(1122,6,449,2,607,''); -INSERT INTO entity_relations VALUES(1123,6,445,2,607,''); -INSERT INTO entity_relations VALUES(1124,6,435,2,142,''); -INSERT INTO entity_relations VALUES(1125,6,580,2,144,''); -INSERT INTO entity_relations VALUES(1126,6,580,2,145,''); -INSERT INTO entity_relations VALUES(1127,6,432,2,145,''); -INSERT INTO entity_relations VALUES(1128,6,434,2,145,''); -INSERT INTO entity_relations VALUES(1129,6,435,2,145,''); -INSERT INTO entity_relations VALUES(1130,6,580,2,146,''); -INSERT INTO entity_relations VALUES(1131,6,434,2,146,''); -INSERT INTO entity_relations VALUES(1132,6,435,2,146,''); -INSERT INTO entity_relations VALUES(1133,6,436,2,146,''); -INSERT INTO entity_relations VALUES(1134,6,432,2,146,''); -INSERT INTO entity_relations VALUES(1135,6,580,2,153,''); -INSERT INTO entity_relations VALUES(1136,6,434,2,153,''); -INSERT INTO entity_relations VALUES(1137,6,435,2,153,''); -INSERT INTO entity_relations VALUES(1138,6,580,2,154,''); -INSERT INTO entity_relations VALUES(1139,6,593,2,155,''); -INSERT INTO entity_relations VALUES(1140,6,443,2,155,''); -INSERT INTO entity_relations VALUES(1141,6,580,2,155,''); -INSERT INTO entity_relations VALUES(1142,6,580,2,156,''); -INSERT INTO entity_relations VALUES(1143,6,438,2,156,''); -INSERT INTO entity_relations VALUES(1144,6,580,2,159,''); -INSERT INTO entity_relations VALUES(1145,6,438,2,159,''); -INSERT INTO entity_relations VALUES(1146,6,425,2,159,''); -INSERT INTO entity_relations VALUES(1147,6,418,2,159,''); -INSERT INTO entity_relations VALUES(1148,6,580,2,161,''); -INSERT INTO entity_relations VALUES(1149,6,580,2,162,''); -INSERT INTO entity_relations VALUES(1150,6,580,2,164,''); -INSERT INTO entity_relations VALUES(1151,6,445,2,166,''); -INSERT INTO entity_relations VALUES(1152,6,449,2,166,''); -INSERT INTO entity_relations VALUES(1153,6,576,2,166,''); -INSERT INTO entity_relations VALUES(1154,6,441,2,166,''); -INSERT INTO entity_relations VALUES(1155,6,438,2,166,''); -INSERT INTO entity_relations VALUES(1156,6,448,2,166,''); -INSERT INTO entity_relations VALUES(1157,6,580,2,166,''); -INSERT INTO entity_relations VALUES(1158,6,445,2,167,''); -INSERT INTO entity_relations VALUES(1159,6,449,2,167,''); -INSERT INTO entity_relations VALUES(1160,6,576,2,167,''); -INSERT INTO entity_relations VALUES(1161,6,448,2,167,''); -INSERT INTO entity_relations VALUES(1162,6,580,2,167,''); -INSERT INTO entity_relations VALUES(1163,6,580,2,174,''); -INSERT INTO entity_relations VALUES(1164,6,434,2,174,''); -INSERT INTO entity_relations VALUES(1165,6,435,2,174,''); -INSERT INTO entity_relations VALUES(1166,6,449,2,174,''); -INSERT INTO entity_relations VALUES(1167,6,445,2,174,''); -INSERT INTO entity_relations VALUES(1168,6,448,2,174,''); -INSERT INTO entity_relations VALUES(1169,6,434,2,175,''); -INSERT INTO entity_relations VALUES(1170,6,435,2,175,''); -INSERT INTO entity_relations VALUES(1171,6,445,2,176,''); -INSERT INTO entity_relations VALUES(1172,6,449,2,176,''); -INSERT INTO entity_relations VALUES(1173,6,434,2,176,''); -INSERT INTO entity_relations VALUES(1174,6,435,2,176,''); -INSERT INTO entity_relations VALUES(1175,6,448,2,176,''); -INSERT INTO entity_relations VALUES(1176,6,580,2,176,''); -INSERT INTO entity_relations VALUES(1177,6,434,2,177,''); -INSERT INTO entity_relations VALUES(1178,6,435,2,177,''); -INSERT INTO entity_relations VALUES(1179,6,580,2,177,''); -INSERT INTO entity_relations VALUES(1180,6,580,2,178,''); -INSERT INTO entity_relations VALUES(1181,6,438,2,178,''); -INSERT INTO entity_relations VALUES(1182,6,576,2,178,''); -INSERT INTO entity_relations VALUES(1183,6,445,2,178,''); -INSERT INTO entity_relations VALUES(1184,6,449,2,178,''); -INSERT INTO entity_relations VALUES(1185,6,448,2,178,''); -INSERT INTO entity_relations VALUES(1186,6,438,2,184,''); -INSERT INTO entity_relations VALUES(1187,6,580,2,184,''); -INSERT INTO entity_relations VALUES(1188,6,445,2,185,''); -INSERT INTO entity_relations VALUES(1189,6,434,2,185,''); -INSERT INTO entity_relations VALUES(1190,6,435,2,185,''); -INSERT INTO entity_relations VALUES(1191,6,437,2,185,''); -INSERT INTO entity_relations VALUES(1192,6,448,2,185,''); -INSERT INTO entity_relations VALUES(1193,6,580,2,185,''); -INSERT INTO entity_relations VALUES(1195,6,580,2,187,''); -INSERT INTO entity_relations VALUES(1196,6,580,2,214,''); -INSERT INTO entity_relations VALUES(1197,6,580,2,221,''); -INSERT INTO entity_relations VALUES(1198,6,580,2,222,''); -INSERT INTO entity_relations VALUES(1199,6,580,2,225,''); -INSERT INTO entity_relations VALUES(1200,6,442,2,225,''); -INSERT INTO entity_relations VALUES(1201,6,424,2,225,''); -INSERT INTO entity_relations VALUES(1202,6,441,2,225,''); -INSERT INTO entity_relations VALUES(1203,6,578,2,225,''); -INSERT INTO entity_relations VALUES(1205,6,580,2,230,''); -INSERT INTO entity_relations VALUES(1206,6,434,2,230,''); -INSERT INTO entity_relations VALUES(1207,6,435,2,230,''); -INSERT INTO entity_relations VALUES(1208,6,436,2,230,''); -INSERT INTO entity_relations VALUES(1209,6,438,2,230,''); -INSERT INTO entity_relations VALUES(1210,6,448,2,230,''); -INSERT INTO entity_relations VALUES(1211,6,580,2,231,''); -INSERT INTO entity_relations VALUES(1212,6,427,2,231,''); -INSERT INTO entity_relations VALUES(1213,6,434,2,231,''); -INSERT INTO entity_relations VALUES(1214,6,435,2,231,''); -INSERT INTO entity_relations VALUES(1215,6,436,2,231,''); -INSERT INTO entity_relations VALUES(1216,6,445,2,234,''); -INSERT INTO entity_relations VALUES(1217,6,437,2,234,''); -INSERT INTO entity_relations VALUES(1218,6,434,2,234,''); -INSERT INTO entity_relations VALUES(1219,6,435,2,234,''); -INSERT INTO entity_relations VALUES(1220,6,448,2,234,''); -INSERT INTO entity_relations VALUES(1221,6,580,2,234,''); -INSERT INTO entity_relations VALUES(1222,6,424,2,234,''); -INSERT INTO entity_relations VALUES(1223,6,580,2,238,''); -INSERT INTO entity_relations VALUES(1224,6,580,2,239,''); -INSERT INTO entity_relations VALUES(1225,6,580,2,240,''); -INSERT INTO entity_relations VALUES(1226,6,580,2,241,''); -INSERT INTO entity_relations VALUES(1227,6,580,2,242,''); -INSERT INTO entity_relations VALUES(1228,6,580,2,243,''); -INSERT INTO entity_relations VALUES(1229,6,580,2,247,''); -INSERT INTO entity_relations VALUES(1230,6,580,2,249,''); -INSERT INTO entity_relations VALUES(1231,6,434,2,249,''); -INSERT INTO entity_relations VALUES(1232,6,435,2,249,''); -INSERT INTO entity_relations VALUES(1233,6,427,2,249,''); -INSERT INTO entity_relations VALUES(1234,6,436,2,249,''); -INSERT INTO entity_relations VALUES(1235,6,432,2,249,''); -INSERT INTO entity_relations VALUES(1236,6,441,2,43,''); -INSERT INTO entity_relations VALUES(1237,6,576,2,224,''); -INSERT INTO entity_relations VALUES(1238,6,580,2,224,''); -INSERT INTO entity_relations VALUES(1239,6,576,8,289,''); -INSERT INTO entity_relations VALUES(1240,6,580,8,289,''); -INSERT INTO entity_relations VALUES(1241,6,578,8,289,''); -INSERT INTO entity_relations VALUES(1242,6,445,2,250,''); -INSERT INTO entity_relations VALUES(1243,6,424,2,250,''); -INSERT INTO entity_relations VALUES(1244,6,576,2,250,''); -INSERT INTO entity_relations VALUES(1245,6,445,2,251,''); -INSERT INTO entity_relations VALUES(1246,6,576,2,251,''); -INSERT INTO entity_relations VALUES(1247,6,580,2,252,''); -INSERT INTO entity_relations VALUES(1248,6,576,2,252,''); -INSERT INTO entity_relations VALUES(1249,6,580,2,253,''); -INSERT INTO entity_relations VALUES(1250,6,576,2,253,''); -INSERT INTO entity_relations VALUES(1251,6,580,2,254,''); -INSERT INTO entity_relations VALUES(1252,6,576,2,254,''); -INSERT INTO entity_relations VALUES(1253,6,580,2,255,''); -INSERT INTO entity_relations VALUES(1254,6,576,2,255,''); -INSERT INTO entity_relations VALUES(1255,6,580,2,256,''); -INSERT INTO entity_relations VALUES(1256,6,576,2,256,''); -INSERT INTO entity_relations VALUES(1257,6,580,2,257,''); -INSERT INTO entity_relations VALUES(1258,6,576,2,257,''); -INSERT INTO entity_relations VALUES(1259,6,580,2,258,''); -INSERT INTO entity_relations VALUES(1260,6,576,2,258,''); -INSERT INTO entity_relations VALUES(1261,6,576,2,322,''); -INSERT INTO entity_relations VALUES(1262,6,576,10,611,''); -INSERT INTO entity_relations VALUES(1263,6,576,2,612,''); -INSERT INTO entity_relations VALUES(1264,6,576,2,613,''); -INSERT INTO entity_relations VALUES(1265,6,576,2,614,''); -INSERT INTO entity_relations VALUES(1266,6,576,8,615,''); -INSERT INTO entity_relations VALUES(1267,6,576,10,616,''); -INSERT INTO entity_relations VALUES(1268,6,576,10,618,''); -INSERT INTO entity_relations VALUES(1269,6,576,2,619,''); -INSERT INTO entity_relations VALUES(1270,6,576,10,620,''); -INSERT INTO entity_relations VALUES(1271,6,576,2,621,''); -INSERT INTO entity_relations VALUES(1272,6,576,2,622,''); -INSERT INTO entity_relations VALUES(1273,6,576,2,623,''); -INSERT INTO entity_relations VALUES(1274,6,576,2,624,''); -INSERT INTO entity_relations VALUES(1275,6,576,2,625,''); -INSERT INTO entity_relations VALUES(1276,6,576,2,626,''); -INSERT INTO entity_relations VALUES(1277,6,576,2,627,''); -INSERT INTO entity_relations VALUES(1278,6,576,2,628,''); -INSERT INTO entity_relations VALUES(1279,6,576,2,629,''); -INSERT INTO entity_relations VALUES(1280,6,576,10,630,''); -INSERT INTO entity_relations VALUES(1281,6,576,2,631,''); -INSERT INTO entity_relations VALUES(1282,6,576,2,632,''); -INSERT INTO entity_relations VALUES(1283,6,576,10,633,''); -INSERT INTO entity_relations VALUES(1284,6,576,2,634,''); -INSERT INTO entity_relations VALUES(1285,6,576,10,635,''); -INSERT INTO entity_relations VALUES(1286,6,576,2,636,''); -INSERT INTO entity_relations VALUES(1287,6,576,2,637,''); -INSERT INTO entity_relations VALUES(1288,6,576,10,638,''); -INSERT INTO entity_relations VALUES(1289,6,576,10,639,''); -INSERT INTO entity_relations VALUES(1290,6,576,2,640,''); -INSERT INTO entity_relations VALUES(1291,6,576,2,641,''); -INSERT INTO entity_relations VALUES(1292,6,576,2,642,''); -INSERT INTO entity_relations VALUES(1293,6,576,2,643,''); -INSERT INTO entity_relations VALUES(1294,6,576,2,644,''); -INSERT INTO entity_relations VALUES(1295,6,576,2,645,''); -INSERT INTO entity_relations VALUES(1296,6,576,2,646,''); -INSERT INTO entity_relations VALUES(1297,6,576,2,647,''); -INSERT INTO entity_relations VALUES(1298,6,576,8,648,''); -INSERT INTO entity_relations VALUES(1299,6,576,2,649,''); -INSERT INTO entity_relations VALUES(1300,6,576,2,650,''); -INSERT INTO entity_relations VALUES(1301,6,576,2,651,''); -INSERT INTO entity_relations VALUES(1302,6,576,10,652,''); -INSERT INTO entity_relations VALUES(1303,6,580,9,660,''); -INSERT INTO entity_relations VALUES(1304,6,576,9,660,''); -INSERT INTO entity_relations VALUES(1305,6,438,9,660,''); -INSERT INTO entity_relations VALUES(1306,6,441,9,653,''); -INSERT INTO entity_relations VALUES(1307,6,437,9,653,''); -INSERT INTO entity_relations VALUES(1308,6,591,9,653,''); -INSERT INTO entity_relations VALUES(1309,6,580,9,654,''); -INSERT INTO entity_relations VALUES(1310,6,576,9,654,''); -INSERT INTO entity_relations VALUES(1311,6,578,9,654,''); -INSERT INTO entity_relations VALUES(1312,6,576,9,655,''); -INSERT INTO entity_relations VALUES(1313,6,576,2,656,''); -INSERT INTO entity_relations VALUES(1314,6,580,2,656,''); -INSERT INTO entity_relations VALUES(1315,6,578,2,656,''); -INSERT INTO entity_relations VALUES(1316,6,441,9,657,''); -INSERT INTO entity_relations VALUES(1317,6,576,2,5,''); -INSERT INTO entity_relations VALUES(1318,6,580,2,5,''); -INSERT INTO entity_relations VALUES(1319,6,578,2,5,''); -INSERT INTO entity_relations VALUES(1320,6,438,2,5,''); -INSERT INTO entity_relations VALUES(1321,6,593,9,659,''); -INSERT INTO entity_relations VALUES(1322,6,443,9,659,''); -INSERT INTO entity_relations VALUES(1323,6,580,9,659,''); -INSERT INTO entity_relations VALUES(1324,6,580,10,661,''); -INSERT INTO entity_relations VALUES(1325,6,443,9,662,''); -INSERT INTO entity_relations VALUES(1326,6,578,9,662,''); -INSERT INTO entity_relations VALUES(1327,6,593,9,662,''); -INSERT INTO entity_relations VALUES(1328,6,580,9,662,''); -INSERT INTO entity_relations VALUES(1329,6,580,9,663,''); -INSERT INTO entity_relations VALUES(1330,6,576,9,663,''); -INSERT INTO entity_relations VALUES(1331,6,580,9,664,''); -INSERT INTO entity_relations VALUES(1332,6,442,9,664,''); -INSERT INTO entity_relations VALUES(1333,6,578,9,664,''); -INSERT INTO entity_relations VALUES(1334,6,593,9,665,''); -INSERT INTO entity_relations VALUES(1335,6,580,9,665,''); -INSERT INTO entity_relations VALUES(1336,6,438,9,665,''); -INSERT INTO entity_relations VALUES(1337,6,578,9,665,''); -INSERT INTO entity_relations VALUES(1338,6,576,9,665,''); -INSERT INTO entity_relations VALUES(1339,6,576,2,666,''); -INSERT INTO entity_relations VALUES(1340,6,580,2,666,''); -INSERT INTO entity_relations VALUES(1341,6,578,2,666,''); -INSERT INTO entity_relations VALUES(1342,6,577,2,667,''); -INSERT INTO entity_relations VALUES(1343,6,577,2,668,''); -INSERT INTO entity_relations VALUES(1344,6,576,8,669,''); -INSERT INTO entity_relations VALUES(1345,6,580,8,669,''); -INSERT INTO entity_relations VALUES(1346,6,449,8,669,''); -INSERT INTO entity_relations VALUES(1347,6,576,8,670,''); -INSERT INTO entity_relations VALUES(1348,6,580,8,670,''); -INSERT INTO entity_relations VALUES(1349,6,449,8,670,''); -INSERT INTO entity_relations VALUES(1350,6,576,2,634,''); -INSERT INTO entity_relations VALUES(1351,6,576,4,672,''); -INSERT INTO entity_relations VALUES(1352,6,578,9,344,''); -INSERT INTO entity_relations VALUES(1353,6,580,9,344,''); -INSERT INTO entity_relations VALUES(1354,6,580,2,674,''); -INSERT INTO entity_relations VALUES(1355,6,576,2,674,''); -INSERT INTO entity_relations VALUES(1356,6,578,2,674,''); -INSERT INTO entity_relations VALUES(1357,6,580,2,675,''); -INSERT INTO entity_relations VALUES(1358,6,578,2,675,''); -INSERT INTO entity_relations VALUES(1359,6,576,2,676,''); -INSERT INTO entity_relations VALUES(1360,6,578,2,676,''); -INSERT INTO entity_relations VALUES(1361,6,578,2,677,''); -INSERT INTO entity_relations VALUES(1362,6,576,2,677,''); -INSERT INTO entity_relations VALUES(1363,6,580,2,677,''); -INSERT INTO entity_relations VALUES(1364,6,438,2,677,''); -INSERT INTO entity_relations VALUES(1365,6,576,2,678,''); -INSERT INTO entity_relations VALUES(1366,6,577,2,679,''); -INSERT INTO entity_relations VALUES(1367,6,577,9,689,''); -INSERT INTO entity_relations VALUES(1368,6,424,2,690,''); -INSERT INTO entity_relations VALUES(1369,6,424,2,691,''); -INSERT INTO entity_relations VALUES(1370,6,577,2,693,''); -INSERT INTO entity_relations VALUES(1371,6,576,2,695,''); -INSERT INTO entity_relations VALUES(1372,6,578,2,695,''); -INSERT INTO entity_relations VALUES(1373,6,580,2,695,''); -INSERT INTO entity_relations VALUES(1374,6,576,2,694,''); -INSERT INTO entity_relations VALUES(1375,6,578,2,694,''); -INSERT INTO entity_relations VALUES(1376,9,584,2,697,''); -INSERT INTO entity_relations VALUES(1377,6,576,2,697,''); -INSERT INTO entity_relations VALUES(1378,6,580,2,697,''); -INSERT INTO entity_relations VALUES(1379,6,576,9,584,''); -INSERT INTO entity_relations VALUES(1380,6,576,9,589,''); -INSERT INTO entity_relations VALUES(1381,6,576,10,506,''); -INSERT INTO entity_relations VALUES(1382,6,576,10,509,''); -INSERT INTO entity_relations VALUES(1383,6,576,9,301,''); -INSERT INTO entity_relations VALUES(1384,6,576,9,303,''); -INSERT INTO entity_relations VALUES(1385,6,576,9,583,''); -INSERT INTO entity_relations VALUES(1386,6,576,9,307,''); -INSERT INTO entity_relations VALUES(1387,6,576,9,312,''); -INSERT INTO entity_relations VALUES(1388,6,576,9,315,''); -INSERT INTO entity_relations VALUES(1389,6,576,9,316,''); -INSERT INTO entity_relations VALUES(1390,6,576,9,596,''); -INSERT INTO entity_relations VALUES(1391,6,576,9,319,''); -INSERT INTO entity_relations VALUES(1392,6,576,9,320,''); -INSERT INTO entity_relations VALUES(1393,6,576,9,322,''); -INSERT INTO entity_relations VALUES(1394,6,576,9,324,''); -INSERT INTO entity_relations VALUES(1395,6,576,9,325,''); -INSERT INTO entity_relations VALUES(1396,6,576,9,326,''); -INSERT INTO entity_relations VALUES(1397,6,576,9,327,''); -INSERT INTO entity_relations VALUES(1398,6,576,9,330,''); -INSERT INTO entity_relations VALUES(1399,6,576,9,341,''); -INSERT INTO entity_relations VALUES(1400,6,576,9,343,''); -INSERT INTO entity_relations VALUES(1401,6,576,9,344,''); -INSERT INTO entity_relations VALUES(1402,6,576,9,599,''); -INSERT INTO entity_relations VALUES(1403,6,576,9,352,''); -INSERT INTO entity_relations VALUES(1404,6,576,9,353,''); -INSERT INTO entity_relations VALUES(1405,6,576,9,587,''); -INSERT INTO entity_relations VALUES(1406,6,576,9,355,''); -INSERT INTO entity_relations VALUES(1407,6,576,9,359,''); -INSERT INTO entity_relations VALUES(1408,6,576,9,360,''); -INSERT INTO entity_relations VALUES(1409,6,576,9,361,''); -INSERT INTO entity_relations VALUES(1410,6,576,9,366,''); -INSERT INTO entity_relations VALUES(1411,6,576,9,367,''); -INSERT INTO entity_relations VALUES(1412,6,576,9,373,''); -INSERT INTO entity_relations VALUES(1413,6,576,2,3,''); -INSERT INTO entity_relations VALUES(1414,6,576,2,13,''); -INSERT INTO entity_relations VALUES(1415,6,576,2,26,''); -INSERT INTO entity_relations VALUES(1416,6,576,2,33,''); -INSERT INTO entity_relations VALUES(1417,6,576,2,38,''); -INSERT INTO entity_relations VALUES(1418,6,576,2,50,''); -INSERT INTO entity_relations VALUES(1419,6,576,2,61,''); -INSERT INTO entity_relations VALUES(1420,6,576,2,124,''); -INSERT INTO entity_relations VALUES(1421,6,576,2,127,''); -INSERT INTO entity_relations VALUES(1422,6,576,2,129,''); -INSERT INTO entity_relations VALUES(1423,6,576,2,135,''); -INSERT INTO entity_relations VALUES(1424,6,576,2,140,''); -INSERT INTO entity_relations VALUES(1425,6,576,2,141,''); -INSERT INTO entity_relations VALUES(1426,6,576,2,151,''); -INSERT INTO entity_relations VALUES(1427,6,576,2,152,''); -INSERT INTO entity_relations VALUES(1428,6,576,2,179,''); -INSERT INTO entity_relations VALUES(1429,6,576,2,180,''); -INSERT INTO entity_relations VALUES(1430,6,576,2,190,''); -INSERT INTO entity_relations VALUES(1431,6,576,2,218,''); -INSERT INTO entity_relations VALUES(1432,6,576,2,7,''); -INSERT INTO entity_relations VALUES(1433,6,576,2,186,''); -INSERT INTO entity_relations VALUES(1434,6,576,2,229,''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1, 6, 580, 10, 497, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (2, 6, 580, 10, 498, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (3, 6, 580, 10, 592, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (4, 6, 580, 10, 500, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (5, 6, 418, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (6, 6, 425, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (7, 6, 438, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (8, 6, 580, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (9, 6, 441, 10, 502, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (10, 6, 591, 10, 502, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (11, 6, 576, 10, 503, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (12, 6, 438, 10, 503, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (13, 6, 580, 10, 503, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (14, 6, 418, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (15, 6, 425, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (16, 6, 576, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (17, 6, 438, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (18, 6, 448, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (19, 6, 580, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (20, 6, 580, 10, 505, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (22, 6, 576, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (23, 6, 438, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (24, 6, 445, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (25, 6, 447, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (26, 6, 590, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (27, 6, 580, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (28, 6, 576, 10, 508, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (29, 6, 438, 10, 508, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (30, 6, 580, 10, 508, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (32, 8, 609, 7, 490, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (33, 8, 609, 7, 489, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (34, 8, 609, 7, 491, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (35, 8, 268, 7, 492, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (36, 8, 610, 7, 494, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (37, 8, 276, 7, 495, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (38, 8, 279, 7, 496, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (39, 10, 497, 7, 482, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (40, 10, 497, 7, 483, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (41, 10, 497, 7, 484, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (42, 10, 497, 7, 485, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (43, 10, 497, 7, 486, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (44, 10, 497, 7, 487, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (45, 10, 500, 7, 488, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (46, 2, 33, 5, 455, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (47, 2, 46, 5, 456, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (48, 2, 62, 5, 457, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (49, 2, 68, 5, 458, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (50, 2, 606, 5, 459, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (51, 2, 604, 5, 460, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (52, 2, 604, 5, 461, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (53, 2, 604, 5, 462, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (54, 2, 604, 5, 463, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (55, 2, 104, 5, 464, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (56, 2, 581, 5, 466, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (57, 2, 581, 5, 467, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (58, 2, 581, 5, 468, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (59, 2, 581, 5, 469, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (60, 2, 581, 5, 470, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (61, 2, 581, 5, 471, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (62, 2, 581, 5, 473, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (63, 2, 581, 5, 465, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (64, 2, 581, 5, 472, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (65, 2, 134, 5, 474, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (66, 2, 134, 5, 475, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (67, 2, 134, 5, 478, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (68, 2, 174, 5, 476, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (69, 2, 174, 5, 477, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (70, 2, 190, 5, 479, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (71, 2, 190, 5, 480, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (72, 2, 217, 5, 481, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (73, 9, 582, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (74, 9, 583, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (75, 9, 584, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (76, 9, 346, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (77, 9, 585, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (78, 9, 586, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (79, 9, 587, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (80, 9, 588, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (81, 9, 583, 12, 376, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (82, 9, 584, 12, 376, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (83, 9, 585, 12, 376, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (84, 9, 307, 12, 377, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (85, 9, 584, 12, 378, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (86, 9, 584, 12, 379, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (87, 9, 584, 12, 380, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (88, 9, 584, 12, 381, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (89, 9, 584, 12, 382, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (90, 9, 584, 12, 383, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (91, 9, 584, 12, 384, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (92, 9, 584, 12, 385, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (93, 9, 584, 12, 386, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (94, 9, 584, 12, 387, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (95, 9, 584, 12, 388, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (96, 9, 584, 12, 389, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (97, 9, 584, 12, 390, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (98, 9, 584, 12, 391, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (99, 9, 584, 12, 392, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (100, 9, 584, 12, 393, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (101, 9, 584, 12, 394, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (102, 9, 584, 12, 395, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (103, 9, 584, 12, 396, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (104, 9, 584, 12, 397, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (105, 9, 584, 12, 398, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (106, 9, 584, 12, 399, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (107, 9, 584, 12, 400, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (108, 9, 584, 12, 401, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (109, 9, 584, 12, 402, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (110, 9, 584, 12, 403, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (111, 9, 584, 12, 404, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (112, 9, 589, 12, 405, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (113, 9, 589, 12, 406, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (114, 9, 589, 12, 407, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (115, 9, 589, 12, 408, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (116, 9, 589, 12, 409, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (117, 9, 589, 12, 410, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (118, 9, 589, 12, 411, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (119, 9, 589, 12, 412, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (120, 9, 589, 12, 413, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (121, 9, 589, 12, 414, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (122, 9, 589, 12, 415, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (123, 9, 311, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (124, 9, 584, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (125, 9, 589, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (126, 9, 586, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (127, 9, 587, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (128, 9, 585, 12, 417, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (129, 6, 580, 9, 299, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (130, 6, 576, 9, 300, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (131, 6, 578, 9, 300, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (133, 6, 580, 9, 302, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (135, 6, 580, 9, 582, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (138, 6, 593, 9, 308, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (139, 6, 577, 9, 309, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (140, 6, 441, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (141, 6, 442, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (142, 6, 578, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (143, 6, 576, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (144, 6, 595, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (145, 6, 580, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (146, 6, 591, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (147, 6, 580, 9, 311, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (149, 6, 418, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (150, 6, 425, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (151, 6, 576, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (152, 6, 438, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (153, 6, 580, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (154, 6, 576, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (155, 6, 441, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (156, 6, 578, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (157, 6, 580, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (158, 6, 608, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (159, 6, 591, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (165, 6, 597, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (166, 6, 577, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (167, 6, 442, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (168, 6, 443, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (169, 6, 578, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (170, 6, 608, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (172, 6, 576, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (173, 6, 438, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (174, 6, 579, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (175, 6, 580, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (180, 6, 441, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (181, 6, 598, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (182, 6, 608, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (183, 6, 591, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (184, 6, 424, 9, 329, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (188, 6, 597, 9, 338, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (189, 6, 577, 9, 338, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (190, 6, 591, 9, 338, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (191, 6, 576, 9, 339, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (192, 6, 578, 9, 339, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (193, 6, 580, 9, 339, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (194, 6, 580, 9, 340, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (196, 6, 431, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (197, 6, 442, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (198, 6, 445, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (199, 6, 448, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (200, 6, 449, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (201, 6, 580, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (205, 6, 576, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (206, 6, 438, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (207, 6, 578, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (208, 6, 580, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (209, 6, 576, 9, 586, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (210, 6, 438, 9, 586, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (211, 6, 578, 9, 586, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (212, 6, 580, 9, 586, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (213, 6, 577, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (214, 6, 445, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (215, 6, 580, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (216, 6, 608, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (221, 6, 424, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (222, 6, 577, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (223, 6, 443, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (224, 6, 445, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (225, 6, 608, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (226, 6, 591, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (227, 6, 424, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (228, 6, 441, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (229, 6, 442, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (230, 6, 580, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (231, 6, 591, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (236, 6, 576, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (237, 6, 438, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (238, 6, 578, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (239, 6, 580, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (240, 6, 576, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (241, 6, 438, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (242, 6, 578, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (243, 6, 580, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (244, 6, 576, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (245, 6, 438, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (246, 6, 441, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (247, 6, 447, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (248, 6, 580, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (249, 6, 576, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (250, 6, 438, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (251, 6, 578, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (252, 6, 580, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (255, 6, 418, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (256, 6, 425, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (257, 6, 576, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (258, 6, 438, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (259, 6, 578, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (260, 6, 579, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (261, 6, 580, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (262, 6, 580, 9, 369, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (263, 6, 593, 9, 370, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (264, 6, 580, 9, 370, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (265, 6, 438, 9, 371, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (266, 6, 580, 9, 371, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (267, 6, 580, 9, 372, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (269, 6, 580, 9, 374, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (270, 6, 576, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (271, 6, 445, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (272, 6, 448, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (273, 6, 449, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (274, 6, 580, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (275, 6, 434, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (276, 6, 436, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (277, 6, 448, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (278, 6, 580, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (279, 6, 576, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (280, 6, 578, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (281, 6, 438, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (282, 6, 576, 8, 261, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (283, 6, 580, 8, 261, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (284, 6, 432, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (285, 6, 434, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (286, 6, 435, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (287, 6, 445, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (288, 6, 448, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (289, 6, 449, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (290, 6, 580, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (291, 6, 434, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (292, 6, 435, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (293, 6, 436, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (294, 6, 438, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (295, 6, 445, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (296, 6, 448, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (297, 6, 580, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (298, 6, 576, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (299, 6, 438, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (300, 6, 445, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (301, 6, 447, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (302, 6, 590, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (303, 6, 448, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (304, 6, 580, 8, 609, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (305, 6, 576, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (306, 6, 434, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (307, 6, 578, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (308, 6, 448, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (309, 6, 580, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (310, 6, 580, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (311, 6, 425, 8, 269, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (312, 6, 576, 8, 269, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (313, 6, 438, 8, 269, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (314, 6, 576, 8, 270, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (315, 6, 438, 8, 270, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (316, 6, 580, 8, 270, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (317, 6, 576, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (318, 6, 438, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (319, 6, 578, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (320, 6, 580, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (321, 6, 448, 8, 272, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (322, 6, 580, 8, 272, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (323, 6, 576, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (324, 6, 445, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (325, 6, 448, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (326, 6, 449, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (327, 6, 580, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (328, 6, 576, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (329, 6, 438, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (330, 6, 445, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (331, 6, 579, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (332, 6, 449, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (333, 6, 580, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (334, 6, 580, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (335, 6, 432, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (336, 6, 434, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (337, 6, 435, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (338, 6, 438, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (339, 6, 445, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (340, 6, 448, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (341, 6, 449, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (342, 6, 432, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (343, 6, 434, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (344, 6, 435, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (345, 6, 445, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (346, 6, 448, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (347, 6, 449, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (348, 6, 580, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (349, 6, 576, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (350, 6, 438, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (351, 6, 578, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (352, 6, 580, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (353, 6, 576, 8, 280, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (354, 6, 438, 8, 280, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (355, 6, 580, 8, 280, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (356, 6, 580, 8, 282, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (357, 6, 432, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (358, 6, 434, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (359, 6, 435, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (360, 6, 445, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (361, 6, 448, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (362, 6, 449, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (363, 6, 580, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (364, 6, 424, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (365, 6, 576, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (366, 6, 445, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (367, 6, 448, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (368, 6, 449, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (369, 6, 580, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (370, 6, 424, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (371, 6, 576, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (372, 6, 441, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (373, 6, 445, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (374, 6, 448, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (375, 6, 449, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (376, 6, 580, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (377, 6, 580, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (378, 6, 424, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (379, 6, 576, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (380, 6, 441, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (381, 6, 445, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (382, 6, 448, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (383, 6, 449, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (384, 6, 580, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (385, 6, 424, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (386, 6, 576, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (387, 6, 441, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (388, 6, 445, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (389, 6, 448, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (390, 6, 449, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (391, 6, 580, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (392, 6, 424, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (393, 6, 576, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (394, 6, 441, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (395, 6, 445, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (396, 6, 448, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (397, 6, 449, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (398, 6, 580, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (399, 6, 445, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (400, 6, 449, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (401, 6, 576, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (402, 6, 448, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (403, 6, 580, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (404, 6, 424, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (405, 6, 441, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (406, 6, 434, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (407, 6, 432, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (408, 6, 427, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (409, 6, 435, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (410, 6, 436, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (411, 6, 448, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (412, 6, 580, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (413, 6, 438, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (414, 6, 445, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (415, 6, 449, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (416, 6, 576, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (417, 6, 448, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (418, 6, 580, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (419, 6, 445, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (420, 6, 449, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (421, 6, 445, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (422, 6, 449, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (423, 6, 580, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (424, 6, 448, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (425, 6, 434, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (426, 6, 576, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (427, 6, 580, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (428, 6, 578, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (429, 6, 441, 2, 1, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (431, 6, 576, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (432, 6, 438, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (433, 6, 578, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (434, 6, 580, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (435, 6, 576, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (436, 6, 438, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (437, 6, 578, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (438, 6, 580, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (439, 6, 576, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (440, 6, 438, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (441, 6, 578, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (442, 6, 580, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (443, 6, 576, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (444, 6, 438, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (445, 6, 580, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (446, 6, 578, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (447, 6, 576, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (448, 6, 438, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (449, 6, 578, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (450, 6, 580, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (451, 6, 576, 2, 11, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (452, 6, 438, 2, 11, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (453, 6, 580, 2, 11, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (454, 6, 419, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (455, 6, 427, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (456, 6, 429, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (457, 6, 431, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (458, 6, 434, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (459, 6, 435, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (460, 6, 436, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (461, 6, 438, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (462, 6, 443, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (463, 6, 579, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (464, 6, 449, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (465, 6, 580, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (467, 6, 576, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (468, 6, 438, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (469, 6, 579, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (470, 6, 580, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (471, 6, 427, 2, 15, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (472, 6, 434, 2, 15, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (473, 6, 580, 2, 15, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (474, 6, 576, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (475, 6, 445, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (476, 6, 448, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (477, 6, 449, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (478, 6, 580, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (479, 6, 576, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (480, 6, 445, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (481, 6, 448, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (482, 6, 449, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (483, 6, 580, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (484, 6, 427, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (485, 6, 431, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (486, 6, 432, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (487, 6, 434, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (488, 6, 435, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (489, 6, 580, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (490, 6, 576, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (491, 6, 445, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (492, 6, 448, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (493, 6, 580, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (494, 6, 424, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (495, 6, 593, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (496, 6, 577, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (497, 6, 443, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (498, 6, 578, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (499, 6, 580, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (500, 6, 591, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (502, 6, 427, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (503, 6, 429, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (504, 6, 432, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (505, 6, 434, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (506, 6, 435, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (507, 6, 436, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (508, 6, 438, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (509, 6, 445, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (510, 6, 447, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (511, 6, 448, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (512, 6, 580, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (513, 6, 448, 2, 29, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (514, 6, 580, 2, 29, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (515, 6, 576, 2, 31, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (516, 6, 580, 2, 32, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (517, 6, 576, 2, 32, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (519, 6, 418, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (520, 6, 425, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (521, 6, 434, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (522, 6, 435, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (523, 6, 436, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (524, 6, 445, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (525, 6, 448, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (526, 6, 580, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (527, 6, 427, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (528, 6, 434, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (529, 6, 435, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (530, 6, 436, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (531, 6, 438, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (532, 6, 580, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (534, 6, 580, 2, 39, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (535, 6, 434, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (536, 6, 435, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (537, 6, 441, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (538, 6, 445, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (539, 6, 448, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (540, 6, 449, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (541, 6, 580, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (542, 6, 580, 2, 41, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (543, 6, 580, 2, 42, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (544, 6, 576, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (545, 6, 438, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (546, 6, 445, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (547, 6, 580, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (548, 6, 576, 2, 44, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (549, 6, 578, 2, 44, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (550, 6, 580, 2, 44, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (551, 6, 576, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (552, 6, 438, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (553, 6, 578, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (554, 6, 580, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (555, 6, 576, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (556, 6, 438, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (557, 6, 448, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (558, 6, 580, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (559, 6, 427, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (560, 6, 429, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (561, 6, 431, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (562, 6, 432, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (563, 6, 434, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (564, 6, 435, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (565, 6, 436, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (566, 6, 580, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (568, 6, 425, 2, 51, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (569, 6, 438, 2, 51, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (570, 6, 580, 2, 51, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (571, 6, 418, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (572, 6, 425, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (573, 6, 438, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (574, 6, 580, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (575, 6, 427, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (576, 6, 429, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (577, 6, 432, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (578, 6, 434, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (579, 6, 435, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (580, 6, 436, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (581, 6, 580, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (582, 6, 449, 2, 58, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (583, 6, 449, 2, 59, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (584, 6, 434, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (585, 6, 435, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (586, 6, 447, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (587, 6, 448, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (588, 6, 580, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (590, 6, 434, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (591, 6, 435, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (592, 6, 437, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (593, 6, 445, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (594, 6, 448, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (595, 6, 449, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (596, 6, 580, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (597, 6, 576, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (598, 6, 445, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (599, 6, 448, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (600, 6, 449, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (601, 6, 580, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (602, 6, 576, 2, 67, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (603, 6, 445, 2, 67, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (604, 6, 580, 2, 67, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (605, 6, 576, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (606, 6, 441, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (607, 6, 445, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (608, 6, 448, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (609, 6, 449, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (610, 6, 580, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (611, 6, 580, 2, 71, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (612, 6, 418, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (613, 6, 425, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (614, 6, 576, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (615, 6, 438, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (616, 6, 445, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (617, 6, 448, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (618, 6, 449, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (619, 6, 580, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (620, 6, 424, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (621, 6, 576, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (622, 6, 445, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (623, 6, 448, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (624, 6, 449, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (625, 6, 580, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (626, 6, 424, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (627, 6, 576, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (628, 6, 441, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (629, 6, 445, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (630, 6, 448, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (631, 6, 449, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (632, 6, 580, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (633, 6, 591, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (634, 6, 434, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (635, 6, 435, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (636, 6, 445, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (637, 6, 580, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (638, 6, 576, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (639, 6, 441, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (640, 6, 445, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (641, 6, 448, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (642, 6, 449, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (643, 6, 580, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (644, 6, 576, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (645, 6, 441, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (646, 6, 445, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (647, 6, 448, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (648, 6, 449, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (649, 6, 580, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (650, 6, 441, 2, 84, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (651, 6, 576, 2, 86, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (652, 6, 580, 2, 86, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (653, 6, 434, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (654, 6, 435, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (655, 6, 445, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (656, 6, 448, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (657, 6, 580, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (658, 6, 576, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (659, 6, 442, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (660, 6, 445, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (661, 6, 448, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (662, 6, 449, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (663, 6, 580, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (664, 6, 427, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (665, 6, 429, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (666, 6, 453, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (667, 6, 431, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (668, 6, 434, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (669, 6, 436, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (670, 6, 438, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (671, 6, 447, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (672, 6, 590, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (673, 6, 580, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (674, 6, 576, 2, 93, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (675, 6, 438, 2, 93, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (676, 6, 580, 2, 93, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (677, 6, 418, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (678, 6, 425, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (679, 6, 438, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (680, 6, 580, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (681, 6, 580, 2, 96, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (682, 6, 580, 2, 99, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (683, 6, 580, 2, 100, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (684, 6, 580, 2, 101, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (685, 6, 580, 2, 102, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (686, 6, 580, 2, 104, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (687, 6, 580, 2, 106, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (688, 6, 580, 2, 109, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (689, 6, 580, 2, 112, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (690, 6, 580, 2, 113, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (691, 6, 580, 2, 114, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (692, 6, 576, 2, 115, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (693, 6, 438, 2, 115, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (694, 6, 580, 2, 115, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (695, 6, 576, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (696, 6, 438, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (697, 6, 447, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (698, 6, 448, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (699, 6, 580, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (700, 6, 424, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (701, 6, 576, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (702, 6, 441, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (703, 6, 445, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (704, 6, 448, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (705, 6, 449, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (706, 6, 580, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (707, 6, 576, 2, 581, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (708, 6, 580, 2, 581, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (709, 6, 578, 2, 581, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (710, 6, 580, 2, 121, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (711, 6, 576, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (712, 6, 438, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (713, 6, 445, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (714, 6, 447, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (715, 6, 448, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (716, 6, 449, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (717, 6, 580, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (718, 6, 427, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (719, 6, 429, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (720, 6, 453, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (721, 6, 434, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (722, 6, 435, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (723, 6, 436, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (724, 6, 438, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (725, 6, 580, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (727, 6, 576, 2, 125, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (728, 6, 438, 2, 125, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (729, 6, 418, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (730, 6, 438, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (731, 6, 441, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (732, 6, 445, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (733, 6, 579, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (734, 6, 448, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (735, 6, 449, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (736, 6, 580, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (738, 6, 576, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (739, 6, 438, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (740, 6, 447, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (741, 6, 602, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (742, 6, 590, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (743, 6, 448, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (744, 6, 580, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (746, 6, 432, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (747, 6, 434, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (748, 6, 435, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (749, 6, 438, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (750, 6, 580, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (751, 6, 576, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (752, 6, 445, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (753, 6, 448, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (754, 6, 449, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (755, 6, 580, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (756, 6, 432, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (757, 6, 434, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (758, 6, 435, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (759, 6, 580, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (760, 6, 432, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (761, 6, 434, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (762, 6, 435, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (763, 6, 445, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (764, 6, 448, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (765, 6, 449, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (766, 6, 580, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (767, 6, 432, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (768, 6, 434, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (769, 6, 445, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (770, 6, 448, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (771, 6, 449, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (772, 6, 580, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (773, 6, 424, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (774, 6, 441, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (776, 6, 576, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (777, 6, 445, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (778, 6, 448, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (779, 6, 449, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (780, 6, 580, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (781, 6, 432, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (782, 6, 434, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (783, 6, 435, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (784, 6, 445, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (785, 6, 448, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (786, 6, 449, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (787, 6, 580, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (790, 6, 432, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (791, 6, 434, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (792, 6, 435, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (793, 6, 445, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (794, 6, 448, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (795, 6, 449, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (796, 6, 580, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (797, 6, 432, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (798, 6, 434, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (799, 6, 435, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (800, 6, 438, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (801, 6, 445, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (802, 6, 448, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (803, 6, 580, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (804, 6, 432, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (805, 6, 434, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (806, 6, 445, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (807, 6, 448, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (808, 6, 449, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (809, 6, 580, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (810, 6, 577, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (811, 6, 443, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (812, 6, 445, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (813, 6, 448, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (814, 6, 449, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (815, 6, 580, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (816, 6, 576, 2, 150, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (817, 6, 438, 2, 150, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (818, 6, 580, 2, 150, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (821, 6, 576, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (822, 6, 438, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (823, 6, 447, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (824, 6, 590, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (825, 6, 580, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (826, 6, 580, 2, 158, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (827, 6, 576, 2, 160, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (828, 6, 448, 2, 160, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (829, 6, 580, 2, 160, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (830, 6, 434, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (831, 6, 445, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (832, 6, 448, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (833, 6, 580, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (834, 6, 576, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (835, 6, 438, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (836, 6, 447, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (837, 6, 448, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (838, 6, 580, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (839, 6, 454, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (840, 6, 427, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (841, 6, 432, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (842, 6, 434, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (843, 6, 427, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (844, 6, 434, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (845, 6, 435, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (846, 6, 448, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (847, 6, 580, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (848, 6, 576, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (849, 6, 438, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (850, 6, 579, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (851, 6, 448, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (852, 6, 580, 2, 171, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (853, 6, 580, 2, 172, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (854, 6, 580, 2, 173, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (857, 6, 580, 2, 603, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (858, 6, 432, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (859, 6, 434, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (860, 6, 435, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (861, 6, 445, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (862, 6, 448, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (863, 6, 449, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (864, 6, 580, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (865, 6, 580, 2, 183, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (866, 6, 576, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (867, 6, 438, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (868, 6, 445, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (869, 6, 447, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (870, 6, 448, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (871, 6, 580, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (872, 6, 580, 2, 189, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (874, 6, 441, 2, 191, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (875, 6, 435, 2, 215, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (876, 6, 580, 2, 216, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (877, 6, 434, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (878, 6, 435, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (879, 6, 445, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (880, 6, 448, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (881, 6, 449, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (882, 6, 580, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (884, 6, 424, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (885, 6, 434, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (886, 6, 435, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (887, 6, 438, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (888, 6, 442, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (889, 6, 445, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (890, 6, 448, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (891, 6, 449, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (892, 6, 580, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (893, 6, 434, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (894, 6, 435, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (895, 6, 437, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (896, 6, 445, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (897, 6, 448, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (898, 6, 580, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (899, 6, 441, 2, 223, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (900, 6, 441, 2, 224, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (901, 6, 580, 2, 226, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (902, 6, 424, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (903, 6, 434, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (904, 6, 435, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (905, 6, 445, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (906, 6, 434, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (907, 6, 435, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (908, 6, 445, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (909, 6, 448, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (910, 6, 449, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (911, 6, 580, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (912, 6, 580, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (913, 6, 424, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (914, 6, 434, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (915, 6, 437, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (916, 6, 445, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (917, 6, 448, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (918, 6, 449, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (919, 6, 580, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (920, 6, 432, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (921, 6, 434, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (922, 6, 435, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (923, 6, 445, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (924, 6, 448, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (925, 6, 449, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (926, 6, 580, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (927, 6, 576, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (928, 6, 441, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (929, 6, 445, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (930, 6, 448, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (931, 6, 449, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (932, 6, 580, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (933, 6, 576, 2, 236, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (934, 6, 578, 2, 236, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (935, 6, 580, 2, 236, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (936, 6, 580, 2, 237, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (937, 6, 580, 2, 244, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (938, 6, 576, 2, 245, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (939, 6, 578, 2, 245, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (940, 6, 580, 2, 245, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (941, 6, 576, 2, 246, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (942, 6, 438, 2, 246, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (943, 6, 580, 2, 246, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (944, 6, 427, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (945, 6, 429, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (946, 6, 453, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (947, 6, 434, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (948, 6, 435, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (949, 6, 436, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (950, 6, 438, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (951, 6, 580, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (952, 6, 441, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (953, 6, 578, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (954, 6, 576, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (955, 6, 580, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (956, 6, 580, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (957, 6, 438, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (958, 6, 418, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (959, 6, 425, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (960, 6, 576, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (961, 6, 448, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (962, 6, 449, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (963, 6, 445, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (965, 6, 580, 2, 17, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (966, 6, 454, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (967, 6, 427, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (968, 6, 445, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (969, 6, 580, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (970, 6, 432, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (971, 6, 448, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (972, 6, 434, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (973, 6, 435, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (974, 6, 580, 2, 20, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (975, 6, 449, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (976, 6, 445, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (977, 6, 448, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (978, 6, 576, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (979, 6, 441, 2, 24, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (980, 6, 591, 2, 24, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (981, 6, 580, 2, 193, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (982, 6, 580, 2, 213, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (983, 6, 438, 2, 213, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (984, 6, 576, 2, 213, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (985, 6, 445, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (986, 6, 449, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (987, 6, 576, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (988, 6, 448, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (989, 6, 580, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (990, 6, 580, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (991, 6, 438, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (992, 6, 418, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (993, 6, 425, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (994, 6, 434, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (995, 6, 435, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (996, 6, 580, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (997, 6, 580, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (998, 6, 576, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (999, 6, 578, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1000, 6, 580, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1001, 6, 418, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1002, 6, 576, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1003, 6, 438, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1004, 6, 425, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1005, 6, 580, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1006, 6, 447, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1007, 6, 602, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1008, 6, 590, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1009, 6, 448, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1010, 6, 418, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1011, 6, 425, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1012, 6, 438, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1013, 6, 580, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1014, 6, 580, 2, 121, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1015, 6, 580, 2, 30, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1016, 6, 424, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1017, 6, 418, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1018, 6, 425, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1019, 6, 576, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1020, 6, 580, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1021, 6, 438, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1022, 6, 434, 2, 56, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1023, 6, 427, 2, 56, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1024, 6, 436, 2, 56, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1025, 6, 445, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1026, 6, 576, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1027, 6, 448, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1028, 6, 580, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1029, 6, 418, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1030, 6, 425, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1031, 6, 434, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1032, 6, 438, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1033, 6, 580, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1034, 6, 434, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1035, 6, 427, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1036, 6, 580, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1037, 6, 438, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1038, 6, 580, 2, 48, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1039, 6, 580, 2, 49, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1040, 6, 580, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1041, 6, 445, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1042, 6, 454, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1043, 6, 427, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1044, 6, 429, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1045, 6, 580, 2, 53, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1046, 6, 580, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1047, 6, 576, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1048, 6, 448, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1049, 6, 445, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1050, 6, 438, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1051, 6, 418, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1052, 6, 425, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1053, 6, 445, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1054, 6, 576, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1055, 6, 448, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1056, 6, 580, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1057, 6, 445, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1058, 6, 449, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1059, 6, 424, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1060, 6, 576, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1061, 6, 448, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1062, 6, 580, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1063, 6, 445, 2, 70, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1064, 6, 576, 2, 70, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1065, 6, 580, 2, 70, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1066, 6, 445, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1067, 6, 576, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1068, 6, 580, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1069, 6, 441, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1070, 6, 445, 2, 605, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1071, 6, 576, 2, 605, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1072, 6, 580, 2, 605, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1073, 6, 580, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1074, 6, 576, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1075, 6, 445, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1076, 6, 448, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1077, 6, 449, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1078, 6, 445, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1079, 6, 434, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1080, 6, 435, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1081, 6, 448, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1082, 6, 580, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1083, 6, 445, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1084, 6, 449, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1085, 6, 576, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1086, 6, 448, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1087, 6, 580, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1088, 6, 441, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1089, 6, 438, 2, 85, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1090, 6, 580, 2, 85, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1091, 6, 577, 2, 91, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1092, 6, 438, 2, 92, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1093, 6, 580, 2, 92, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1094, 6, 580, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1095, 6, 438, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1096, 6, 418, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1097, 6, 425, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1098, 6, 580, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1099, 6, 448, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1100, 6, 434, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1101, 6, 435, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1102, 6, 427, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1103, 6, 454, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1104, 6, 438, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1105, 6, 576, 2, 98, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1106, 6, 438, 2, 98, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1107, 6, 580, 2, 98, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1108, 6, 580, 2, 105, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1109, 6, 580, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1110, 6, 438, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1111, 6, 448, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1112, 6, 449, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1113, 6, 580, 2, 108, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1114, 6, 580, 2, 110, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1115, 6, 576, 2, 110, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1116, 6, 438, 2, 110, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1117, 6, 580, 2, 111, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1118, 6, 438, 2, 111, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1119, 6, 580, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1120, 6, 576, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1121, 6, 448, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1122, 6, 449, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1123, 6, 445, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1124, 6, 435, 2, 142, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1125, 6, 580, 2, 144, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1126, 6, 580, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1127, 6, 432, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1128, 6, 434, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1129, 6, 435, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1130, 6, 580, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1131, 6, 434, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1132, 6, 435, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1133, 6, 436, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1134, 6, 432, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1135, 6, 580, 2, 153, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1136, 6, 434, 2, 153, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1137, 6, 435, 2, 153, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1138, 6, 580, 2, 154, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1139, 6, 593, 2, 155, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1140, 6, 443, 2, 155, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1141, 6, 580, 2, 155, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1142, 6, 580, 2, 156, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1143, 6, 438, 2, 156, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1144, 6, 580, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1145, 6, 438, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1146, 6, 425, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1147, 6, 418, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1148, 6, 580, 2, 161, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1149, 6, 580, 2, 162, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1150, 6, 580, 2, 164, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1151, 6, 445, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1152, 6, 449, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1153, 6, 576, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1154, 6, 441, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1155, 6, 438, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1156, 6, 448, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1157, 6, 580, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1158, 6, 445, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1159, 6, 449, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1160, 6, 576, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1161, 6, 448, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1162, 6, 580, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1163, 6, 580, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1164, 6, 434, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1165, 6, 435, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1166, 6, 449, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1167, 6, 445, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1168, 6, 448, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1169, 6, 434, 2, 175, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1170, 6, 435, 2, 175, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1171, 6, 445, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1172, 6, 449, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1173, 6, 434, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1174, 6, 435, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1175, 6, 448, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1176, 6, 580, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1177, 6, 434, 2, 177, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1178, 6, 435, 2, 177, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1179, 6, 580, 2, 177, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1180, 6, 580, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1181, 6, 438, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1182, 6, 576, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1183, 6, 445, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1184, 6, 449, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1185, 6, 448, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1186, 6, 438, 2, 184, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1187, 6, 580, 2, 184, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1188, 6, 445, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1189, 6, 434, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1190, 6, 435, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1191, 6, 437, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1192, 6, 448, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1193, 6, 580, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1195, 6, 580, 2, 187, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1196, 6, 580, 2, 214, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1197, 6, 580, 2, 221, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1198, 6, 580, 2, 222, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1199, 6, 580, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1200, 6, 442, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1201, 6, 424, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1202, 6, 441, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1203, 6, 578, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1205, 6, 580, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1206, 6, 434, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1207, 6, 435, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1208, 6, 436, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1209, 6, 438, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1210, 6, 448, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1211, 6, 580, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1212, 6, 427, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1213, 6, 434, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1214, 6, 435, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1215, 6, 436, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1216, 6, 445, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1217, 6, 437, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1218, 6, 434, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1219, 6, 435, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1220, 6, 448, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1221, 6, 580, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1222, 6, 424, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1223, 6, 580, 2, 238, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1224, 6, 580, 2, 239, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1225, 6, 580, 2, 240, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1226, 6, 580, 2, 241, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1227, 6, 580, 2, 242, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1228, 6, 580, 2, 243, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1229, 6, 580, 2, 247, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1230, 6, 580, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1231, 6, 434, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1232, 6, 435, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1233, 6, 427, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1234, 6, 436, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1235, 6, 432, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1236, 6, 441, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1237, 6, 576, 2, 224, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1238, 6, 580, 2, 224, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1239, 6, 576, 8, 289, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1240, 6, 580, 8, 289, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1241, 6, 578, 8, 289, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1242, 6, 445, 2, 250, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1243, 6, 424, 2, 250, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1244, 6, 576, 2, 250, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1245, 6, 445, 2, 251, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1246, 6, 576, 2, 251, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1247, 6, 580, 2, 252, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1248, 6, 576, 2, 252, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1249, 6, 580, 2, 253, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1250, 6, 576, 2, 253, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1251, 6, 580, 2, 254, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1252, 6, 576, 2, 254, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1253, 6, 580, 2, 255, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1254, 6, 576, 2, 255, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1255, 6, 580, 2, 256, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1256, 6, 576, 2, 256, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1257, 6, 580, 2, 257, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1258, 6, 576, 2, 257, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1259, 6, 580, 2, 258, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1260, 6, 576, 2, 258, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1261, 6, 576, 2, 322, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1262, 6, 576, 10, 611, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1263, 6, 576, 2, 612, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1264, 6, 576, 2, 613, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1265, 6, 576, 2, 614, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1266, 6, 576, 8, 615, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1267, 6, 576, 10, 616, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1268, 6, 576, 10, 618, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1269, 6, 576, 2, 619, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1270, 6, 576, 10, 620, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1271, 6, 576, 2, 621, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1272, 6, 576, 2, 622, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1273, 6, 576, 2, 623, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1274, 6, 576, 2, 624, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1275, 6, 576, 2, 625, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1276, 6, 576, 2, 626, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1277, 6, 576, 2, 627, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1278, 6, 576, 2, 628, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1279, 6, 576, 2, 629, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1280, 6, 576, 10, 630, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1281, 6, 576, 2, 631, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1282, 6, 576, 2, 632, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1283, 6, 576, 10, 633, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1284, 6, 576, 2, 634, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1285, 6, 576, 10, 635, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1286, 6, 576, 2, 636, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1287, 6, 576, 2, 637, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1288, 6, 576, 10, 638, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1289, 6, 576, 10, 639, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1290, 6, 576, 2, 640, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1291, 6, 576, 2, 641, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1292, 6, 576, 2, 642, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1293, 6, 576, 2, 643, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1294, 6, 576, 2, 644, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1295, 6, 576, 2, 645, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1296, 6, 576, 2, 646, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1297, 6, 576, 2, 647, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1298, 6, 576, 8, 648, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1299, 6, 576, 2, 649, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1300, 6, 576, 2, 650, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1301, 6, 576, 2, 651, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1302, 6, 576, 10, 652, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1303, 6, 580, 9, 660, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1304, 6, 576, 9, 660, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1305, 6, 438, 9, 660, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1306, 6, 441, 9, 653, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1307, 6, 437, 9, 653, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1308, 6, 591, 9, 653, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1309, 6, 580, 9, 654, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1310, 6, 576, 9, 654, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1311, 6, 578, 9, 654, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1312, 6, 576, 9, 655, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1313, 6, 576, 2, 656, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1314, 6, 580, 2, 656, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1315, 6, 578, 2, 656, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1316, 6, 441, 9, 657, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1317, 6, 576, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1318, 6, 580, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1319, 6, 578, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1320, 6, 438, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1321, 6, 593, 9, 659, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1322, 6, 443, 9, 659, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1323, 6, 580, 9, 659, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1324, 6, 580, 10, 661, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1325, 6, 443, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1326, 6, 578, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1327, 6, 593, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1328, 6, 580, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1329, 6, 580, 9, 663, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1330, 6, 576, 9, 663, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1331, 6, 580, 9, 664, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1332, 6, 442, 9, 664, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1333, 6, 578, 9, 664, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1334, 6, 593, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1335, 6, 580, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1336, 6, 438, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1337, 6, 578, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1338, 6, 576, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1339, 6, 576, 2, 666, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1340, 6, 580, 2, 666, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1341, 6, 578, 2, 666, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1342, 6, 577, 2, 667, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1343, 6, 577, 2, 668, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1344, 6, 576, 8, 669, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1345, 6, 580, 8, 669, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1346, 6, 449, 8, 669, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1347, 6, 576, 8, 670, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1348, 6, 580, 8, 670, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1349, 6, 449, 8, 670, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1350, 6, 576, 2, 634, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1351, 6, 576, 4, 672, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1352, 6, 578, 9, 344, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1353, 6, 580, 9, 344, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1354, 6, 580, 2, 674, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1355, 6, 576, 2, 674, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1356, 6, 578, 2, 674, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1357, 6, 580, 2, 675, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1358, 6, 578, 2, 675, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1359, 6, 576, 2, 676, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1360, 6, 578, 2, 676, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1361, 6, 578, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1362, 6, 576, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1363, 6, 580, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1364, 6, 438, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1365, 6, 576, 2, 678, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1366, 6, 577, 2, 679, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1367, 6, 577, 9, 689, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1368, 6, 424, 2, 690, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1369, 6, 424, 2, 691, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1370, 6, 577, 2, 693, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1371, 6, 576, 2, 695, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1372, 6, 578, 2, 695, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1373, 6, 580, 2, 695, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1374, 6, 576, 2, 694, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1375, 6, 578, 2, 694, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1376, 9, 584, 2, 697, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1377, 6, 576, 2, 697, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1378, 6, 580, 2, 697, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1379, 6, 576, 9, 584, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1380, 6, 576, 9, 589, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1381, 6, 576, 10, 506, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1382, 6, 576, 10, 509, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1383, 6, 576, 9, 301, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1384, 6, 576, 9, 303, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1385, 6, 576, 9, 583, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1386, 6, 576, 9, 307, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1387, 6, 576, 9, 312, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1388, 6, 576, 9, 315, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1389, 6, 576, 9, 316, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1390, 6, 576, 9, 596, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1391, 6, 576, 9, 319, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1392, 6, 576, 9, 320, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1393, 6, 576, 9, 322, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1394, 6, 576, 9, 324, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1395, 6, 576, 9, 325, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1396, 6, 576, 9, 326, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1397, 6, 576, 9, 327, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1398, 6, 576, 9, 330, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1399, 6, 576, 9, 341, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1400, 6, 576, 9, 343, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1401, 6, 576, 9, 344, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1402, 6, 576, 9, 599, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1403, 6, 576, 9, 352, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1404, 6, 576, 9, 353, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1405, 6, 576, 9, 587, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1406, 6, 576, 9, 355, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1407, 6, 576, 9, 359, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1408, 6, 576, 9, 360, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1409, 6, 576, 9, 361, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1410, 6, 576, 9, 366, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1411, 6, 576, 9, 367, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1412, 6, 576, 9, 373, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1413, 6, 576, 2, 3, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1414, 6, 576, 2, 13, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1415, 6, 576, 2, 26, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1416, 6, 576, 2, 33, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1417, 6, 576, 2, 38, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1418, 6, 576, 2, 50, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1419, 6, 576, 2, 61, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1420, 6, 576, 2, 124, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1421, 6, 576, 2, 127, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1422, 6, 576, 2, 129, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1423, 6, 576, 2, 135, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1424, 6, 576, 2, 140, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1425, 6, 576, 2, 141, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1426, 6, 576, 2, 151, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1427, 6, 576, 2, 152, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1428, 6, 576, 2, 179, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1429, 6, 576, 2, 180, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1430, 6, 576, 2, 190, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1431, 6, 576, 2, 218, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1432, 6, 576, 2, 7, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1433, 6, 576, 2, 186, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1434, 6, 576, 2, 229, ''); + +-- Table: entity_types CREATE TABLE entity_types ( id integer PRIMARY KEY AUTOINCREMENT, entity_type_name text NOT NULL ); -INSERT INTO entity_types VALUES(1,'Technology'); -INSERT INTO entity_types VALUES(2,'App'); -INSERT INTO entity_types VALUES(3,'VM'); -INSERT INTO entity_types VALUES(4,'HW'); -INSERT INTO entity_types VALUES(5,'Plugin'); -INSERT INTO entity_types VALUES(6,'OS'); -INSERT INTO entity_types VALUES(7,'Runlib'); -INSERT INTO entity_types VALUES(8,'App Server'); -INSERT INTO entity_types VALUES(9,'Lang'); -INSERT INTO entity_types VALUES(10,'Runtime'); -INSERT INTO entity_types VALUES(11,'Storage'); -INSERT INTO entity_types VALUES(12,'Lib'); +INSERT INTO entity_types (id, entity_type_name) VALUES (1, 'Technology'); +INSERT INTO entity_types (id, entity_type_name) VALUES (2, 'App'); +INSERT INTO entity_types (id, entity_type_name) VALUES (3, 'VM'); +INSERT INTO entity_types (id, entity_type_name) VALUES (4, 'HW'); +INSERT INTO entity_types (id, entity_type_name) VALUES (5, 'Plugin'); +INSERT INTO entity_types (id, entity_type_name) VALUES (6, 'OS'); +INSERT INTO entity_types (id, entity_type_name) VALUES (7, 'Runlib'); +INSERT INTO entity_types (id, entity_type_name) VALUES (8, 'App Server'); +INSERT INTO entity_types (id, entity_type_name) VALUES (9, 'Lang'); +INSERT INTO entity_types (id, entity_type_name) VALUES (10, 'Runtime'); +INSERT INTO entity_types (id, entity_type_name) VALUES (11, 'Storage'); +INSERT INTO entity_types (id, entity_type_name) VALUES (12, 'Lib'); + +-- Table: entity_versions CREATE TABLE entity_versions ( id integer PRIMARY KEY AUTOINCREMENT, entity_id integer NOT NULL, @@ -9239,3474 +9318,3476 @@ CREATE TABLE entity_versions ( end_date date, FOREIGN KEY (entity_id) REFERENCES entities (id) ); -INSERT INTO entity_versions VALUES(1,497,'1','01/15/2002','07/14/2009'); -INSERT INTO entity_versions VALUES(2,497,'1.1','04/09/2003','10/08/2013'); -INSERT INTO entity_versions VALUES(3,497,'2','10/27/2005','07/12/2011'); -INSERT INTO entity_versions VALUES(4,497,'3','11/06/2006','07/12/2011'); -INSERT INTO entity_versions VALUES(5,497,'3.5','11/19/2007','10/10/2028'); -INSERT INTO entity_versions VALUES(6,497,'4','04/12/2010','01/12/2016'); -INSERT INTO entity_versions VALUES(7,497,'4.5','08/15/2012','01/12/2016'); -INSERT INTO entity_versions VALUES(8,497,'4.5.1','10/17/2013','01/12/2016'); -INSERT INTO entity_versions VALUES(9,497,'4.5.2','05/05/2014','04/26/2022'); -INSERT INTO entity_versions VALUES(10,497,'4.6','07/20/2015','04/26/2022'); -INSERT INTO entity_versions VALUES(11,497,'4.6.1','11/30/2015','04/26/2022'); -INSERT INTO entity_versions VALUES(12,497,'4.6.2','08/02/2016','04/26/2022'); -INSERT INTO entity_versions VALUES(13,497,'4.7','04/05/2017',' '); -INSERT INTO entity_versions VALUES(14,497,'4.7.1','10/17/2017',' '); -INSERT INTO entity_versions VALUES(15,497,'4.7.2','04/30/2018',' '); -INSERT INTO entity_versions VALUES(16,497,'4.8','09/04/2019',' '); -INSERT INTO entity_versions VALUES(17,498,' ',' ',' '); -INSERT INTO entity_versions VALUES(18,592,'1','12/01/1996',' '); -INSERT INTO entity_versions VALUES(19,592,'2','09/01/1997',' '); -INSERT INTO entity_versions VALUES(20,592,'3','11/01/2000',' '); -INSERT INTO entity_versions VALUES(21,500,' ','01/01/1996','08/31/2020'); -INSERT INTO entity_versions VALUES(22,501,'6',' ',' '); -INSERT INTO entity_versions VALUES(23,501,'7',' ',' '); -INSERT INTO entity_versions VALUES(24,501,'8',' ',' '); -INSERT INTO entity_versions VALUES(25,501,'9',' ',' '); -INSERT INTO entity_versions VALUES(26,501,'10.0.0',' ',' '); -INSERT INTO entity_versions VALUES(27,502,'5.6','06/01/2020',' '); -INSERT INTO entity_versions VALUES(28,502,'5.5','12/01/2018',' '); -INSERT INTO entity_versions VALUES(29,502,'5.4','06/01/2017',' '); -INSERT INTO entity_versions VALUES(30,502,'5.3','12/01/2015',' '); -INSERT INTO entity_versions VALUES(31,502,'5.2','12/31/2014',' '); -INSERT INTO entity_versions VALUES(32,502,'5.1','12/31/2012',' '); -INSERT INTO entity_versions VALUES(33,502,'4.2','12/31/2011',' '); -INSERT INTO entity_versions VALUES(34,502,'4.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(35,502,'3.2','12/31/2007',' '); -INSERT INTO entity_versions VALUES(36,502,'3.1','12/31/2005',' '); -INSERT INTO entity_versions VALUES(37,502,'2.2','12/31/2003',' '); -INSERT INTO entity_versions VALUES(38,502,'2.1','12/31/2001',' '); -INSERT INTO entity_versions VALUES(39,503,'20.10.8','08/03/2021',' '); -INSERT INTO entity_versions VALUES(40,503,'20.10.7','06/02/2021',' '); -INSERT INTO entity_versions VALUES(41,503,'20.10.6','04/12/2021',' '); -INSERT INTO entity_versions VALUES(42,503,'20.10.5','03/02/2021',' '); -INSERT INTO entity_versions VALUES(43,503,'20.10.4','04/26/2021',' '); -INSERT INTO entity_versions VALUES(44,503,'20.10.3','02/01/2021',' '); -INSERT INTO entity_versions VALUES(45,503,'20.10.2','01/04/2021',' '); -INSERT INTO entity_versions VALUES(46,503,'20.10.1','12/14/2020',' '); -INSERT INTO entity_versions VALUES(47,503,'20.10.0','12/08/2020',' '); -INSERT INTO entity_versions VALUES(48,504,'2','12/31/1997','12/31/1998'); -INSERT INTO entity_versions VALUES(49,504,'3','12/31/1997','12/31/1998'); -INSERT INTO entity_versions VALUES(50,504,'7.0.14.0','12/31/1997','12/31/2005'); -INSERT INTO entity_versions VALUES(51,504,'9.0.289.0','12/31/1998','12/31/2011'); -INSERT INTO entity_versions VALUES(52,504,'10.3.183.90','12/31/1999','12/31/2013'); -INSERT INTO entity_versions VALUES(53,504,'11.1.102.55','12/31/1999','12/31/2013'); -INSERT INTO entity_versions VALUES(54,504,'32.0.0.465','12/31/2001','12/31/2020'); -INSERT INTO entity_versions VALUES(55,504,'5.0.41.0','12/31/1997',' '); -INSERT INTO entity_versions VALUES(56,504,'32.0.0.465','12/31/2014','12/31/2020'); -INSERT INTO entity_versions VALUES(57,504,'29.0.0.171','12/31/2013','12/31/2018'); -INSERT INTO entity_versions VALUES(58,504,'22.0.0.209','12/31/2009','12/31/2016'); -INSERT INTO entity_versions VALUES(59,504,'10.3.183.90','12/31/2007','12/31/2013'); -INSERT INTO entity_versions VALUES(60,504,'10.1.102.64','12/31/2005','12/31/2011'); -INSERT INTO entity_versions VALUES(61,504,'9.0.289.0','12/31/2001','12/31/2011'); -INSERT INTO entity_versions VALUES(62,504,'7.0.14.0','12/31/1997','12/31/2005'); -INSERT INTO entity_versions VALUES(63,504,'3','12/31/1997','12/31/1998'); -INSERT INTO entity_versions VALUES(64,504,'4.0r12','12/31/1999',' '); -INSERT INTO entity_versions VALUES(65,504,'32.0.0.465','12/31/2020',' '); -INSERT INTO entity_versions VALUES(66,504,'4.0r12','12/31/1999',' '); -INSERT INTO entity_versions VALUES(67,504,'4.0r12','12/31/2004','12/31/2013'); -INSERT INTO entity_versions VALUES(68,504,'11.2.202.223','12/31/2004','12/31/2013'); -INSERT INTO entity_versions VALUES(69,504,'10.3.183.90','12/31/2004','12/31/2013'); -INSERT INTO entity_versions VALUES(70,505,'1','12/31/2002',' '); -INSERT INTO entity_versions VALUES(71,505,'2.3',' ',' '); -INSERT INTO entity_versions VALUES(72,506,'JDK Beta','01/01/1995',' '); -INSERT INTO entity_versions VALUES(73,506,'1.0','01/01/1996',' '); -INSERT INTO entity_versions VALUES(74,506,'1.1','02/01/1997',' '); -INSERT INTO entity_versions VALUES(75,506,'1.2','12/01/1998',' '); -INSERT INTO entity_versions VALUES(76,506,'1.3','05/01/2000',' '); -INSERT INTO entity_versions VALUES(77,506,'1.4','02/01/2002','08/31/2008'); -INSERT INTO entity_versions VALUES(78,506,'5.0','09/01/2004','11/30/2009'); -INSERT INTO entity_versions VALUES(79,506,'6','12/01/2006','04/30/2013'); -INSERT INTO entity_versions VALUES(80,506,'7','07/01/2011','04/30/2015'); -INSERT INTO entity_versions VALUES(81,506,'8','03/01/2014','12/31/2026'); -INSERT INTO entity_versions VALUES(82,506,'9','09/01/2017','03/31/2018'); -INSERT INTO entity_versions VALUES(83,506,'10','03/01/2018','09/30/2018'); -INSERT INTO entity_versions VALUES(84,506,'11','09/01/2018','12/31/2026'); -INSERT INTO entity_versions VALUES(85,506,'12','03/31/2019','09/30/2019'); -INSERT INTO entity_versions VALUES(86,506,'13','09/01/2019','03/31/2020'); -INSERT INTO entity_versions VALUES(87,506,'14','03/01/2020','09/30/2020'); -INSERT INTO entity_versions VALUES(88,506,'15','09/01/2020','03/31/2021'); -INSERT INTO entity_versions VALUES(89,506,'16','03/01/2021','09/30/2021'); -INSERT INTO entity_versions VALUES(90,506,'17','09/30/2021','12/31/2029'); -INSERT INTO entity_versions VALUES(91,506,'18','03/01/2022','09/30/2022'); -INSERT INTO entity_versions VALUES(92,506,'19','09/01/2022','03/31/2023'); -INSERT INTO entity_versions VALUES(93,506,'20','03/01/2023','09/30/2023'); -INSERT INTO entity_versions VALUES(94,506,'21','09/01/2023',' '); -INSERT INTO entity_versions VALUES(95,507,'0.10','03/01/2013','10/31/2016'); -INSERT INTO entity_versions VALUES(96,507,'0.12','02/06/2015','12/31/2016'); -INSERT INTO entity_versions VALUES(97,507,'4','09/08/2015','04/30/2018'); -INSERT INTO entity_versions VALUES(98,507,'5','10/29/2015','06/30/2016'); -INSERT INTO entity_versions VALUES(99,507,'6','04/26/2016','04/30/2019'); -INSERT INTO entity_versions VALUES(100,507,'7','10/25/2016','06/30/2017'); -INSERT INTO entity_versions VALUES(101,507,'8','05/30/2017','12/31/2019'); -INSERT INTO entity_versions VALUES(102,507,'9','10/01/2017','06/30/2018'); -INSERT INTO entity_versions VALUES(103,507,'10','04/24/2018','04/30/2021'); -INSERT INTO entity_versions VALUES(104,507,'11','10/23/2018','06/01/2019'); -INSERT INTO entity_versions VALUES(105,507,'12','04/23/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(106,507,'13','10/22/2019','06/01/2020'); -INSERT INTO entity_versions VALUES(107,507,'14','04/21/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(108,507,'15','10/20/2020','06/01/2021'); -INSERT INTO entity_versions VALUES(109,507,'16','04/20/2021','04/30/2024'); -INSERT INTO entity_versions VALUES(110,507,'17','10/19/2021','06/01/2022'); -INSERT INTO entity_versions VALUES(111,507,'18','04/19/2022','04/30/2025'); -INSERT INTO entity_versions VALUES(112,508,'1','12/13/2005',' '); -INSERT INTO entity_versions VALUES(113,508,'1.2','01/19/2007',' '); -INSERT INTO entity_versions VALUES(114,508,'2','12/07/2007',' '); -INSERT INTO entity_versions VALUES(115,508,'2.1','06/01/2008',' '); -INSERT INTO entity_versions VALUES(116,508,'2.2','11/21/2008',' '); -INSERT INTO entity_versions VALUES(117,508,'2.3','03/16/2009',' '); -INSERT INTO entity_versions VALUES(118,508,'3','08/29/2010',' '); -INSERT INTO entity_versions VALUES(119,508,'3.1','08/31/2011',' '); -INSERT INTO entity_versions VALUES(120,508,'3.2','01/20/2012',' '); -INSERT INTO entity_versions VALUES(121,508,'4','06/25/2013',' '); -INSERT INTO entity_versions VALUES(122,508,'4.1','04/08/2014',' '); -INSERT INTO entity_versions VALUES(123,508,'4.2','12/19/2014',' '); -INSERT INTO entity_versions VALUES(124,508,'5','06/30/2016',' '); -INSERT INTO entity_versions VALUES(125,508,'5.1','05/10/2017',' '); -INSERT INTO entity_versions VALUES(126,508,'5.2','04/09/2018',' '); -INSERT INTO entity_versions VALUES(127,508,'6','08/16/2019',' '); -INSERT INTO entity_versions VALUES(128,508,'6.1','12/09/2020',' '); -INSERT INTO entity_versions VALUES(129,508,'7',' ',' '); -INSERT INTO entity_versions VALUES(130,509,'53.0',' ',' '); -INSERT INTO entity_versions VALUES(131,263,'1','12/16/2001','12/30/2001'); -INSERT INTO entity_versions VALUES(132,264,'1.1','03/10/2002','01/29/2006'); -INSERT INTO entity_versions VALUES(133,264,'1.2','11/09/2003','08/06/2011'); -INSERT INTO entity_versions VALUES(134,264,'1.3','06/29/2006','03/14/2016'); -INSERT INTO entity_versions VALUES(135,264,'1.4','02/26/2010','02/08/2018'); -INSERT INTO entity_versions VALUES(136,264,'1.5','06/19/2014','01/10/2020'); -INSERT INTO entity_versions VALUES(137,264,'1.6','10/13/2015','12/31/2020'); -INSERT INTO entity_versions VALUES(138,264,'1.7','11/25/2016','12/31/2021'); -INSERT INTO entity_versions VALUES(139,264,'1.8','11/26/2017','12/31/2022'); -INSERT INTO entity_versions VALUES(140,264,'1.9','12/19/2018','06/30/2020'); -INSERT INTO entity_versions VALUES(141,264,'2','06/16/2019','06/30/2024'); -INSERT INTO entity_versions VALUES(142,264,'2.1','11/25/2019','03/31/2021'); -INSERT INTO entity_versions VALUES(143,264,'2.2','07/07/2020','06/30/2025'); -INSERT INTO entity_versions VALUES(144,264,'2.3','11/05/2020','03/31/2022'); -INSERT INTO entity_versions VALUES(145,264,'2.4','05/14/2021','06/30/2026'); -INSERT INTO entity_versions VALUES(146,264,'2.5','11/01/2021','03/31/2023'); -INSERT INTO entity_versions VALUES(147,259,'1.3','06/06/1998',' '); -INSERT INTO entity_versions VALUES(148,259,'2','04/06/2002',' '); -INSERT INTO entity_versions VALUES(149,259,'2.2','12/01/2005',' '); -INSERT INTO entity_versions VALUES(150,259,'2.4','02/21/2012',' '); -INSERT INTO entity_versions VALUES(151,609,'1',' ',' '); -INSERT INTO entity_versions VALUES(152,609,'2',' ',' '); -INSERT INTO entity_versions VALUES(153,609,'3',' ',' '); -INSERT INTO entity_versions VALUES(154,609,'4',' ',' '); -INSERT INTO entity_versions VALUES(155,609,'5',' ',' '); -INSERT INTO entity_versions VALUES(156,609,'5.1',' ',' '); -INSERT INTO entity_versions VALUES(157,609,'6',' ',' '); -INSERT INTO entity_versions VALUES(158,609,'7',' ',' '); -INSERT INTO entity_versions VALUES(159,609,'7.5',' ',' '); -INSERT INTO entity_versions VALUES(160,609,'8',' ',' '); -INSERT INTO entity_versions VALUES(161,609,'8.5',' ',' '); -INSERT INTO entity_versions VALUES(162,609,'10',' ',' '); -INSERT INTO entity_versions VALUES(163,274,' ',' ',' '); -INSERT INTO entity_versions VALUES(164,260,'3.3','03/09/2004',' '); -INSERT INTO entity_versions VALUES(165,260,'4.1','06/25/2009',' '); -INSERT INTO entity_versions VALUES(166,260,'5.5','10/10/2012',' '); -INSERT INTO entity_versions VALUES(167,260,'6.0','04/07/2017','12/31/2016'); -INSERT INTO entity_versions VALUES(168,260,'7.0','04/26/2021','03/31/2021'); -INSERT INTO entity_versions VALUES(169,260,'8.0','07/05/2018','06/30/2018'); -INSERT INTO entity_versions VALUES(170,260,'8.5','09/13/2021',' '); -INSERT INTO entity_versions VALUES(171,260,'9.0','09/10/2021',' '); -INSERT INTO entity_versions VALUES(172,260,'10.0','09/10/2021',' '); -INSERT INTO entity_versions VALUES(173,260,'10.1',' ',' '); -INSERT INTO entity_versions VALUES(174,285,'8.5','06/15/2012','06/24/2016'); -INSERT INTO entity_versions VALUES(175,280,'0.5','10/07/2012',' '); -INSERT INTO entity_versions VALUES(176,280,'0.6','02/07/2013',' '); -INSERT INTO entity_versions VALUES(177,280,'0.7','07/16/2013',' '); -INSERT INTO entity_versions VALUES(178,280,'0.8','12/19/2013',' '); -INSERT INTO entity_versions VALUES(179,280,'0.9','07/23/2014',' '); -INSERT INTO entity_versions VALUES(180,280,'1.0','08/05/2014',' '); -INSERT INTO entity_versions VALUES(181,280,'1.1','11/26/2014',' '); -INSERT INTO entity_versions VALUES(182,280,'1.2','04/17/2015',' '); -INSERT INTO entity_versions VALUES(183,280,'1.3','04/17/2015',' '); -INSERT INTO entity_versions VALUES(184,280,'1.4','07/15/2015',' '); -INSERT INTO entity_versions VALUES(185,280,'1.5','11/09/2015',' '); -INSERT INTO entity_versions VALUES(186,280,'1.6','11/07/2016',' '); -INSERT INTO entity_versions VALUES(187,280,'2.0','11/14/2016',' '); -INSERT INTO entity_versions VALUES(188,280,'2.1','06/26/2018',' '); -INSERT INTO entity_versions VALUES(189,280,'2.2','01/11/2019',' '); -INSERT INTO entity_versions VALUES(190,280,'2.3','09/09/2019',' '); -INSERT INTO entity_versions VALUES(191,280,'2.4','05/17/2021',' '); -INSERT INTO entity_versions VALUES(192,280,'3.0','01/06/2021',' '); -INSERT INTO entity_versions VALUES(193,280,'3.1','01/06/2021',' '); -INSERT INTO entity_versions VALUES(194,278,'3.1',' ',' '); -INSERT INTO entity_versions VALUES(195,278,'4.0',' ',' '); -INSERT INTO entity_versions VALUES(196,265,'6.0.1','04/15/2005',' '); -INSERT INTO entity_versions VALUES(197,265,'6.0.2','07/29/2005',' '); -INSERT INTO entity_versions VALUES(198,265,'6.1.0','07/21/2006',' '); -INSERT INTO entity_versions VALUES(199,265,'7.0.0','03/15/2009',' '); -INSERT INTO entity_versions VALUES(200,265,'8.0.0','06/17/2011',' '); -INSERT INTO entity_versions VALUES(201,265,'8.5.0','06/15/2012',' '); -INSERT INTO entity_versions VALUES(202,265,'9.0.0','03/11/2016',' '); -INSERT INTO entity_versions VALUES(203,269,'2.6','02/09/2016',' '); -INSERT INTO entity_versions VALUES(204,269,'2.9.1','04/11/2019',' '); -INSERT INTO entity_versions VALUES(205,286,'4.1','12/31/2001',' '); -INSERT INTO entity_versions VALUES(206,286,'5','07/01/2002',' '); -INSERT INTO entity_versions VALUES(207,286,'6','04/01/2006',' '); -INSERT INTO entity_versions VALUES(208,286,'6.1','03/01/2009',' '); -INSERT INTO entity_versions VALUES(209,286,'6.1.5','11/01/2009',' '); -INSERT INTO entity_versions VALUES(210,286,'7','09/01/2010',' '); -INSERT INTO entity_versions VALUES(211,286,'8','05/01/2012',' '); -INSERT INTO entity_versions VALUES(212,286,'8.5','06/01/2014',' '); -INSERT INTO entity_versions VALUES(213,286,'9','12/01/2016',' '); -INSERT INTO entity_versions VALUES(214,286,'9.5','07/01/2019',' '); -INSERT INTO entity_versions VALUES(215,284,'9','03/26/2021',' '); -INSERT INTO entity_versions VALUES(216,284,'8.5.5','02/15/2021','06/24/2016'); -INSERT INTO entity_versions VALUES(217,284,'8.5','06/15/2012',' '); -INSERT INTO entity_versions VALUES(218,284,'8','06/17/2011','04/30/2018'); -INSERT INTO entity_versions VALUES(219,284,'7','08/17/2008','04/30/2018'); -INSERT INTO entity_versions VALUES(220,284,'6.1','06/30/2006','09/30/2013'); -INSERT INTO entity_versions VALUES(221,284,'6','12/31/2004','09/30/2010'); -INSERT INTO entity_versions VALUES(222,284,'5.1','01/16/2004','09/30/2008'); -INSERT INTO entity_versions VALUES(223,284,'5','01/03/2003','09/30/2006'); -INSERT INTO entity_versions VALUES(224,284,'4','08/15/2001','04/30/2005'); -INSERT INTO entity_versions VALUES(225,284,'3.5','08/31/2000','11/30/2003'); -INSERT INTO entity_versions VALUES(226,268,'7.1.1','03/09/2012',' '); -INSERT INTO entity_versions VALUES(227,268,'7.1.0','02/16/2012',' '); -INSERT INTO entity_versions VALUES(228,268,'7.0.2','09/22/2011',' '); -INSERT INTO entity_versions VALUES(229,268,'7.0.1','08/17/2011',' '); -INSERT INTO entity_versions VALUES(230,268,'7.0.0','07/12/2011',' '); -INSERT INTO entity_versions VALUES(231,268,'6.1.0','08/16/2011',' '); -INSERT INTO entity_versions VALUES(232,268,'6.0.0','12/22/2010',' '); -INSERT INTO entity_versions VALUES(233,268,'5.1.0','05/23/2009',' '); -INSERT INTO entity_versions VALUES(234,268,'5.0.0','12/05/2008',' '); -INSERT INTO entity_versions VALUES(235,268,'4.2.3','07/18/2008',' '); -INSERT INTO entity_versions VALUES(236,268,'4.2.2','10/22/2007',' '); -INSERT INTO entity_versions VALUES(237,268,'4.2.1','07/16/2006',' '); -INSERT INTO entity_versions VALUES(238,268,'4.2.0','05/11/2007',' '); -INSERT INTO entity_versions VALUES(239,268,'4.0.5','10/18/2006',' '); -INSERT INTO entity_versions VALUES(240,268,'4.0.4','05/15/2006',' '); -INSERT INTO entity_versions VALUES(241,268,'4.0.3','10/24/2005',' '); -INSERT INTO entity_versions VALUES(242,268,'4.0.2','05/02/2005',' '); -INSERT INTO entity_versions VALUES(243,268,'4.0.1','02/16/2005',' '); -INSERT INTO entity_versions VALUES(244,268,'4.0.0','09/20/2004',' '); -INSERT INTO entity_versions VALUES(245,268,'3.2.8','03/02/2006',' '); -INSERT INTO entity_versions VALUES(246,268,'3.2.7','01/28/2005',' '); -INSERT INTO entity_versions VALUES(247,268,'3.2.6','10/14/2004',' '); -INSERT INTO entity_versions VALUES(248,268,'3.2.5','06/25/2004',' '); -INSERT INTO entity_versions VALUES(249,268,'3.2.4','06/04/2004',' '); -INSERT INTO entity_versions VALUES(250,268,'3.2.3','11/30/2003',' '); -INSERT INTO entity_versions VALUES(251,268,'3.2.2','10/18/2003',' '); -INSERT INTO entity_versions VALUES(252,268,'3.2.1','06/02/2003',' '); -INSERT INTO entity_versions VALUES(253,268,'3.0.8','06/06/2003',' '); -INSERT INTO entity_versions VALUES(254,268,'3.0.7','04/08/2003',' '); -INSERT INTO entity_versions VALUES(255,268,'3.0.6','01/26/2003',' '); -INSERT INTO entity_versions VALUES(256,268,'3.0.5','01/13/2003',' '); -INSERT INTO entity_versions VALUES(257,268,'3.0.4','11/02/2002',' '); -INSERT INTO entity_versions VALUES(258,268,'3.0.3','09/29/2002',' '); -INSERT INTO entity_versions VALUES(259,268,'3.0.2','08/26/2002',' '); -INSERT INTO entity_versions VALUES(260,268,'3.0.1','08/05/2002',' '); -INSERT INTO entity_versions VALUES(261,268,'3.0.0','05/29/2002',' '); -INSERT INTO entity_versions VALUES(262,493,' ',' ',' '); -INSERT INTO entity_versions VALUES(263,271,'4.5','01/29/2015',' '); -INSERT INTO entity_versions VALUES(264,271,'5','04/07/2015',' '); -INSERT INTO entity_versions VALUES(265,137,'2',' ',' '); -INSERT INTO entity_versions VALUES(266,137,'2.3',' ',' '); -INSERT INTO entity_versions VALUES(267,137,'3',' ',' '); -INSERT INTO entity_versions VALUES(268,137,'4',' ',' '); -INSERT INTO entity_versions VALUES(269,137,'4.5',' ',' '); -INSERT INTO entity_versions VALUES(270,137,'5',' ',' '); -INSERT INTO entity_versions VALUES(271,137,'6',' ',' '); -INSERT INTO entity_versions VALUES(272,137,'6i',' ',' '); -INSERT INTO entity_versions VALUES(273,137,'9i',' ',' '); -INSERT INTO entity_versions VALUES(274,137,'10g',' ',' '); -INSERT INTO entity_versions VALUES(275,137,'10gR2',' ',' '); -INSERT INTO entity_versions VALUES(276,137,'11g',' ',' '); -INSERT INTO entity_versions VALUES(277,137,'11gR2',' ',' '); -INSERT INTO entity_versions VALUES(278,137,'12c',' ',' '); -INSERT INTO entity_versions VALUES(279,46,'3','06/21/2004',' '); -INSERT INTO entity_versions VALUES(280,46,'3.1','06/28/2005',' '); -INSERT INTO entity_versions VALUES(281,46,'3.2','06/30/2006',' '); -INSERT INTO entity_versions VALUES(282,46,'3.3','06/29/2007',' '); -INSERT INTO entity_versions VALUES(283,46,'3.4','06/25/2008',' '); -INSERT INTO entity_versions VALUES(284,46,'3.5','06/24/2009',' '); -INSERT INTO entity_versions VALUES(285,46,'3.6','06/23/2010',' '); -INSERT INTO entity_versions VALUES(286,46,'3.7','06/22/2011',' '); -INSERT INTO entity_versions VALUES(287,46,'3.8','06/27/2012',' '); -INSERT INTO entity_versions VALUES(288,46,'4.2','06/27/2012',' '); -INSERT INTO entity_versions VALUES(289,46,'4.3','06/26/2013',' '); -INSERT INTO entity_versions VALUES(290,46,'4.4','06/25/2014',' '); -INSERT INTO entity_versions VALUES(291,46,'4.5','06/24/2015',' '); -INSERT INTO entity_versions VALUES(292,46,'4.6','06/22/2016',' '); -INSERT INTO entity_versions VALUES(293,46,'4.7','06/28/2017',' '); -INSERT INTO entity_versions VALUES(294,46,'4.8','06/27/2018',' '); -INSERT INTO entity_versions VALUES(295,46,'4.9','09/19/2018',' '); -INSERT INTO entity_versions VALUES(296,46,'4.1','12/19/2018',' '); -INSERT INTO entity_versions VALUES(297,46,'4.11','03/20/2019',' '); -INSERT INTO entity_versions VALUES(298,46,'4.12','06/19/2019',' '); -INSERT INTO entity_versions VALUES(299,46,'4.13','09/18/2019',' '); -INSERT INTO entity_versions VALUES(300,46,'4.14','12/18/2019',' '); -INSERT INTO entity_versions VALUES(301,46,'4.15','03/18/2020',' '); -INSERT INTO entity_versions VALUES(302,46,'4.16','06/17/2020',' '); -INSERT INTO entity_versions VALUES(303,46,'4.17','09/16/2020',' '); -INSERT INTO entity_versions VALUES(304,46,'4.18','12/16/2020',' '); -INSERT INTO entity_versions VALUES(305,46,'4.19','03/17/2021',' '); -INSERT INTO entity_versions VALUES(306,46,'4.2','06/16/2021',' '); -INSERT INTO entity_versions VALUES(307,46,'4.21','09/15/2021',' '); -INSERT INTO entity_versions VALUES(308,46,'4.22','12/08/2021',' '); -INSERT INTO entity_versions VALUES(309,176,'7.6','12/31/2006','12/31/2016'); -INSERT INTO entity_versions VALUES(310,176,'7.7','12/31/2008','12/31/2017'); -INSERT INTO entity_versions VALUES(311,176,'7.8','12/31/2010','12/31/2017'); -INSERT INTO entity_versions VALUES(312,176,'7.9',' ',' '); -INSERT INTO entity_versions VALUES(313,70,'7.6.1.2','07/24/2020',' '); -INSERT INTO entity_versions VALUES(314,70,'7.6.0.10','12/14/2018',' '); -INSERT INTO entity_versions VALUES(315,70,'7.5.0.11','10/28/2016',' '); -INSERT INTO entity_versions VALUES(316,70,'7.1.1.13','06/27/2014',' '); -INSERT INTO entity_versions VALUES(317,70,'6.2.8','06/10/2011',' '); -INSERT INTO entity_versions VALUES(318,70,'6.1',' ',' '); -INSERT INTO entity_versions VALUES(319,70,'5.2.9.1','07/03/2009',' '); -INSERT INTO entity_versions VALUES(320,70,'4.1.1 ','06/28/2007',' '); -INSERT INTO entity_versions VALUES(321,135,' ',' ',' '); -INSERT INTO entity_versions VALUES(322,141,' ',' ',' '); -INSERT INTO entity_versions VALUES(323,134,'2.3','12/31/1979',' '); -INSERT INTO entity_versions VALUES(324,134,'3.1.3','12/31/1983',' '); -INSERT INTO entity_versions VALUES(325,134,'4.1.4.0','12/31/1984',' '); -INSERT INTO entity_versions VALUES(326,134,'5.0.22','12/31/1985',' '); -INSERT INTO entity_versions VALUES(327,134,'6.0.17','12/31/1988',' '); -INSERT INTO entity_versions VALUES(328,134,'6.2.0',' ',' '); -INSERT INTO entity_versions VALUES(329,134,'7.0.12','06/30/1992',' '); -INSERT INTO entity_versions VALUES(330,134,'7.1.0','05/31/1994',' '); -INSERT INTO entity_versions VALUES(331,134,'7.2.0','05/31/1995',' '); -INSERT INTO entity_versions VALUES(332,134,'7.3.0','02/28/1996',' '); -INSERT INTO entity_versions VALUES(333,134,'8.0.3','06/30/1997',' '); -INSERT INTO entity_versions VALUES(334,134,'8.1.5.0','12/31/1998','08/31/2000'); -INSERT INTO entity_versions VALUES(335,134,'9.0.1.0','12/31/2001','12/31/2003'); -INSERT INTO entity_versions VALUES(336,134,'9.2.0.1','12/31/2002','04/30/2007'); -INSERT INTO entity_versions VALUES(337,134,'10.1.0.2','12/31/2003','02/28/2006'); -INSERT INTO entity_versions VALUES(338,134,'10.2.0.1','07/31/2005','04/30/2010'); -INSERT INTO entity_versions VALUES(339,134,'11.1.0.6','09/30/2007','09/30/2008'); -INSERT INTO entity_versions VALUES(340,134,'11.2.0.1','09/30/2009','08/31/2013'); -INSERT INTO entity_versions VALUES(341,134,'12.1.0.1','07/31/2013','07/31/2014'); -INSERT INTO entity_versions VALUES(342,134,'12.2.0.1','09/30/2016',' '); -INSERT INTO entity_versions VALUES(343,134,'12.2.0.2','02/28/2018',' '); -INSERT INTO entity_versions VALUES(344,134,'12.2.0.3','02/28/2019',' '); -INSERT INTO entity_versions VALUES(345,134,'21.1','12/31/2020',' '); -INSERT INTO entity_versions VALUES(346,182,'1','12/31/1993',' '); -INSERT INTO entity_versions VALUES(347,182,'2','12/31/1995',' '); -INSERT INTO entity_versions VALUES(348,182,'3','12/31/1997',' '); -INSERT INTO entity_versions VALUES(349,182,'98','12/31/1998',' '); -INSERT INTO entity_versions VALUES(350,182,'99','12/31/1999',' '); -INSERT INTO entity_versions VALUES(351,182,'6','12/31/2000',' '); -INSERT INTO entity_versions VALUES(352,182,'7','12/31/2001',' '); -INSERT INTO entity_versions VALUES(353,182,'7.5','12/31/2002',' '); -INSERT INTO entity_versions VALUES(354,182,'7.7','12/31/2004',' '); -INSERT INTO entity_versions VALUES(355,182,'7.8','12/31/2005',' '); -INSERT INTO entity_versions VALUES(356,182,'8','12/31/2007',' '); -INSERT INTO entity_versions VALUES(357,182,'8.1','12/31/2008',' '); -INSERT INTO entity_versions VALUES(358,182,'8.2','12/31/2011',' '); -INSERT INTO entity_versions VALUES(359,182,'15','05/11/2015',' '); -INSERT INTO entity_versions VALUES(360,182,'16','04/29/2016',' '); -INSERT INTO entity_versions VALUES(361,182,'17','07/31/2017',' '); -INSERT INTO entity_versions VALUES(362,182,'18','01/23/2018',' '); -INSERT INTO entity_versions VALUES(363,182,'19','01/21/2019',' '); -INSERT INTO entity_versions VALUES(364,182,'20','01/21/2020',' '); -INSERT INTO entity_versions VALUES(365,126,'1','08/31/1998',' '); -INSERT INTO entity_versions VALUES(366,126,'1.1','12/31/1998',' '); -INSERT INTO entity_versions VALUES(367,126,'1.2','02/28/1999',' '); -INSERT INTO entity_versions VALUES(368,126,'2','08/31/2000',' '); -INSERT INTO entity_versions VALUES(369,126,'2.1','06/30/2002',' '); -INSERT INTO entity_versions VALUES(370,126,'2.2','12/31/2003',' '); -INSERT INTO entity_versions VALUES(371,126,'2.3','06/30/2005',' '); -INSERT INTO entity_versions VALUES(372,126,'2.4','10/31/2007',' '); -INSERT INTO entity_versions VALUES(373,126,'2.5','04/30/2021',' '); -INSERT INTO entity_versions VALUES(374,77,'1.1','08/31/2009',' '); -INSERT INTO entity_versions VALUES(375,77,'2.1','04/30/2011',' '); -INSERT INTO entity_versions VALUES(376,77,'2.2','05/31/2011',' '); -INSERT INTO entity_versions VALUES(377,77,'3.1','07/12/2021',' '); -INSERT INTO entity_versions VALUES(378,77,'3.2','12/31/2012',' '); -INSERT INTO entity_versions VALUES(379,77,'4.1','01/31/2014',' '); -INSERT INTO entity_versions VALUES(380,77,'4.2','02/28/2014',' '); -INSERT INTO entity_versions VALUES(381,77,'5.1','01/31/2015',' '); -INSERT INTO entity_versions VALUES(382,77,'6.1','10/31/2017',' '); -INSERT INTO entity_versions VALUES(383,77,'6.2','04/30/2019',' '); -INSERT INTO entity_versions VALUES(384,77,'6.3','08/30/2019',' '); -INSERT INTO entity_versions VALUES(385,23,'10.7',' ',' '); -INSERT INTO entity_versions VALUES(386,45,'8.3','04/05/2017',' '); -INSERT INTO entity_versions VALUES(387,45,'8.2','10/05/2016',' '); -INSERT INTO entity_versions VALUES(388,45,'8.1','04/20/2016',' '); -INSERT INTO entity_versions VALUES(389,45,'8','11/19/2015',' '); -INSERT INTO entity_versions VALUES(390,45,'7',' ',' '); -INSERT INTO entity_versions VALUES(391,45,'6','02/13/2008',' '); -INSERT INTO entity_versions VALUES(392,45,'5','01/15/2007',' '); -INSERT INTO entity_versions VALUES(393,45,'4','06/15/2002',' '); -INSERT INTO entity_versions VALUES(394,45,'3','09/15/2001',' '); -INSERT INTO entity_versions VALUES(395,45,'2',' ',' '); -INSERT INTO entity_versions VALUES(396,45,'1','01/15/2001',' '); -INSERT INTO entity_versions VALUES(397,220,'4.4','12/31/2002',' '); -INSERT INTO entity_versions VALUES(398,220,'4.5.1','09/30/2003',' '); -INSERT INTO entity_versions VALUES(399,220,'4.6','07/31/2005',' '); -INSERT INTO entity_versions VALUES(400,220,'5','12/31/2007',' '); -INSERT INTO entity_versions VALUES(401,220,'5.1','06/30/2009',' '); -INSERT INTO entity_versions VALUES(402,90,'2.285','03/23/2021',' '); -INSERT INTO entity_versions VALUES(403,90,'2.286','03/30/2021',' '); -INSERT INTO entity_versions VALUES(404,90,'2.287','04/07/2021',' '); -INSERT INTO entity_versions VALUES(405,90,'2.288','04/11/2021',' '); -INSERT INTO entity_versions VALUES(406,90,'2.289','04/20/2021',' '); -INSERT INTO entity_versions VALUES(407,90,'2.29','04/28/2021',' '); -INSERT INTO entity_versions VALUES(408,90,'2.291','05/04/2021',' '); -INSERT INTO entity_versions VALUES(409,90,'2.292','05/11/2021',' '); -INSERT INTO entity_versions VALUES(410,90,'2.293','05/12/2021',' '); -INSERT INTO entity_versions VALUES(411,90,'2.294','05/25/2021',' '); -INSERT INTO entity_versions VALUES(412,90,'2.295','05/25/2021',' '); -INSERT INTO entity_versions VALUES(413,90,'2.296','06/01/2021',' '); -INSERT INTO entity_versions VALUES(414,90,'2.297','06/08/2021',' '); -INSERT INTO entity_versions VALUES(415,90,'2.298','06/15/2021',' '); -INSERT INTO entity_versions VALUES(416,90,'2.299','06/22/2021',' '); -INSERT INTO entity_versions VALUES(417,90,'2.3','06/30/2021',' '); -INSERT INTO entity_versions VALUES(418,90,'2.301','07/06/2021',' '); -INSERT INTO entity_versions VALUES(419,90,'2.302','07/13/2021',' '); -INSERT INTO entity_versions VALUES(420,90,'2.303','07/20/2021',' '); -INSERT INTO entity_versions VALUES(421,90,'2.304','07/27/2021',' '); -INSERT INTO entity_versions VALUES(422,90,'2.305','08/03/2021',' '); -INSERT INTO entity_versions VALUES(423,90,'2.306','08/10/2021',' '); -INSERT INTO entity_versions VALUES(424,90,'2.307','08/17/2021',' '); -INSERT INTO entity_versions VALUES(425,90,'2.308','08/24/2021',' '); -INSERT INTO entity_versions VALUES(426,90,'2.309','08/30/2021',' '); -INSERT INTO entity_versions VALUES(427,90,'2.31','09/07/2021',' '); -INSERT INTO entity_versions VALUES(428,90,'2.311','09/09/2021',' '); -INSERT INTO entity_versions VALUES(429,90,'2.312','09/14/2021',' '); -INSERT INTO entity_versions VALUES(430,90,'2.313','09/21/2021',' '); -INSERT INTO entity_versions VALUES(431,90,'2.314','09/28/2021',' '); -INSERT INTO entity_versions VALUES(432,97,'10','05/31/2019',' '); -INSERT INTO entity_versions VALUES(433,97,'9','12/31/2017',' '); -INSERT INTO entity_versions VALUES(434,97,'8','12/31/2015',' '); -INSERT INTO entity_versions VALUES(435,97,'7','12/31/2013',' '); -INSERT INTO entity_versions VALUES(436,97,'6','12/31/2012',' '); -INSERT INTO entity_versions VALUES(437,97,'5','12/31/2011',' '); -INSERT INTO entity_versions VALUES(438,97,'4.2','12/31/2010',' '); -INSERT INTO entity_versions VALUES(439,97,'4.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(440,97,'4','12/31/2008',' '); -INSERT INTO entity_versions VALUES(441,97,'3.2','12/31/2007',' '); -INSERT INTO entity_versions VALUES(442,97,'3.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(443,97,'3','12/31/2005',' '); -INSERT INTO entity_versions VALUES(444,97,'2','12/31/2004',' '); -INSERT INTO entity_versions VALUES(445,97,'1','12/31/2001',' '); -INSERT INTO entity_versions VALUES(446,98,'1.6.12','09/28/2021',' '); -INSERT INTO entity_versions VALUES(447,98,'1.6.11','09/27/2021',' '); -INSERT INTO entity_versions VALUES(448,98,'1.6.10','07/25/2021',' '); -INSERT INTO entity_versions VALUES(449,98,'1.6.9','11/20/2020',' '); -INSERT INTO entity_versions VALUES(450,98,'1.6.8','10/26/2020',' '); -INSERT INTO entity_versions VALUES(451,98,'1.6.7','09/04/2020',' '); -INSERT INTO entity_versions VALUES(452,98,'1.6.6','05/12/2020',' '); -INSERT INTO entity_versions VALUES(453,98,'1.6.5','04/13/2020',' '); -INSERT INTO entity_versions VALUES(454,98,'1.6.4','04/12/2020',' '); -INSERT INTO entity_versions VALUES(455,98,'1.6.3','03/28/2020',' '); -INSERT INTO entity_versions VALUES(456,98,'1.6.2','03/23/2020',' '); -INSERT INTO entity_versions VALUES(457,98,'1.6.1','03/16/2020',' '); -INSERT INTO entity_versions VALUES(458,98,'1.6.0','03/08/2020',' '); -INSERT INTO entity_versions VALUES(459,98,'1.5.22','02/28/2020',' '); -INSERT INTO entity_versions VALUES(460,98,'1.5.21','01/21/2020',' '); -INSERT INTO entity_versions VALUES(461,98,'1.5.20','11/11/2019',' '); -INSERT INTO entity_versions VALUES(462,98,'1.5.19','09/30/2019',' '); -INSERT INTO entity_versions VALUES(463,98,'1.5.18','09/17/2019',' '); -INSERT INTO entity_versions VALUES(464,98,'1.5.17','08/29/2019',' '); -INSERT INTO entity_versions VALUES(465,98,'1.5.16','05/24/2019',' '); -INSERT INTO entity_versions VALUES(466,98,'1.5.15','05/20/2019',' '); -INSERT INTO entity_versions VALUES(467,98,'1.5.14','04/27/2019',' '); -INSERT INTO entity_versions VALUES(468,98,'1.5.13','04/15/2019',' '); -INSERT INTO entity_versions VALUES(469,98,'1.5.12','11/03/2018',' '); -INSERT INTO entity_versions VALUES(470,98,'1.5.11','10/10/2018',' '); -INSERT INTO entity_versions VALUES(471,98,'1.5.10','08/10/2018',' '); -INSERT INTO entity_versions VALUES(472,98,'1.5.9','07/07/2018',' '); -INSERT INTO entity_versions VALUES(473,98,'1.5.8','05/25/2018',' '); -INSERT INTO entity_versions VALUES(474,98,'1.5.7','03/28/2018',' '); -INSERT INTO entity_versions VALUES(475,98,'1.5.6','02/27/2018',' '); -INSERT INTO entity_versions VALUES(476,98,'1.5.5','02/12/2018',' '); -INSERT INTO entity_versions VALUES(477,98,'1.5.4','12/20/2017',' '); -INSERT INTO entity_versions VALUES(478,98,'1.5.3','11/04/2017',' '); -INSERT INTO entity_versions VALUES(479,98,'1.5.2','09/30/2017',' '); -INSERT INTO entity_versions VALUES(480,98,'1.5.1','08/24/2017',' '); -INSERT INTO entity_versions VALUES(481,98,'1.5.0','07/21/2017',' '); -INSERT INTO entity_versions VALUES(482,98,'1.4.39','07/04/2017',' '); -INSERT INTO entity_versions VALUES(483,98,'1.4.38','06/24/2017',' '); -INSERT INTO entity_versions VALUES(484,98,'1.4.37','06/04/2017',' '); -INSERT INTO entity_versions VALUES(485,98,'1.4.36','03/19/2017',' '); -INSERT INTO entity_versions VALUES(486,98,'1.4.35','02/26/2017',' '); -INSERT INTO entity_versions VALUES(487,98,'1.4.34','01/07/2017',' '); -INSERT INTO entity_versions VALUES(488,98,'1.4.33','10/31/2016',' '); -INSERT INTO entity_versions VALUES(489,98,'1.4.32','10/12/2016',' '); -INSERT INTO entity_versions VALUES(490,98,'1.4.31','08/19/2016',' '); -INSERT INTO entity_versions VALUES(491,98,'1.4.30','08/11/2016',' '); -INSERT INTO entity_versions VALUES(492,98,'1.4.29','07/13/2016',' '); -INSERT INTO entity_versions VALUES(493,98,'1.4.28','07/01/2016',' '); -INSERT INTO entity_versions VALUES(494,98,'1.4.27','06/24/2016',' '); -INSERT INTO entity_versions VALUES(495,98,'1.4.26','06/17/2016',' '); -INSERT INTO entity_versions VALUES(496,98,'1.4.25','11/19/2015',' '); -INSERT INTO entity_versions VALUES(497,98,'1.4.24','04/24/2015',' '); -INSERT INTO entity_versions VALUES(498,98,'1.4.23','04/19/2015',' '); -INSERT INTO entity_versions VALUES(499,98,'1.4.22','12/31/2014',' '); -INSERT INTO entity_versions VALUES(500,98,'1.4.21','10/12/2014',' '); -INSERT INTO entity_versions VALUES(501,98,'1.4.20','05/11/2014',' '); -INSERT INTO entity_versions VALUES(502,98,'1.4.19','05/01/2014',' '); -INSERT INTO entity_versions VALUES(503,98,'1.4.18','04/17/2014',' '); -INSERT INTO entity_versions VALUES(504,98,'1.4.17','12/20/2013',' '); -INSERT INTO entity_versions VALUES(505,98,'1.4.16','12/09/2013',' '); -INSERT INTO entity_versions VALUES(506,98,'1.4.15','09/03/2012',' '); -INSERT INTO entity_versions VALUES(507,98,'1.4.14','07/30/2012',' '); -INSERT INTO entity_versions VALUES(508,98,'1.4.13','02/02/2012',' '); -INSERT INTO entity_versions VALUES(509,98,'1.4.12','02/01/2012',' '); -INSERT INTO entity_versions VALUES(510,98,'1.4.11','01/16/2012',' '); -INSERT INTO entity_versions VALUES(511,98,'1.4.10','11/09/2011',' '); -INSERT INTO entity_versions VALUES(512,98,'1.4.9','10/18/2011',' '); -INSERT INTO entity_versions VALUES(513,98,'1.4.8','10/04/2011',' '); -INSERT INTO entity_versions VALUES(514,98,'1.4.7','08/16/2011',' '); -INSERT INTO entity_versions VALUES(515,98,'1.4.6','07/15/2011',' '); -INSERT INTO entity_versions VALUES(516,98,'1.4.5','04/03/2010',' '); -INSERT INTO entity_versions VALUES(517,98,'1.4.4','11/26/2009',' '); -INSERT INTO entity_versions VALUES(518,98,'1.4.3','11/07/2009',' '); -INSERT INTO entity_versions VALUES(519,98,'1.4.2','10/11/2009',' '); -INSERT INTO entity_versions VALUES(520,98,'1.4.1','08/29/2009',' '); -INSERT INTO entity_versions VALUES(521,98,'1.4.0','07/09/2009',' '); -INSERT INTO entity_versions VALUES(522,581,'1','12/31/1989',' '); -INSERT INTO entity_versions VALUES(523,581,'1.1','12/31/1990',' '); -INSERT INTO entity_versions VALUES(524,581,'4.2A','12/31/1992',' '); -INSERT INTO entity_versions VALUES(525,581,'4.2B','12/31/1993',' '); -INSERT INTO entity_versions VALUES(526,581,'4.21','12/31/1993',' '); -INSERT INTO entity_versions VALUES(527,581,'6','12/31/1995',' '); -INSERT INTO entity_versions VALUES(528,581,'6.5','12/31/1996',' '); -INSERT INTO entity_versions VALUES(529,581,'7','12/31/1998',' '); -INSERT INTO entity_versions VALUES(530,581,'8','12/31/2000','04/08/2008'); -INSERT INTO entity_versions VALUES(531,581,'9','01/14/2006','04/12/2011'); -INSERT INTO entity_versions VALUES(532,581,'10','11/06/2008','07/08/2014'); -INSERT INTO entity_versions VALUES(533,581,'10.25','07/02/1905',' '); -INSERT INTO entity_versions VALUES(534,581,'10.5','07/20/2010','07/08/2014'); -INSERT INTO entity_versions VALUES(535,581,'11','05/20/2012','07/11/2017'); -INSERT INTO entity_versions VALUES(536,581,'12','06/05/2014','07/09/2019'); -INSERT INTO entity_versions VALUES(537,581,'13','06/01/2016','07/13/2021'); -INSERT INTO entity_versions VALUES(538,581,'14','09/29/2017','10/11/2022'); -INSERT INTO entity_versions VALUES(539,581,'15','11/04/2019','01/07/2025'); -INSERT INTO entity_versions VALUES(540,116,'4.4','12/31/2020',' '); -INSERT INTO entity_versions VALUES(541,116,'4.2','12/31/2019',' '); -INSERT INTO entity_versions VALUES(542,116,'4','12/31/2018',' '); -INSERT INTO entity_versions VALUES(543,116,'3.6','12/31/2017',' '); -INSERT INTO entity_versions VALUES(544,116,'3.4','12/31/2016',' '); -INSERT INTO entity_versions VALUES(545,116,'3.2','12/31/2015',' '); -INSERT INTO entity_versions VALUES(546,116,'3','12/31/2015',' '); -INSERT INTO entity_versions VALUES(547,116,'2.6','12/31/2014',' '); -INSERT INTO entity_versions VALUES(548,122,'3.19','12/31/1996',' '); -INSERT INTO entity_versions VALUES(549,122,'3.2','01/31/1997',' '); -INSERT INTO entity_versions VALUES(550,122,'3.21','12/31/1998',' '); -INSERT INTO entity_versions VALUES(551,122,'3.22','12/31/1998',' '); -INSERT INTO entity_versions VALUES(552,122,'3.23','06/30/2000',' '); -INSERT INTO entity_versions VALUES(553,122,'4','08/30/2002',' '); -INSERT INTO entity_versions VALUES(554,122,'4.1','06/30/2004',' '); -INSERT INTO entity_versions VALUES(555,122,'5','03/31/2005',' '); -INSERT INTO entity_versions VALUES(556,122,'5.1','11/27/2008',' '); -INSERT INTO entity_versions VALUES(557,122,'5.5','12/31/2010',' '); -INSERT INTO entity_versions VALUES(558,122,'6','05/22/2009',' '); -INSERT INTO entity_versions VALUES(559,122,'5.6','02/28/2013',' '); -INSERT INTO entity_versions VALUES(560,122,'5.7','10/31/2015',' '); -INSERT INTO entity_versions VALUES(561,122,'8','04/30/2018',' '); -INSERT INTO entity_versions VALUES(562,123,'4.3.5','09/30/2021',' '); -INSERT INTO entity_versions VALUES(563,123,'4.3.4','09/22/2021',' '); -INSERT INTO entity_versions VALUES(564,123,'4.3.3','08/09/2021',' '); -INSERT INTO entity_versions VALUES(565,123,'4.3.2','07/01/2021',' '); -INSERT INTO entity_versions VALUES(566,123,'4.3.1','06/21/2021',' '); -INSERT INTO entity_versions VALUES(567,123,'4.2.11','09/06/2021',' '); -INSERT INTO entity_versions VALUES(568,123,'4.2.10','08/23/2020',' '); -INSERT INTO entity_versions VALUES(569,123,'4.2.9','07/02/2021',' '); -INSERT INTO entity_versions VALUES(570,123,'4.2.8','06/18/2021',' '); -INSERT INTO entity_versions VALUES(571,123,'4.2.7','05/27/2021',' '); -INSERT INTO entity_versions VALUES(572,123,'4.2.6','05/05/2021',' '); -INSERT INTO entity_versions VALUES(573,245,'0.7','05/27/2003',' '); -INSERT INTO entity_versions VALUES(574,245,'1','01/03/2004',' '); -INSERT INTO entity_versions VALUES(575,245,'1.2','05/22/2004',' '); -INSERT INTO entity_versions VALUES(576,245,'1.5','02/17/2005',' '); -INSERT INTO entity_versions VALUES(577,245,'2','12/31/2005',' '); -INSERT INTO entity_versions VALUES(578,245,'2.1','01/22/2007',' '); -INSERT INTO entity_versions VALUES(579,245,'2.2','05/16/2007',' '); -INSERT INTO entity_versions VALUES(580,245,'2.3','09/24/2007',' '); -INSERT INTO entity_versions VALUES(581,245,'2.5','03/29/2008',' '); -INSERT INTO entity_versions VALUES(582,245,'2.6','07/15/2008',' '); -INSERT INTO entity_versions VALUES(583,245,'2.7','12/11/2008',' '); -INSERT INTO entity_versions VALUES(584,245,'2.8','06/10/2009',' '); -INSERT INTO entity_versions VALUES(585,245,'2.9','12/19/2009',' '); -INSERT INTO entity_versions VALUES(586,245,'3','06/17/2010',' '); -INSERT INTO entity_versions VALUES(587,245,'3.1','02/23/2011',' '); -INSERT INTO entity_versions VALUES(588,245,'3.2','07/04/2011',' '); -INSERT INTO entity_versions VALUES(589,245,'3.3','12/12/2011',' '); -INSERT INTO entity_versions VALUES(590,245,'3.4','06/13/2012',' '); -INSERT INTO entity_versions VALUES(591,245,'3.5','12/11/2012',' '); -INSERT INTO entity_versions VALUES(592,245,'3.6','08/01/2013',' '); -INSERT INTO entity_versions VALUES(593,245,'3.7','10/24/2013',' '); -INSERT INTO entity_versions VALUES(594,245,'3.8','12/12/2013',' '); -INSERT INTO entity_versions VALUES(595,245,'3.9','04/16/2014',' '); -INSERT INTO entity_versions VALUES(596,245,'4','09/04/2014',' '); -INSERT INTO entity_versions VALUES(597,245,'4.1','12/18/2014',' '); -INSERT INTO entity_versions VALUES(598,245,'4.2','04/23/2015',' '); -INSERT INTO entity_versions VALUES(599,245,'4.3','08/18/2015',' '); -INSERT INTO entity_versions VALUES(600,245,'4.4','12/08/2015',' '); -INSERT INTO entity_versions VALUES(601,245,'4.5','04/12/2016',' '); -INSERT INTO entity_versions VALUES(602,245,'4.6','08/16/2016',' '); -INSERT INTO entity_versions VALUES(603,245,'4.7','12/06/2016',' '); -INSERT INTO entity_versions VALUES(604,245,'4.8','06/08/2017',' '); -INSERT INTO entity_versions VALUES(605,245,'4.9','11/16/2017',' '); -INSERT INTO entity_versions VALUES(606,245,'5','12/06/2018',' '); -INSERT INTO entity_versions VALUES(607,245,'5.1','02/21/2019',' '); -INSERT INTO entity_versions VALUES(608,245,'5.2','05/07/2019',' '); -INSERT INTO entity_versions VALUES(609,245,'5.3','11/12/2019',' '); -INSERT INTO entity_versions VALUES(610,245,'5.4','03/31/2020',' '); -INSERT INTO entity_versions VALUES(611,245,'5.5','08/11/2020',' '); -INSERT INTO entity_versions VALUES(612,245,'5.6','12/08/2020',' '); -INSERT INTO entity_versions VALUES(613,245,'5.7','03/09/2021',' '); -INSERT INTO entity_versions VALUES(614,245,'5.8','07/20/2021',' '); -INSERT INTO entity_versions VALUES(615,258,'3.37.0',' ',' '); -INSERT INTO entity_versions VALUES(616,258,'3.36.0','06/18/2021',' '); -INSERT INTO entity_versions VALUES(617,258,'3.35.5','04/19/2021',' '); -INSERT INTO entity_versions VALUES(618,258,'3.35.4','04/02/2021',' '); -INSERT INTO entity_versions VALUES(619,258,'3.35.3','03/26/2021',' '); -INSERT INTO entity_versions VALUES(620,258,'3.35.2','03/17/2021',' '); -INSERT INTO entity_versions VALUES(621,258,'3.35.1','03/15/2021',' '); -INSERT INTO entity_versions VALUES(622,258,'3.35.0','03/12/2021',' '); -INSERT INTO entity_versions VALUES(623,258,'3.34.1','01/20/2021',' '); -INSERT INTO entity_versions VALUES(624,258,'3.34.0','12/01/2020',' '); -INSERT INTO entity_versions VALUES(625,258,'3.33.0','08/14/2020',' '); -INSERT INTO entity_versions VALUES(626,258,'3.32.3','06/18/2020',' '); -INSERT INTO entity_versions VALUES(627,258,'3.32.2','06/04/2020',' '); -INSERT INTO entity_versions VALUES(628,258,'3.32.1','05/25/2020',' '); -INSERT INTO entity_versions VALUES(629,258,'3.32.0','05/22/2020',' '); -INSERT INTO entity_versions VALUES(630,258,'3.31.1','01/27/2020',' '); -INSERT INTO entity_versions VALUES(631,258,'3.31.0','01/22/2020',' '); -INSERT INTO entity_versions VALUES(632,258,'3.30.1','10/10/2019',' '); -INSERT INTO entity_versions VALUES(633,258,'3.30.0','10/04/2019',' '); -INSERT INTO entity_versions VALUES(634,258,'3.29.0','07/10/2019',' '); -INSERT INTO entity_versions VALUES(635,258,'3.28.0','04/16/2019',' '); -INSERT INTO entity_versions VALUES(636,258,'3.27.2','02/25/2019',' '); -INSERT INTO entity_versions VALUES(637,258,'3.27.1','02/08/2019',' '); -INSERT INTO entity_versions VALUES(638,258,'3.27.0','02/07/2019',' '); -INSERT INTO entity_versions VALUES(639,258,'3.26.0','12/01/2018',' '); -INSERT INTO entity_versions VALUES(640,258,'3.25.3','11/05/2018',' '); -INSERT INTO entity_versions VALUES(641,258,'3.25.2','09/25/2018',' '); -INSERT INTO entity_versions VALUES(642,258,'3.25.1','09/18/2018',' '); -INSERT INTO entity_versions VALUES(643,258,'3.25.0','09/15/2018',' '); -INSERT INTO entity_versions VALUES(644,258,'3.24.0','06/04/2018',' '); -INSERT INTO entity_versions VALUES(645,258,'3.23.1','04/10/2018',' '); -INSERT INTO entity_versions VALUES(646,258,'3.23.0','04/02/2018',' '); -INSERT INTO entity_versions VALUES(647,258,'3.22.0','01/22/2018',' '); -INSERT INTO entity_versions VALUES(648,258,'3.21.0','10/24/2017',' '); -INSERT INTO entity_versions VALUES(649,258,'3.20.1','08/24/2017',' '); -INSERT INTO entity_versions VALUES(650,258,'3.20.0','08/01/2017',' '); -INSERT INTO entity_versions VALUES(651,258,'3.18.2','06/17/2017',' '); -INSERT INTO entity_versions VALUES(652,258,'3.18.1','06/16/2017',' '); -INSERT INTO entity_versions VALUES(653,258,'3.19.3','06/08/2017',' '); -INSERT INTO entity_versions VALUES(654,258,'3.19.2','05/25/2017',' '); -INSERT INTO entity_versions VALUES(655,258,'3.19.1','05/24/2017',' '); -INSERT INTO entity_versions VALUES(656,258,'3.19.0','05/22/2017',' '); -INSERT INTO entity_versions VALUES(657,258,'3.18.0','03/28/2017',' '); -INSERT INTO entity_versions VALUES(658,258,'3.17.0','02/13/2017',' '); -INSERT INTO entity_versions VALUES(659,258,'3.16.2','01/06/2017',' '); -INSERT INTO entity_versions VALUES(660,258,'3.16.1','01/03/2017',' '); -INSERT INTO entity_versions VALUES(661,258,'3.16.0','01/02/2017',' '); -INSERT INTO entity_versions VALUES(662,258,'3.15.2','11/28/2016',' '); -INSERT INTO entity_versions VALUES(663,258,'3.15.1','11/04/2016',' '); -INSERT INTO entity_versions VALUES(664,258,'3.15.0','10/14/2016',' '); -INSERT INTO entity_versions VALUES(665,258,'3.14.2','09/12/2016',' '); -INSERT INTO entity_versions VALUES(666,258,'3.14.1','08/11/2016',' '); -INSERT INTO entity_versions VALUES(667,258,'3.14','08/08/2016',' '); -INSERT INTO entity_versions VALUES(668,258,'3.13.0','05/18/2016',' '); -INSERT INTO entity_versions VALUES(669,258,'3.12.2','04/18/2016',' '); -INSERT INTO entity_versions VALUES(670,258,'3.12.1','04/08/2016',' '); -INSERT INTO entity_versions VALUES(671,258,'3.9.3','03/31/2016',' '); -INSERT INTO entity_versions VALUES(672,258,'3.12.0','03/29/2016',' '); -INSERT INTO entity_versions VALUES(673,258,'3.11.1','03/03/2016',' '); -INSERT INTO entity_versions VALUES(674,258,'3.11.0','02/15/2016',' '); -INSERT INTO entity_versions VALUES(675,258,'3.10.2','01/20/2016',' '); -INSERT INTO entity_versions VALUES(676,258,'3.10.1','01/14/2016',' '); -INSERT INTO entity_versions VALUES(677,258,'3.10.0','01/06/2016',' '); -INSERT INTO entity_versions VALUES(678,258,'3.9.2','11/02/2015',' '); -INSERT INTO entity_versions VALUES(679,258,'3.9.1','10/16/2015',' '); -INSERT INTO entity_versions VALUES(680,258,'3.9.0','10/14/2015',' '); -INSERT INTO entity_versions VALUES(681,258,'3.8.11.1','07/29/2015',' '); -INSERT INTO entity_versions VALUES(682,258,'3.8.11','07/27/2015',' '); -INSERT INTO entity_versions VALUES(683,258,'3.8.10.2','05/20/2015',' '); -INSERT INTO entity_versions VALUES(684,258,'3.8.10.1','05/09/2015',' '); -INSERT INTO entity_versions VALUES(685,258,'3.8.10','05/07/2015',' '); -INSERT INTO entity_versions VALUES(686,258,'3.8.9','04/08/2015',' '); -INSERT INTO entity_versions VALUES(687,258,'3.8.8.3','02/25/2015',' '); -INSERT INTO entity_versions VALUES(688,258,'3.8.8.2','01/30/2015',' '); -INSERT INTO entity_versions VALUES(689,258,'3.8.8.1','01/20/2015',' '); -INSERT INTO entity_versions VALUES(690,258,'3.8.8','01/16/2015',' '); -INSERT INTO entity_versions VALUES(691,258,'3.8.7.4','12/09/2014',' '); -INSERT INTO entity_versions VALUES(692,258,'3.8.7.3','12/05/2014',' '); -INSERT INTO entity_versions VALUES(693,258,'3.8.7.2','11/18/2014',' '); -INSERT INTO entity_versions VALUES(694,258,'3.8.7.1','10/29/2014',' '); -INSERT INTO entity_versions VALUES(695,258,'3.8.6.1','10/22/2014',' '); -INSERT INTO entity_versions VALUES(696,258,'3.8.7','10/17/2014',' '); -INSERT INTO entity_versions VALUES(697,258,'3.8.6','08/15/2014',' '); -INSERT INTO entity_versions VALUES(698,258,'3.8.5','06/04/2014',' '); -INSERT INTO entity_versions VALUES(699,258,'3.8.4.3','04/03/2014',' '); -INSERT INTO entity_versions VALUES(700,258,'3.8.4.2','03/26/2014',' '); -INSERT INTO entity_versions VALUES(701,258,'3.8.4.1','03/11/2014',' '); -INSERT INTO entity_versions VALUES(702,258,'3.8.4','03/10/2014',' '); -INSERT INTO entity_versions VALUES(703,258,'3.8.3.1','02/11/2014',' '); -INSERT INTO entity_versions VALUES(704,258,'3.8.3','02/03/2014',' '); -INSERT INTO entity_versions VALUES(705,258,'3.8.2','12/06/2013',' '); -INSERT INTO entity_versions VALUES(706,258,'3.8.1','10/17/2013',' '); -INSERT INTO entity_versions VALUES(707,258,'3.8.0.2','09/03/2013',' '); -INSERT INTO entity_versions VALUES(708,258,'3.8.0.1','08/29/2013',' '); -INSERT INTO entity_versions VALUES(709,258,'3.8.0','08/26/2013',' '); -INSERT INTO entity_versions VALUES(710,258,'3.7.17','05/20/2013',' '); -INSERT INTO entity_versions VALUES(711,258,'3.7.16.2','04/12/2013',' '); -INSERT INTO entity_versions VALUES(712,258,'3.7.16.1','03/29/2013',' '); -INSERT INTO entity_versions VALUES(713,258,'3.7.16','03/18/2013',' '); -INSERT INTO entity_versions VALUES(714,258,'3.7.15.2','01/09/2013',' '); -INSERT INTO entity_versions VALUES(715,258,'3.7.15.1','12/19/2012',' '); -INSERT INTO entity_versions VALUES(716,258,'3.7.15','12/12/2012',' '); -INSERT INTO entity_versions VALUES(717,258,'3.7.14.1','10/04/2012',' '); -INSERT INTO entity_versions VALUES(718,258,'3.7.14','09/03/2012',' '); -INSERT INTO entity_versions VALUES(719,258,'3.7.13','06/11/2012',' '); -INSERT INTO entity_versions VALUES(720,258,'3.7.12.1','05/22/2012',' '); -INSERT INTO entity_versions VALUES(721,258,'3.7.12','05/14/2012',' '); -INSERT INTO entity_versions VALUES(722,258,'3.7.12','05/14/2012',' '); -INSERT INTO entity_versions VALUES(723,258,'3.7.12','05/14/2012',' '); -INSERT INTO entity_versions VALUES(724,258,'3.7.11','03/20/2012',' '); -INSERT INTO entity_versions VALUES(725,258,'3.7.10','01/16/2012',' '); -INSERT INTO entity_versions VALUES(726,258,'3.7.9','11/01/2011',' '); -INSERT INTO entity_versions VALUES(727,258,'3.7.8','09/19/2011',' '); -INSERT INTO entity_versions VALUES(728,258,'3.7.7.1','06/28/2011',' '); -INSERT INTO entity_versions VALUES(729,258,'3.7.7','06/23/2011',' '); -INSERT INTO entity_versions VALUES(730,258,'3.7.6.3','05/19/2011',' '); -INSERT INTO entity_versions VALUES(731,258,'3.7.6.2','04/17/2011',' '); -INSERT INTO entity_versions VALUES(732,258,'3.7.6.1','04/13/2011',' '); -INSERT INTO entity_versions VALUES(733,258,'3.7.6','04/12/2011',' '); -INSERT INTO entity_versions VALUES(734,258,'3.7.5','02/01/2011',' '); -INSERT INTO entity_versions VALUES(735,258,'3.7.4','12/07/2010',' '); -INSERT INTO entity_versions VALUES(736,258,'3.7.3','10/08/2010',' '); -INSERT INTO entity_versions VALUES(737,258,'3.7.2','08/24/2010',' '); -INSERT INTO entity_versions VALUES(738,258,'3.7.1','08/23/2010',' '); -INSERT INTO entity_versions VALUES(739,258,'3.7.0.1','08/04/2010',' '); -INSERT INTO entity_versions VALUES(740,258,'3.7.0','07/21/2010',' '); -INSERT INTO entity_versions VALUES(741,258,'3.6.23.1','03/26/2010',' '); -INSERT INTO entity_versions VALUES(742,258,'3.6.23','03/09/2010',' '); -INSERT INTO entity_versions VALUES(743,258,'3.6.22','01/06/2010',' '); -INSERT INTO entity_versions VALUES(744,258,'3.6.21','12/07/2009',' '); -INSERT INTO entity_versions VALUES(745,258,'3.6.20','11/04/2009',' '); -INSERT INTO entity_versions VALUES(746,258,'3.6.16.1','10/30/2009',' '); -INSERT INTO entity_versions VALUES(747,258,'3.6.19','10/14/2009',' '); -INSERT INTO entity_versions VALUES(748,258,'3.6.18','09/11/2009',' '); -INSERT INTO entity_versions VALUES(749,258,'3.6.17','08/10/2009',' '); -INSERT INTO entity_versions VALUES(750,258,'3.6.16','06/27/2009',' '); -INSERT INTO entity_versions VALUES(751,258,'3.6.15','06/15/2009',' '); -INSERT INTO entity_versions VALUES(752,258,'3.6.14.2','05/25/2009',' '); -INSERT INTO entity_versions VALUES(753,258,'3.6.14.1','05/19/2009',' '); -INSERT INTO entity_versions VALUES(754,258,'3.6.14','05/07/2009',' '); -INSERT INTO entity_versions VALUES(755,258,'3.6.13','04/13/2009',' '); -INSERT INTO entity_versions VALUES(756,258,'3.6.12','03/31/2009',' '); -INSERT INTO entity_versions VALUES(757,258,'3.6.11','02/18/2009',' '); -INSERT INTO entity_versions VALUES(758,258,'3.6.10','01/15/2009',' '); -INSERT INTO entity_versions VALUES(759,258,'3.6.9','01/14/2009',' '); -INSERT INTO entity_versions VALUES(760,258,'3.6.8','01/12/2009',' '); -INSERT INTO entity_versions VALUES(761,258,'3.6.7','12/16/2008',' '); -INSERT INTO entity_versions VALUES(762,258,'3.6.6.2','11/26/2008',' '); -INSERT INTO entity_versions VALUES(763,258,'3.6.6.1','11/22/2008',' '); -INSERT INTO entity_versions VALUES(764,258,'3.6.6','11/19/2008',' '); -INSERT INTO entity_versions VALUES(765,258,'3.6.5','11/12/2008',' '); -INSERT INTO entity_versions VALUES(766,258,'3.6.4','10/15/2008',' '); -INSERT INTO entity_versions VALUES(767,258,'3.6.3','09/22/2008',' '); -INSERT INTO entity_versions VALUES(768,258,'3.6.2','08/30/2008',' '); -INSERT INTO entity_versions VALUES(769,258,'3.6.1','08/06/2008',' '); -INSERT INTO entity_versions VALUES(770,258,'3.6.0','07/16/2008',' '); -INSERT INTO entity_versions VALUES(771,258,'3.5.9','05/14/2008',' '); -INSERT INTO entity_versions VALUES(772,258,'3.5.8','04/16/2008',' '); -INSERT INTO entity_versions VALUES(773,258,'3.5.7','03/17/2008',' '); -INSERT INTO entity_versions VALUES(774,258,'3.5.6','02/06/2008',' '); -INSERT INTO entity_versions VALUES(775,258,'3.5.5','01/31/2008',' '); -INSERT INTO entity_versions VALUES(776,258,'3.5.4','12/14/2007',' '); -INSERT INTO entity_versions VALUES(777,258,'3.5.3','11/27/2007',' '); -INSERT INTO entity_versions VALUES(778,258,'3.5.2','11/05/2007',' '); -INSERT INTO entity_versions VALUES(779,258,'3.5.1','10/04/2007',' '); -INSERT INTO entity_versions VALUES(780,258,'3.5.0','09/04/2007',' '); -INSERT INTO entity_versions VALUES(781,258,'3.4.2','08/13/2007',' '); -INSERT INTO entity_versions VALUES(782,258,'3.4.1','07/20/2007',' '); -INSERT INTO entity_versions VALUES(783,258,'3.4.0','06/18/2007',' '); -INSERT INTO entity_versions VALUES(784,258,'3.3.17','04/25/2007',' '); -INSERT INTO entity_versions VALUES(785,258,'3.3.16','04/18/2007',' '); -INSERT INTO entity_versions VALUES(786,258,'3.3.15','04/09/2007',' '); -INSERT INTO entity_versions VALUES(787,258,'3.3.14','04/02/2007',' '); -INSERT INTO entity_versions VALUES(788,258,'3.3.13','02/13/2007',' '); -INSERT INTO entity_versions VALUES(789,258,'3.3.12','01/27/2007',' '); -INSERT INTO entity_versions VALUES(790,258,'3.3.11','01/22/2007',' '); -INSERT INTO entity_versions VALUES(791,258,'3.3.10','01/10/2007',' '); -INSERT INTO entity_versions VALUES(792,258,'3.3.9','01/04/2007',' '); -INSERT INTO entity_versions VALUES(793,258,'3.3.8','10/09/2006',' '); -INSERT INTO entity_versions VALUES(794,258,'3.3.7','08/12/2006',' '); -INSERT INTO entity_versions VALUES(795,258,'3.3.6','06/06/2006',' '); -INSERT INTO entity_versions VALUES(796,258,'3.3.5','04/05/2006',' '); -INSERT INTO entity_versions VALUES(797,258,'3.3.4','02/11/2006',' '); -INSERT INTO entity_versions VALUES(798,258,'3.3.3','01/31/2006',' '); -INSERT INTO entity_versions VALUES(799,258,'3.3.2','01/24/2006',' '); -INSERT INTO entity_versions VALUES(800,258,'3.3.1','01/16/2006',' '); -INSERT INTO entity_versions VALUES(801,258,'3.3.0','01/11/2006',' '); -INSERT INTO entity_versions VALUES(802,258,'2.8.17','12/19/2005',' '); -INSERT INTO entity_versions VALUES(803,258,'3.2.8','12/19/2005',' '); -INSERT INTO entity_versions VALUES(804,258,'3.2.7','09/24/2005',' '); -INSERT INTO entity_versions VALUES(805,258,'3.2.6','09/17/2005',' '); -INSERT INTO entity_versions VALUES(806,258,'3.2.5','08/27/2005',' '); -INSERT INTO entity_versions VALUES(807,258,'3.2.4','08/24/2005',' '); -INSERT INTO entity_versions VALUES(808,258,'3.2.3','08/21/2005',' '); -INSERT INTO entity_versions VALUES(809,258,'3.2.2','06/12/2005',' '); -INSERT INTO entity_versions VALUES(810,258,'3.2.1','03/29/2005',' '); -INSERT INTO entity_versions VALUES(811,258,'3.2.0','03/21/2005',' '); -INSERT INTO entity_versions VALUES(812,258,'3.1.6','03/17/2005',' '); -INSERT INTO entity_versions VALUES(813,258,'3.1.5','03/11/2005',' '); -INSERT INTO entity_versions VALUES(814,258,'3.1.4','03/11/2005',' '); -INSERT INTO entity_versions VALUES(815,258,'3.1.3.1','02/28/2005',' '); -INSERT INTO entity_versions VALUES(816,258,'3.1.3','02/20/2005',' '); -INSERT INTO entity_versions VALUES(817,258,'3.1.2','02/15/2005',' '); -INSERT INTO entity_versions VALUES(818,258,'2.8.16','02/15/2005',' '); -INSERT INTO entity_versions VALUES(819,258,'3.1.1','02/01/2005',' '); -INSERT INTO entity_versions VALUES(820,258,'3.1.0','01/21/2005',' '); -INSERT INTO entity_versions VALUES(821,258,'3.0.8','10/12/2004',' '); -INSERT INTO entity_versions VALUES(822,258,'3.0.7','09/18/2004',' '); -INSERT INTO entity_versions VALUES(823,258,'3.0.6','09/02/2004',' '); -INSERT INTO entity_versions VALUES(824,258,'3.0.5','08/29/2004',' '); -INSERT INTO entity_versions VALUES(825,258,'3.0.4','08/09/2004',' '); -INSERT INTO entity_versions VALUES(826,258,'3.0.3','07/22/2004',' '); -INSERT INTO entity_versions VALUES(827,258,'2.8.15','07/22/2004',' '); -INSERT INTO entity_versions VALUES(828,258,'3.0.2','06/30/2004',' '); -INSERT INTO entity_versions VALUES(829,258,'3.0.1','06/22/2004',' '); -INSERT INTO entity_versions VALUES(830,258,'3.0.0','06/18/2004',' '); -INSERT INTO entity_versions VALUES(831,258,'2.8.14','06/09/2004',' '); -INSERT INTO entity_versions VALUES(832,258,'2.8.13','03/08/2004',' '); -INSERT INTO entity_versions VALUES(833,258,'2.8.12','02/08/2004',' '); -INSERT INTO entity_versions VALUES(834,258,'2.8.11','01/14/2004',' '); -INSERT INTO entity_versions VALUES(835,258,'2.8.10','01/14/2004',' '); -INSERT INTO entity_versions VALUES(836,258,'2.8.9','01/06/2004',' '); -INSERT INTO entity_versions VALUES(837,258,'2.8.8','12/18/2003',' '); -INSERT INTO entity_versions VALUES(838,258,'2.8.7','12/04/2003',' '); -INSERT INTO entity_versions VALUES(839,258,'2.8.6','08/22/2003',' '); -INSERT INTO entity_versions VALUES(840,258,'2.8.5','07/22/2003',' '); -INSERT INTO entity_versions VALUES(841,258,'2.8.4','06/29/2003',' '); -INSERT INTO entity_versions VALUES(842,258,'2.8.3','06/04/2003',' '); -INSERT INTO entity_versions VALUES(843,258,'2.8.2','05/17/2003',' '); -INSERT INTO entity_versions VALUES(844,258,'2.8.1','05/17/2003',' '); -INSERT INTO entity_versions VALUES(845,258,'2.8.0','02/16/2003',' '); -INSERT INTO entity_versions VALUES(846,258,'2.7.6','01/25/2003',' '); -INSERT INTO entity_versions VALUES(847,258,'2.7.5','12/28/2002',' '); -INSERT INTO entity_versions VALUES(848,258,'2.7.4','12/17/2002',' '); -INSERT INTO entity_versions VALUES(849,258,'2.7.3','10/31/2002',' '); -INSERT INTO entity_versions VALUES(850,258,'2.7.2','09/25/2002',' '); -INSERT INTO entity_versions VALUES(851,258,'2.7.1','08/31/2002',' '); -INSERT INTO entity_versions VALUES(852,258,'2.7.0','08/25/2002',' '); -INSERT INTO entity_versions VALUES(853,258,'2.6.3','08/13/2002',' '); -INSERT INTO entity_versions VALUES(854,258,'2.6.2','07/31/2002',' '); -INSERT INTO entity_versions VALUES(855,258,'2.6.1','07/19/2002',' '); -INSERT INTO entity_versions VALUES(856,258,'2.6.0','07/18/2002',' '); -INSERT INTO entity_versions VALUES(857,258,'2.5.6','07/07/2002',' '); -INSERT INTO entity_versions VALUES(858,258,'2.5.5','07/06/2002',' '); -INSERT INTO entity_versions VALUES(859,258,'2.5.4','07/01/2002',' '); -INSERT INTO entity_versions VALUES(860,258,'2.5.3','06/25/2002',' '); -INSERT INTO entity_versions VALUES(861,258,'2.5.2','06/25/2002',' '); -INSERT INTO entity_versions VALUES(862,258,'2.5.1','06/19/2002',' '); -INSERT INTO entity_versions VALUES(863,258,'2.5.0','06/17/2002',' '); -INSERT INTO entity_versions VALUES(864,258,'2.4.12','05/10/2002',' '); -INSERT INTO entity_versions VALUES(865,258,'2.4.11','05/08/2002',' '); -INSERT INTO entity_versions VALUES(866,258,'2.4.10','05/03/2002',' '); -INSERT INTO entity_versions VALUES(867,258,'2.4.9','04/22/2002',' '); -INSERT INTO entity_versions VALUES(868,258,'2.4.8','04/20/2002',' '); -INSERT INTO entity_versions VALUES(869,258,'2.4.7','04/12/2002',' '); -INSERT INTO entity_versions VALUES(870,258,'2.4.6','04/02/2002',' '); -INSERT INTO entity_versions VALUES(871,258,'2.4.5','04/02/2002',' '); -INSERT INTO entity_versions VALUES(872,258,'2.4.4','03/30/2002',' '); -INSERT INTO entity_versions VALUES(873,258,'2.4.3','03/23/2002',' '); -INSERT INTO entity_versions VALUES(874,258,'2.4.2','03/20/2002',' '); -INSERT INTO entity_versions VALUES(875,258,'2.4.1','03/13/2002',' '); -INSERT INTO entity_versions VALUES(876,258,'2.4.1','03/13/2002',' '); -INSERT INTO entity_versions VALUES(877,258,'2.4.0','03/11/2002',' '); -INSERT INTO entity_versions VALUES(878,258,'2.3.3','02/19/2002',' '); -INSERT INTO entity_versions VALUES(879,258,'2.3.2','02/14/2002',' '); -INSERT INTO entity_versions VALUES(880,258,'2.3.1','02/13/2002',' '); -INSERT INTO entity_versions VALUES(881,258,'2.3.0','02/03/2002',' '); -INSERT INTO entity_versions VALUES(882,258,'2.2.5','01/28/2002',' '); -INSERT INTO entity_versions VALUES(883,258,'2.2.4','01/22/2002',' '); -INSERT INTO entity_versions VALUES(884,258,'2.2.3','01/16/2002',' '); -INSERT INTO entity_versions VALUES(885,258,'2.2.2','01/14/2002',' '); -INSERT INTO entity_versions VALUES(886,258,'2.2.1','01/09/2002',' '); -INSERT INTO entity_versions VALUES(887,258,'2.2.0','12/22/2001',' '); -INSERT INTO entity_versions VALUES(888,258,'2.1.7','12/15/2001',' '); -INSERT INTO entity_versions VALUES(889,258,'2.1.6','12/14/2001',' '); -INSERT INTO entity_versions VALUES(890,258,'2.1.5','12/06/2001',' '); -INSERT INTO entity_versions VALUES(891,258,'2.1.4','12/05/2001',' '); -INSERT INTO entity_versions VALUES(892,258,'2.1.3','11/24/2001',' '); -INSERT INTO entity_versions VALUES(893,258,'2.1.2','11/23/2001',' '); -INSERT INTO entity_versions VALUES(894,258,'2.1.1','11/13/2001',' '); -INSERT INTO entity_versions VALUES(895,258,'2.1.0','11/12/2001',' '); -INSERT INTO entity_versions VALUES(896,258,'2.0.8','11/04/2001',' '); -INSERT INTO entity_versions VALUES(897,258,'2.0.7','10/22/2001',' '); -INSERT INTO entity_versions VALUES(898,258,'2.0.6','10/19/2001',' '); -INSERT INTO entity_versions VALUES(899,258,'2.0.5','10/15/2001',' '); -INSERT INTO entity_versions VALUES(900,258,'2.0.4','10/13/2001',' '); -INSERT INTO entity_versions VALUES(901,258,'2.0.3','10/13/2001',' '); -INSERT INTO entity_versions VALUES(902,258,'2.0.2','10/09/2001',' '); -INSERT INTO entity_versions VALUES(903,258,'2.0.1','10/02/2001',' '); -INSERT INTO entity_versions VALUES(904,258,'2.0.0','09/28/2001',' '); -INSERT INTO entity_versions VALUES(905,258,'1.0.32','07/23/2001',' '); -INSERT INTO entity_versions VALUES(906,258,'1.0.31','04/15/2001',' '); -INSERT INTO entity_versions VALUES(907,258,'1.0.30','04/06/2001',' '); -INSERT INTO entity_versions VALUES(908,258,'1.0.29','04/05/2001',' '); -INSERT INTO entity_versions VALUES(909,258,'1.0.28','04/04/2001',' '); -INSERT INTO entity_versions VALUES(910,258,'1.0.27','03/20/2001',' '); -INSERT INTO entity_versions VALUES(911,258,'1.0.26','03/20/2001',' '); -INSERT INTO entity_versions VALUES(912,258,'1.0.25','03/15/2001',' '); -INSERT INTO entity_versions VALUES(913,258,'1.0.24','03/14/2001',' '); -INSERT INTO entity_versions VALUES(914,258,'1.0.23','02/20/2001',' '); -INSERT INTO entity_versions VALUES(915,258,'1.0.22','02/19/2001',' '); -INSERT INTO entity_versions VALUES(916,258,'1.0.21','02/19/2001',' '); -INSERT INTO entity_versions VALUES(917,258,'1.0.20','02/11/2001',' '); -INSERT INTO entity_versions VALUES(918,258,'1.0.19','02/06/2001',' '); -INSERT INTO entity_versions VALUES(919,258,'1.0.18','01/04/2001',' '); -INSERT INTO entity_versions VALUES(920,258,'1.0.17','12/10/2000',' '); -INSERT INTO entity_versions VALUES(921,258,'1.0.16','11/28/2000',' '); -INSERT INTO entity_versions VALUES(922,258,'1.0.15','10/23/2000',' '); -INSERT INTO entity_versions VALUES(923,258,'1.0.14','10/19/2000',' '); -INSERT INTO entity_versions VALUES(924,258,'1.0.13','10/19/2000',' '); -INSERT INTO entity_versions VALUES(925,258,'1.0.12','10/17/2000',' '); -INSERT INTO entity_versions VALUES(926,258,'1.0.10','10/11/2000',' '); -INSERT INTO entity_versions VALUES(927,258,'1.0.9','10/09/2000',' '); -INSERT INTO entity_versions VALUES(928,258,'1.0.8','09/30/2000',' '); -INSERT INTO entity_versions VALUES(929,258,'1.0.5','09/14/2000',' '); -INSERT INTO entity_versions VALUES(930,258,'1.0.4','08/28/2000',' '); -INSERT INTO entity_versions VALUES(931,258,'1.0.3','08/22/2000',' '); -INSERT INTO entity_versions VALUES(932,258,'1.0.1','08/18/2000',' '); -INSERT INTO entity_versions VALUES(933,258,'1','08/17/2000',' '); -INSERT INTO entity_versions VALUES(934,14,'18',' ',' '); -INSERT INTO entity_versions VALUES(935,14,'17',' ',' '); -INSERT INTO entity_versions VALUES(936,14,'16',' ',' '); -INSERT INTO entity_versions VALUES(937,14,'13',' ',' '); -INSERT INTO entity_versions VALUES(938,14,'1.2','11/21/2005','11/21/2010'); -INSERT INTO entity_versions VALUES(939,14,'1.4','12/23/2006','04/21/2012'); -INSERT INTO entity_versions VALUES(940,14,'1.6.0','10/01/2008','10/01/2010'); -INSERT INTO entity_versions VALUES(941,14,'1.6.1','04/27/2009','04/27/2011'); -INSERT INTO entity_versions VALUES(942,14,'1.6.2','12/18/2009','04/21/2012'); -INSERT INTO entity_versions VALUES(943,14,'1.8','10/21/2010','10/21/2015'); -INSERT INTO entity_versions VALUES(944,14,'10','12/15/2011','12/15/2013'); -INSERT INTO entity_versions VALUES(945,14,'11','10/25/2012','10/25/2017'); -INSERT INTO entity_versions VALUES(946,14,'12','12/20/2013','12/20/2015'); -INSERT INTO entity_versions VALUES(947,14,'13','10/24/2014','10/24/2019'); -INSERT INTO entity_versions VALUES(948,14,'14','10/01/2015','10/31/2017'); -INSERT INTO entity_versions VALUES(949,14,'15','10/01/2016','10/31/2021'); -INSERT INTO entity_versions VALUES(950,5,'1','02/20/2012',' '); -INSERT INTO entity_versions VALUES(951,5,'4.6.0','09/21/2021',' '); -INSERT INTO entity_versions VALUES(952,319,'1','12/31/1998',' '); -INSERT INTO entity_versions VALUES(953,319,'3','06/08/2017',' '); -INSERT INTO entity_versions VALUES(954,131,'21.1','05/12/2021',' '); -INSERT INTO entity_versions VALUES(955,131,'20.2','10/21/2020',' '); -INSERT INTO entity_versions VALUES(956,131,'20.1','04/23/2020',' '); -INSERT INTO entity_versions VALUES(957,131,'19.2','11/01/2019',' '); -INSERT INTO entity_versions VALUES(958,131,'19.1','03/21/2019',' '); -INSERT INTO entity_versions VALUES(959,131,'18.2','09/28/2018',' '); -INSERT INTO entity_versions VALUES(960,131,'18.1','05/24/2018',' '); -INSERT INTO entity_versions VALUES(961,131,'5.1.4','12/17/2017',' '); -INSERT INTO entity_versions VALUES(962,131,'5.1','12/21/2016',' '); -INSERT INTO entity_versions VALUES(963,19,'9.1.04','12/05/2017',' '); -INSERT INTO entity_versions VALUES(964,19,'9.1.03','06/09/2017',' '); -INSERT INTO entity_versions VALUES(965,19,'9.1.02','12/05/2016',' '); -INSERT INTO entity_versions VALUES(966,19,'9.1.01','06/23/2016',' '); -INSERT INTO entity_versions VALUES(967,19,'9.1.00','12/22/2015',' '); -INSERT INTO entity_versions VALUES(968,170,'1.1','02/21/2012',' '); -INSERT INTO entity_versions VALUES(969,170,'1.4','07/10/2013',' '); -INSERT INTO entity_versions VALUES(970,170,'2','09/02/2014',' '); -INSERT INTO entity_versions VALUES(971,170,'2.1','04/16/2015',' '); -INSERT INTO entity_versions VALUES(972,170,'2.2','11/17/2016',' '); -INSERT INTO entity_versions VALUES(973,170,'2.2.5','04/26/2018',' '); -INSERT INTO entity_versions VALUES(974,8,'2.3.8','01/17/2021',' '); -INSERT INTO entity_versions VALUES(975,8,'2.3.7','04/18/2020',' '); -INSERT INTO entity_versions VALUES(976,8,'3.1.2','08/26/2019',' '); -INSERT INTO entity_versions VALUES(977,8,'2.3.6','08/23/2019',' '); -INSERT INTO entity_versions VALUES(978,8,'2.3.5','05/14/2019',' '); -INSERT INTO entity_versions VALUES(979,8,'2.3.4','11/07/2018',' '); -INSERT INTO entity_versions VALUES(980,8,'3.1.1','11/01/2018',' '); -INSERT INTO entity_versions VALUES(981,8,'3.1.0','07/30/2018',' '); -INSERT INTO entity_versions VALUES(982,8,'3.0.0','05/21/2018',' '); -INSERT INTO entity_versions VALUES(983,8,'2.3.3','04/03/2018',' '); -INSERT INTO entity_versions VALUES(984,8,'2.3.2','11/18/2017',' '); -INSERT INTO entity_versions VALUES(985,8,'2.3.1','08/24/2017',' '); -INSERT INTO entity_versions VALUES(986,8,'2.2.0','07/25/2017',' '); -INSERT INTO entity_versions VALUES(987,8,'2.3.0','07/17/2017',' '); -INSERT INTO entity_versions VALUES(988,8,'1.2.2','04/07/2017',' '); -INSERT INTO entity_versions VALUES(989,8,'2.1.1','12/08/2016',' '); -INSERT INTO entity_versions VALUES(990,8,'2.1.0','06/20/2016',' '); -INSERT INTO entity_versions VALUES(991,8,'2.0.1','05/25/2016',' '); -INSERT INTO entity_versions VALUES(992,8,'2.0.0','02/15/2016',' '); -INSERT INTO entity_versions VALUES(993,8,'1.2.1','06/27/2015',' '); -INSERT INTO entity_versions VALUES(994,8,'1.1.1','05/21/2015',' '); -INSERT INTO entity_versions VALUES(995,8,'1.0.1','05/21/2015',' '); -INSERT INTO entity_versions VALUES(996,8,'0.14.0','11/12/2014',' '); -INSERT INTO entity_versions VALUES(997,8,'0.13.0','04/21/2014',' '); -INSERT INTO entity_versions VALUES(998,8,'0.12.0','10/15/2013',' '); -INSERT INTO entity_versions VALUES(999,8,'0.11.0','05/15/2013',' '); -INSERT INTO entity_versions VALUES(1000,8,'0.10.0','01/11/2013',' '); -INSERT INTO entity_versions VALUES(1001,175,'1','07/02/1905','06/01/2021'); -INSERT INTO entity_versions VALUES(1002,175,'2','06/26/2020',' '); -INSERT INTO entity_versions VALUES(1003,180,'2.1.0','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1004,180,'2.0.1','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1005,180,'1.8.0','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1006,180,'1.7.1','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1007,180,'1.7.0','10/04/2017',' '); -INSERT INTO entity_versions VALUES(1008,180,'1.6.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1009,180,'1.5.1','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1010,180,'1.4.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1011,180,'1.3.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1012,180,'1.2.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1013,186,'9.1','07/31/2021',' '); -INSERT INTO entity_versions VALUES(1014,186,'9','06/30/2021',' '); -INSERT INTO entity_versions VALUES(1015,186,'8.9','05/04/2021',' '); -INSERT INTO entity_versions VALUES(1016,168,'6.2.4','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1017,168,'6.0.20','04/30/2021',' '); -INSERT INTO entity_versions VALUES(1018,168,'6.0.12','01/31/2021',' '); -INSERT INTO entity_versions VALUES(1019,168,'6.0.8','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1020,168,'6','05/31/2020',' '); -INSERT INTO entity_versions VALUES(1021,168,'5.6.0','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1022,168,'5.5','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1023,168,'5.4.14','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1024,168,'5.4.10','12/31/2019',' '); -INSERT INTO entity_versions VALUES(1025,168,'5.4.6','07/31/2019',' '); -INSERT INTO entity_versions VALUES(1026,168,'5.4.4','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1027,168,'5.4.2','04/28/2019',' '); -INSERT INTO entity_versions VALUES(1028,168,'5.4','12/31/2018',' '); -INSERT INTO entity_versions VALUES(1029,168,'5.2.2','08/31/2018',' '); -INSERT INTO entity_versions VALUES(1030,168,'5.2','07/31/2018',' '); -INSERT INTO entity_versions VALUES(1031,168,'5.0.2','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1032,168,'5','03/31/2018',' '); -INSERT INTO entity_versions VALUES(1033,168,'4.5','05/31/2017',' '); -INSERT INTO entity_versions VALUES(1034,168,'4.4','12/31/2016',' '); -INSERT INTO entity_versions VALUES(1035,168,'4.3','08/02/2016',' '); -INSERT INTO entity_versions VALUES(1036,168,'4.2.1','10/18/2015',' '); -INSERT INTO entity_versions VALUES(1037,168,'4','06/18/2015',' '); -INSERT INTO entity_versions VALUES(1038,165,'3.9.7','09/24/2021',' '); -INSERT INTO entity_versions VALUES(1039,165,'3.8.23','09/24/2021',' '); -INSERT INTO entity_versions VALUES(1040,165,'3.9.6','09/16/2021',' '); -INSERT INTO entity_versions VALUES(1041,165,'3.9.5','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1042,165,'3.8.22','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1043,165,'3.9.4','08/17/2021',' '); -INSERT INTO entity_versions VALUES(1044,165,'3.9.3','08/12/2021',' '); -INSERT INTO entity_versions VALUES(1045,165,'3.8.21','08/12/2021',' '); -INSERT INTO entity_versions VALUES(1046,165,'3.9.2','08/09/2021',' '); -INSERT INTO entity_versions VALUES(1047,165,'3.8.20','08/09/2021',' '); -INSERT INTO entity_versions VALUES(1048,165,'3.9.1','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1049,165,'3.9.0','07/23/2021',' '); -INSERT INTO entity_versions VALUES(1050,165,'3.8.19','07/05/2021',' '); -INSERT INTO entity_versions VALUES(1051,165,'3.8.18','06/25/2021',' '); -INSERT INTO entity_versions VALUES(1052,165,'3.8.17','06/08/2021',' '); -INSERT INTO entity_versions VALUES(1053,165,'3.8.16','05/04/2021',' '); -INSERT INTO entity_versions VALUES(1054,165,'3.8.15','05/03/2021',' '); -INSERT INTO entity_versions VALUES(1055,165,'3.8.14','03/02/2021',' '); -INSERT INTO entity_versions VALUES(1056,165,'3.8.13','02/27/2021',' '); -INSERT INTO entity_versions VALUES(1057,165,'3.8.12','02/16/2021',' '); -INSERT INTO entity_versions VALUES(1058,165,'3.8.11','01/22/2021',' '); -INSERT INTO entity_versions VALUES(1059,165,'3.8.10','01/19/2021',' '); -INSERT INTO entity_versions VALUES(1060,165,'3.8.9','09/28/2020',' '); -INSERT INTO entity_versions VALUES(1061,165,'3.8.8','09/03/2020',' '); -INSERT INTO entity_versions VALUES(1062,165,'3.8.7','08/17/2020',' '); -INSERT INTO entity_versions VALUES(1063,165,'3.7.28','08/17/2020',' '); -INSERT INTO entity_versions VALUES(1064,165,'3.8.6','08/04/2020',' '); -INSERT INTO entity_versions VALUES(1065,165,'3.7.27','07/25/2020',' '); -INSERT INTO entity_versions VALUES(1066,165,'3.8.5','06/15/2020',' '); -INSERT INTO entity_versions VALUES(1067,165,'3.8.4','05/25/2020',' '); -INSERT INTO entity_versions VALUES(1068,165,'3.7.26','05/04/2020',' '); -INSERT INTO entity_versions VALUES(1069,165,'3.7.25','04/09/2020',' '); -INSERT INTO entity_versions VALUES(1070,165,'3.8.3','03/10/2020',' '); -INSERT INTO entity_versions VALUES(1071,165,'3.7.24','02/13/2020',' '); -INSERT INTO entity_versions VALUES(1072,165,'3.7.23','12/05/2019',' '); -INSERT INTO entity_versions VALUES(1073,165,'3.8.2','12/02/2019',' '); -INSERT INTO entity_versions VALUES(1074,165,'3.7.22','11/27/2019',' '); -INSERT INTO entity_versions VALUES(1075,165,'3.8.1','10/31/2019',' '); -INSERT INTO entity_versions VALUES(1076,165,'3.7.21','10/31/2019',' '); -INSERT INTO entity_versions VALUES(1077,165,'3.7.20','10/25/2019',' '); -INSERT INTO entity_versions VALUES(1078,165,'3.7.19','10/02/2019',' '); -INSERT INTO entity_versions VALUES(1079,165,'3.8.0','10/01/2019',' '); -INSERT INTO entity_versions VALUES(1080,165,'3.7.18','09/18/2019',' '); -INSERT INTO entity_versions VALUES(1081,165,'3.7.17','07/29/2019',' '); -INSERT INTO entity_versions VALUES(1082,165,'3.7.16','07/08/2019',' '); -INSERT INTO entity_versions VALUES(1083,165,'3.7.15','05/20/2019',' '); -INSERT INTO entity_versions VALUES(1084,165,'3.7.14','03/29/2019',' '); -INSERT INTO entity_versions VALUES(1085,165,'3.7.13','03/08/2019',' '); -INSERT INTO entity_versions VALUES(1086,165,'3.7.12','02/15/2019',' '); -INSERT INTO entity_versions VALUES(1087,165,'3.7.11','01/31/2019',' '); -INSERT INTO entity_versions VALUES(1088,165,'3.7.10','01/07/2019',' '); -INSERT INTO entity_versions VALUES(1089,165,'3.7.9','11/16/2018',' '); -INSERT INTO entity_versions VALUES(1090,165,'3.7.8','09/20/2018',' '); -INSERT INTO entity_versions VALUES(1091,165,'3.7.7','07/05/2018',' '); -INSERT INTO entity_versions VALUES(1092,165,'3.7.6','06/13/2018',' '); -INSERT INTO entity_versions VALUES(1093,165,'3.6.16','06/13/2018',' '); -INSERT INTO entity_versions VALUES(1094,165,'3.7.5','05/09/2018',' '); -INSERT INTO entity_versions VALUES(1095,165,'3.7.4','03/08/2018',' '); -INSERT INTO entity_versions VALUES(1096,165,'3.7.3','01/30/2018',' '); -INSERT INTO entity_versions VALUES(1097,165,'3.6.15','01/17/2018',' '); -INSERT INTO entity_versions VALUES(1098,165,'3.7.2','12/23/2017',' '); -INSERT INTO entity_versions VALUES(1099,165,'3.7.1','12/21/2017',' '); -INSERT INTO entity_versions VALUES(1100,165,'3.7.0','11/29/2017',' '); -INSERT INTO entity_versions VALUES(1101,165,'3.6.14','11/07/2017',' '); -INSERT INTO entity_versions VALUES(1102,165,'3.6.13','11/06/2017',' '); -INSERT INTO entity_versions VALUES(1103,165,'3.6.12','09/11/2017',' '); -INSERT INTO entity_versions VALUES(1104,165,'3.6.11','08/16/2017',' '); -INSERT INTO entity_versions VALUES(1105,165,'3.6.10','05/25/2017',' '); -INSERT INTO entity_versions VALUES(1106,165,'3.6.9','03/29/2017',' '); -INSERT INTO entity_versions VALUES(1107,165,'3.6.8','03/17/2017',' '); -INSERT INTO entity_versions VALUES(1108,165,'3.6.7','03/15/2017',' '); -INSERT INTO entity_versions VALUES(1109,165,'3.6.6','11/21/2016',' '); -INSERT INTO entity_versions VALUES(1110,165,'3.5.8','11/21/2016',' '); -INSERT INTO entity_versions VALUES(1111,165,'3.6.5','08/05/2016',' '); -INSERT INTO entity_versions VALUES(1112,165,'3.6.4','07/29/2016',' '); -INSERT INTO entity_versions VALUES(1113,165,'3.6.3','07/06/2016',' '); -INSERT INTO entity_versions VALUES(1114,165,'3.6.2','05/19/2016',' '); -INSERT INTO entity_versions VALUES(1115,165,'3.6.1','03/01/2016',' '); -INSERT INTO entity_versions VALUES(1116,165,'3.6.0','12/22/2015',' '); -INSERT INTO entity_versions VALUES(1117,165,'3.5.7','12/15/2015',' '); -INSERT INTO entity_versions VALUES(1118,165,'3.5.6','10/07/2015',' '); -INSERT INTO entity_versions VALUES(1119,165,'3.5.5','09/24/2015',' '); -INSERT INTO entity_versions VALUES(1120,165,'3.5.4','07/22/2015',' '); -INSERT INTO entity_versions VALUES(1121,165,'3.5.3','05/22/2015',' '); -INSERT INTO entity_versions VALUES(1122,165,'3.5.2','05/12/2015',' '); -INSERT INTO entity_versions VALUES(1123,165,'3.5.1','04/03/2015',' '); -INSERT INTO entity_versions VALUES(1124,165,'3.5.0','03/11/2015',' '); -INSERT INTO entity_versions VALUES(1125,165,'3.4.4','02/11/2015',' '); -INSERT INTO entity_versions VALUES(1126,165,'3.4.3','01/07/2015',' '); -INSERT INTO entity_versions VALUES(1127,165,'3.4.2','11/26/2014',' '); -INSERT INTO entity_versions VALUES(1128,165,'3.4.1','10/29/2014',' '); -INSERT INTO entity_versions VALUES(1129,165,'3.4.0','10/21/2014',' '); -INSERT INTO entity_versions VALUES(1130,165,'3.3.5','08/11/2014',' '); -INSERT INTO entity_versions VALUES(1131,165,'3.3.4','06/24/2014',' '); -INSERT INTO entity_versions VALUES(1132,165,'3.3.3','06/17/2014',' '); -INSERT INTO entity_versions VALUES(1133,165,'3.3.2','06/09/2014',' '); -INSERT INTO entity_versions VALUES(1134,165,'3.3.1','04/29/2014',' '); -INSERT INTO entity_versions VALUES(1135,165,'3.3.0','04/02/2014',' '); -INSERT INTO entity_versions VALUES(1136,165,'3.2.4','03/04/2014',' '); -INSERT INTO entity_versions VALUES(1137,165,'3.2.3','01/23/2014',' '); -INSERT INTO entity_versions VALUES(1138,165,'3.2.2','12/11/2013',' '); -INSERT INTO entity_versions VALUES(1139,165,'3.2.1','11/07/2013',' '); -INSERT INTO entity_versions VALUES(1140,165,'3.2.0','10/23/2013',' '); -INSERT INTO entity_versions VALUES(1141,165,'3.1.5','08/15/2013',' '); -INSERT INTO entity_versions VALUES(1142,165,'3.1.4','08/07/2013',' '); -INSERT INTO entity_versions VALUES(1143,165,'3.1.3','06/26/2013',' '); -INSERT INTO entity_versions VALUES(1144,165,'3.1.2','06/24/2013',' '); -INSERT INTO entity_versions VALUES(1145,165,'3.1.1','05/21/2013',' '); -INSERT INTO entity_versions VALUES(1146,165,'3.1.0','05/01/2013',' '); -INSERT INTO entity_versions VALUES(1147,165,'3.0.4','03/12/2013',' '); -INSERT INTO entity_versions VALUES(1148,165,'3.0.3','03/06/2013',' '); -INSERT INTO entity_versions VALUES(1149,165,'3.0.2','01/31/2013',' '); -INSERT INTO entity_versions VALUES(1150,165,'3.0.1','12/11/2012',' '); -INSERT INTO entity_versions VALUES(1151,165,'3.0.0','11/19/2012',' '); -INSERT INTO entity_versions VALUES(1152,165,'2.8.7','09/27/2012',' '); -INSERT INTO entity_versions VALUES(1153,165,'2.8.6','08/22/2012',' '); -INSERT INTO entity_versions VALUES(1154,165,'2.8.5','08/02/2012',' '); -INSERT INTO entity_versions VALUES(1155,165,'2.8.4','06/22/2012',' '); -INSERT INTO entity_versions VALUES(1156,165,'2.8.3','06/21/2012',' '); -INSERT INTO entity_versions VALUES(1157,165,'2.8.2','04/30/2012',' '); -INSERT INTO entity_versions VALUES(1158,165,'2.8.1','03/22/2012',' '); -INSERT INTO entity_versions VALUES(1159,165,'2.8.0','03/19/2012',' '); -INSERT INTO entity_versions VALUES(1160,165,'2.7.1','12/20/2011',' '); -INSERT INTO entity_versions VALUES(1161,165,'2.7.0','11/09/2011',' '); -INSERT INTO entity_versions VALUES(1162,165,'2.6.1','09/12/2011',' '); -INSERT INTO entity_versions VALUES(1163,165,'2.6.0','08/31/2011',' '); -INSERT INTO entity_versions VALUES(1164,165,'2.5.1','06/27/2011',' '); -INSERT INTO entity_versions VALUES(1165,165,'2.5.0','06/14/2011',' '); -INSERT INTO entity_versions VALUES(1166,165,'2.4.1','04/07/2011',' '); -INSERT INTO entity_versions VALUES(1167,165,'2.4.0','03/23/2011',' '); -INSERT INTO entity_versions VALUES(1168,165,'2.3.1','02/03/2011',' '); -INSERT INTO entity_versions VALUES(1169,165,'2.3.0','02/02/2011',' '); -INSERT INTO entity_versions VALUES(1170,165,'2.2.0','11/30/2010',' '); -INSERT INTO entity_versions VALUES(1171,165,'2.1.1','10/20/2010',' '); -INSERT INTO entity_versions VALUES(1172,165,'2.1.0','09/15/2010',' '); -INSERT INTO entity_versions VALUES(1173,165,'2.0.0','08/25/2010',' '); -INSERT INTO entity_versions VALUES(1174,165,'1.8.1','07/15/2010',' '); -INSERT INTO entity_versions VALUES(1175,165,'1.8.0','06/16/2010',' '); -INSERT INTO entity_versions VALUES(1176,165,'1.7.2','02/16/2010',' '); -INSERT INTO entity_versions VALUES(1177,165,'1.7.1','01/25/2010',' '); -INSERT INTO entity_versions VALUES(1178,165,'1.7.0','10/07/2009',' '); -INSERT INTO entity_versions VALUES(1179,165,'1.6.0','06/17/2009',' '); -INSERT INTO entity_versions VALUES(1180,165,'1.5.5','05/30/2009',' '); -INSERT INTO entity_versions VALUES(1181,165,'1.5.4','04/06/2009',' '); -INSERT INTO entity_versions VALUES(1182,165,'1.5.3','02/24/2009',' '); -INSERT INTO entity_versions VALUES(1183,165,'1.5.1','01/21/2009',' '); -INSERT INTO entity_versions VALUES(1184,165,'1.5.0','12/18/2008',' '); -INSERT INTO entity_versions VALUES(1185,165,'1.4.0','07/30/2008',' '); -INSERT INTO entity_versions VALUES(1186,165,'1.3.0','04/01/2008',' '); -INSERT INTO entity_versions VALUES(1187,165,'1.2.0','09/27/2007',' '); -INSERT INTO entity_versions VALUES(1188,165,'1.1.1','08/29/2007',' '); -INSERT INTO entity_versions VALUES(1189,165,'1.1.0','08/01/2007',' '); -INSERT INTO entity_versions VALUES(1190,165,'1.0.0','02/08/2007',' '); -INSERT INTO entity_versions VALUES(1191,9,'3.0.0','09/21/2021',' '); -INSERT INTO entity_versions VALUES(1192,9,'2.8.1','09/18/2021',' '); -INSERT INTO entity_versions VALUES(1193,9,'2.8.0','04/19/2021',' '); -INSERT INTO entity_versions VALUES(1194,9,'2.7.1','05/10/2020',' '); -INSERT INTO entity_versions VALUES(1195,9,'2.7.0','12/21/2020',' '); -INSERT INTO entity_versions VALUES(1196,9,'2.6.2','04/20/2021',' '); -INSERT INTO entity_versions VALUES(1197,9,'2.6.1','01/07/2021',' '); -INSERT INTO entity_versions VALUES(1198,9,'2.6.0','08/03/2020',' '); -INSERT INTO entity_versions VALUES(1199,9,'2.5.1','08/10/2020',' '); -INSERT INTO entity_versions VALUES(1200,9,'2.5.0','04/15/2020',' '); -INSERT INTO entity_versions VALUES(1201,9,'2.4.1','03/12/2020',' '); -INSERT INTO entity_versions VALUES(1202,9,'2.4.0','12/16/2019',' '); -INSERT INTO entity_versions VALUES(1203,9,'2.3.1','08/24/2019',' '); -INSERT INTO entity_versions VALUES(1204,9,'2.3.0','06/25/2019',' '); -INSERT INTO entity_versions VALUES(1205,9,'2.2.2','12/01/2019',' '); -INSERT INTO entity_versions VALUES(1206,9,'2.2.1','06/01/2019',' '); -INSERT INTO entity_versions VALUES(1207,9,'2.2.0','03/22/2019',' '); -INSERT INTO entity_versions VALUES(1208,9,'2.1.1','02/15/2019',' '); -INSERT INTO entity_versions VALUES(1209,9,'2.1.0','11/20/2018',' '); -INSERT INTO entity_versions VALUES(1210,9,'2.0.1','11/09/2018',' '); -INSERT INTO entity_versions VALUES(1211,9,'2.0.0','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1212,9,'1.1.1','07/19/2018',' '); -INSERT INTO entity_versions VALUES(1213,9,'1.1.0','03/28/2018',' '); -INSERT INTO entity_versions VALUES(1214,9,'1.0.2','07/08/2018',' '); -INSERT INTO entity_versions VALUES(1215,9,'1.0.1','03/05/2018',' '); -INSERT INTO entity_versions VALUES(1216,9,'1.0.0','11/01/2017',' '); -INSERT INTO entity_versions VALUES(1217,9,'0.11.0','06/28/2017',' '); -INSERT INTO entity_versions VALUES(1218,9,'0.10.0','05/22/2016',' '); -INSERT INTO entity_versions VALUES(1219,9,'0.9.0','11/23/2015',' '); -INSERT INTO entity_versions VALUES(1220,9,'0.8.0','03/12/2014',' '); -INSERT INTO entity_versions VALUES(1221,9,'0.7.0','01/04/2012',' '); -INSERT INTO entity_versions VALUES(1222,157,'6','01/29/1997',' '); -INSERT INTO entity_versions VALUES(1223,157,'6.1','06/08/1997',' '); -INSERT INTO entity_versions VALUES(1224,157,'6.2','10/02/1997',' '); -INSERT INTO entity_versions VALUES(1225,157,'6.3','03/01/1998','03/01/2003'); -INSERT INTO entity_versions VALUES(1226,157,'6.4','10/30/1998','10/30/2003'); -INSERT INTO entity_versions VALUES(1227,157,'6.5','06/09/1999','06/09/2004'); -INSERT INTO entity_versions VALUES(1228,157,'7','05/08/2000','05/08/2004'); -INSERT INTO entity_versions VALUES(1229,157,'7.1','04/13/2001','04/13/2006'); -INSERT INTO entity_versions VALUES(1230,157,'7.2','02/04/2002','02/04/2007'); -INSERT INTO entity_versions VALUES(1231,157,'7.3','11/27/2002','11/27/2007'); -INSERT INTO entity_versions VALUES(1232,157,'7.4','11/17/2003','10/01/2010'); -INSERT INTO entity_versions VALUES(1233,157,'8','01/19/2005','10/01/2010'); -INSERT INTO entity_versions VALUES(1234,157,'8.1','11/08/2005','11/08/2010'); -INSERT INTO entity_versions VALUES(1235,157,'8.2','12/05/2006','12/05/2011'); -INSERT INTO entity_versions VALUES(1236,157,'8.3','02/04/2008','02/07/2013'); -INSERT INTO entity_versions VALUES(1237,157,'8.4','07/01/2009','07/24/2014'); -INSERT INTO entity_versions VALUES(1238,157,'9','09/20/2010','10/08/2015'); -INSERT INTO entity_versions VALUES(1239,157,'9.1','09/12/2011','10/27/2016'); -INSERT INTO entity_versions VALUES(1240,157,'9.2','09/10/2012','11/09/2017'); -INSERT INTO entity_versions VALUES(1241,157,'9.3','09/09/2013','11/08/2018'); -INSERT INTO entity_versions VALUES(1242,157,'9.4','12/18/2014','02/13/2020'); -INSERT INTO entity_versions VALUES(1243,157,'9.5','01/07/2016','02/11/2021'); -INSERT INTO entity_versions VALUES(1244,157,'9.6','09/29/2016','11/11/2021'); -INSERT INTO entity_versions VALUES(1245,157,'10','10/05/2017','11/10/2022'); -INSERT INTO entity_versions VALUES(1246,157,'11','10/18/2018','11/09/2023'); -INSERT INTO entity_versions VALUES(1247,157,'12','10/03/2019','11/14/2024'); -INSERT INTO entity_versions VALUES(1248,157,'13','09/24/2020','11/13/2025'); -INSERT INTO entity_versions VALUES(1249,157,'14','09/30/2021','11/12/2026'); -INSERT INTO entity_versions VALUES(1250,21,'1.0','03/01/2005',' '); -INSERT INTO entity_versions VALUES(1251,21,'1','06/06/2005',' '); -INSERT INTO entity_versions VALUES(1252,21,'1.0.1','07/31/2005',' '); -INSERT INTO entity_versions VALUES(1253,21,'2','01/23/2006',' '); -INSERT INTO entity_versions VALUES(1254,21,'2.0.1','02/22/2006',' '); -INSERT INTO entity_versions VALUES(1255,21,'2.1','06/28/2006',' '); -INSERT INTO entity_versions VALUES(1256,21,'2.0.2','08/04/2006',' '); -INSERT INTO entity_versions VALUES(1257,21,'2.1.1','09/26/2006',' '); -INSERT INTO entity_versions VALUES(1258,21,'2.1.2','02/27/2007',' '); -INSERT INTO entity_versions VALUES(1259,21,'2.1.3','07/05/2007',' '); -INSERT INTO entity_versions VALUES(1260,21,'2.2','06/28/2007',' '); -INSERT INTO entity_versions VALUES(1261,21,'2.2.1','10/02/2007',' '); -INSERT INTO entity_versions VALUES(1262,21,'2.2.1.1','11/01/2007',' '); -INSERT INTO entity_versions VALUES(1263,21,'2.2.2','02/27/2008',' '); -INSERT INTO entity_versions VALUES(1264,21,'2.3','06/25/2008',' '); -INSERT INTO entity_versions VALUES(1265,21,'2.3.1','09/24/2008',' '); -INSERT INTO entity_versions VALUES(1266,21,'2.3.2','02/25/2009',' '); -INSERT INTO entity_versions VALUES(1267,21,'2.5','06/24/2009',' '); -INSERT INTO entity_versions VALUES(1268,21,'2.5.1','09/25/2009',' '); -INSERT INTO entity_versions VALUES(1269,21,'2.5.2','02/28/2010',' '); -INSERT INTO entity_versions VALUES(1270,21,'2.6','06/24/2010',' '); -INSERT INTO entity_versions VALUES(1271,21,'2.6.1','09/17/2010',' '); -INSERT INTO entity_versions VALUES(1272,21,'2.6.2','02/25/2011',' '); -INSERT INTO entity_versions VALUES(1273,21,'3.7','06/22/2011',' '); -INSERT INTO entity_versions VALUES(1274,21,'3.7.1','09/23/2011',' '); -INSERT INTO entity_versions VALUES(1275,21,'3.7.2','02/24/2012',' '); -INSERT INTO entity_versions VALUES(1276,21,'4.2.0','06/27/2012',' '); -INSERT INTO entity_versions VALUES(1277,21,'4.2.1','09/28/2012',' '); -INSERT INTO entity_versions VALUES(1278,21,'4.2.2','02/22/2013',' '); -INSERT INTO entity_versions VALUES(1279,21,'4.3','06/26/2013',' '); -INSERT INTO entity_versions VALUES(1280,21,'4.3.1','09/27/2013',' '); -INSERT INTO entity_versions VALUES(1281,21,'4.3.2','02/28/2014',' '); -INSERT INTO entity_versions VALUES(1282,21,'4.4.0','06/25/2014',' '); -INSERT INTO entity_versions VALUES(1283,21,'4.4.1','09/26/2014',' '); -INSERT INTO entity_versions VALUES(1284,21,'4.4.2','02/27/2015',' '); -INSERT INTO entity_versions VALUES(1285,21,'4.5.0','06/24/2015',' '); -INSERT INTO entity_versions VALUES(1286,21,'4.6.0','06/22/2016',' '); -INSERT INTO entity_versions VALUES(1287,21,'4.7.0','06/28/2017',' '); -INSERT INTO entity_versions VALUES(1288,21,'4.8.0','06/27/2018',' '); -INSERT INTO entity_versions VALUES(1289,21,'4.9.0','06/16/2021',' '); -INSERT INTO entity_versions VALUES(1290,55,'94','09/21/2021',' '); -INSERT INTO entity_versions VALUES(1291,55,'93','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1292,55,'92','06/20/2021',' '); -INSERT INTO entity_versions VALUES(1293,55,'91','05/25/2021',' '); -INSERT INTO entity_versions VALUES(1294,55,'90','04/14/2021',' '); -INSERT INTO entity_versions VALUES(1295,55,'89','03/09/2021',' '); -INSERT INTO entity_versions VALUES(1296,55,'88','01/19/2021',' '); -INSERT INTO entity_versions VALUES(1297,55,'87','11/17/2020',' '); -INSERT INTO entity_versions VALUES(1298,55,'86','10/06/2020',' '); -INSERT INTO entity_versions VALUES(1299,55,'85','08/25/2020',' '); -INSERT INTO entity_versions VALUES(1300,55,'84','07/14/2020',' '); -INSERT INTO entity_versions VALUES(1301,55,'83','05/19/2020',' '); -INSERT INTO entity_versions VALUES(1302,55,'81','04/07/2020',' '); -INSERT INTO entity_versions VALUES(1303,55,'80','02/04/2020',' '); -INSERT INTO entity_versions VALUES(1304,55,'79','12/11/2019',' '); -INSERT INTO entity_versions VALUES(1305,55,'78','10/22/2019',' '); -INSERT INTO entity_versions VALUES(1306,55,'77','09/10/2019',' '); -INSERT INTO entity_versions VALUES(1307,55,'76','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1308,55,'75','06/04/2019',' '); -INSERT INTO entity_versions VALUES(1309,55,'74','04/23/2019',' '); -INSERT INTO entity_versions VALUES(1310,55,'73','03/12/2019',' '); -INSERT INTO entity_versions VALUES(1311,55,'72','01/29/2019',' '); -INSERT INTO entity_versions VALUES(1312,55,'71','12/04/2018',' '); -INSERT INTO entity_versions VALUES(1313,55,'70','10/16/2018',' '); -INSERT INTO entity_versions VALUES(1314,55,'69','09/04/2018',' '); -INSERT INTO entity_versions VALUES(1315,55,'68','07/24/2018',' '); -INSERT INTO entity_versions VALUES(1316,55,'67','05/29/2018',' '); -INSERT INTO entity_versions VALUES(1317,55,'66','04/17/2018',' '); -INSERT INTO entity_versions VALUES(1318,55,'65','03/06/2018',' '); -INSERT INTO entity_versions VALUES(1319,55,'64','01/23/2018',' '); -INSERT INTO entity_versions VALUES(1320,55,'63','12/05/2017',' '); -INSERT INTO entity_versions VALUES(1321,55,'62','10/17/2017',' '); -INSERT INTO entity_versions VALUES(1322,55,'61','09/05/2017',' '); -INSERT INTO entity_versions VALUES(1323,55,'60','07/25/2017',' '); -INSERT INTO entity_versions VALUES(1324,55,'59','05/30/2017',' '); -INSERT INTO entity_versions VALUES(1325,55,'58','04/18/2017',' '); -INSERT INTO entity_versions VALUES(1326,55,'57','03/07/2017',' '); -INSERT INTO entity_versions VALUES(1327,150,'9.3','12/31/2022',' '); -INSERT INTO entity_versions VALUES(1328,150,'9.2','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1329,150,'9.1','10/31/2020','08/01/2022'); -INSERT INTO entity_versions VALUES(1330,150,'9.0','02/28/2020','10/01/2021'); -INSERT INTO entity_versions VALUES(1331,150,'8.3','07/31/2019','07/01/2023'); -INSERT INTO entity_versions VALUES(1332,150,'8.2','11/30/2018','02/01/2021'); -INSERT INTO entity_versions VALUES(1333,150,'8.1','05/31/2018','02/01/2021'); -INSERT INTO entity_versions VALUES(1334,150,'8.0','11/30/2017','02/01/2021'); -INSERT INTO entity_versions VALUES(1335,150,'7.1','04/30/2017','02/01/2021'); -INSERT INTO entity_versions VALUES(1336,27,'20210923171324','09/30/2021',' '); -INSERT INTO entity_versions VALUES(1337,27,'20210907035717','10/30/2021',' '); -INSERT INTO entity_versions VALUES(1338,27,'20210824134201','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1339,27,'20210813114337','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1340,27,'20210727104144','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1341,27,'20210720135142','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1342,27,'20210713164523','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1343,27,'20210629161835','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1344,27,'20210616033549','06/30/2021',' '); -INSERT INTO entity_versions VALUES(1345,27,'20210601124849','06/30/2021',' '); -INSERT INTO entity_versions VALUES(1346,27,'20210526024943','05/30/2021',' '); -INSERT INTO entity_versions VALUES(1347,27,'20210518074441','05/30/2021',' '); -INSERT INTO entity_versions VALUES(1348,27,'20210504084406','05/30/2021',' '); -INSERT INTO entity_versions VALUES(1349,27,'20210420090302','04/30/2021',' '); -INSERT INTO entity_versions VALUES(1350,27,'20210406040048','04/30/2021',' '); -INSERT INTO entity_versions VALUES(1351,27,'20210324172345','03/30/2021',' '); -INSERT INTO entity_versions VALUES(1352,27,'20210309093358','03/30/2021',' '); -INSERT INTO entity_versions VALUES(1353,27,'20210219171521','03/30/2021',' '); -INSERT INTO entity_versions VALUES(1354,27,'20210129162733','02/28/2021',' '); -INSERT INTO entity_versions VALUES(1355,27,'20210125155346','01/30/2021',' '); -INSERT INTO entity_versions VALUES(1356,27,'20210112001354','01/30/2021',' '); -INSERT INTO entity_versions VALUES(1357,27,'20201230192246','01/30/2021',' '); -INSERT INTO entity_versions VALUES(1358,27,'20201127104018','12/30/2020',' '); -INSERT INTO entity_versions VALUES(1359,27,'20201106153948','11/30/2020',' '); -INSERT INTO entity_versions VALUES(1360,27,'20201020140427','11/30/2020',' '); -INSERT INTO entity_versions VALUES(1361,27,'20201012185603','10/30/2020',' '); -INSERT INTO entity_versions VALUES(1362,27,'20201005173827','10/30/2020',' '); -INSERT INTO entity_versions VALUES(1363,27,'20200922182722','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1364,27,'20200908235050','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1365,27,'20200831163517','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1366,27,'20200816214709','08/30/2020',' '); -INSERT INTO entity_versions VALUES(1367,27,'20200811175306','08/30/2020',' '); -INSERT INTO entity_versions VALUES(1368,27,'20200807155122','08/30/2020',' '); -INSERT INTO entity_versions VALUES(1369,27,'20200728181447','07/30/2020',' '); -INSERT INTO entity_versions VALUES(1370,27,'20200707173044','07/30/2020',' '); -INSERT INTO entity_versions VALUES(1371,27,'20200701215317','07/30/2020',' '); -INSERT INTO entity_versions VALUES(1372,27,'20200617215626','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1373,27,'20200610173731','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1374,27,'20200603114954','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1375,27,'20200529133631','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1376,27,'20200520145933','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1377,27,'20200513205422','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1378,27,'20200506172513','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1379,27,'20200429153636','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1380,27,'20200420162758','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1381,27,'20200416222158','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1382,27,'20200408145843','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1383,27,'20200325163209','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1384,27,'20200316122114','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1385,27,'20200310163217','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1386,27,'20200303183409','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1387,27,'20200220011437','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1388,27,'20200131232134','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1389,27,'20200127203438','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1390,27,'20200123225613','01/30/2020',' '); -INSERT INTO entity_versions VALUES(1391,27,'20200115001116','01/30/2020',' '); -INSERT INTO entity_versions VALUES(1392,27,'20191211163405','12/30/2019',' '); -INSERT INTO entity_versions VALUES(1393,27,'20191129172405','12/30/2019',' '); -INSERT INTO entity_versions VALUES(1394,27,'20191104205453','11/30/2019',' '); -INSERT INTO entity_versions VALUES(1395,27,'20191030224959','11/30/2019',' '); -INSERT INTO entity_versions VALUES(1396,27,'20191024135531','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1397,27,'20191015190829','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1398,27,'20191007115919','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1399,27,'20191001203421','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1400,27,'20190904132002','09/30/2019',' '); -INSERT INTO entity_versions VALUES(1401,27,'20190827222442','09/30/2019',' '); -INSERT INTO entity_versions VALUES(1402,27,'20190820163418','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1403,27,'20190813170406','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1404,27,'20190806202030','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1405,27,'20190729085402','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1406,27,'20190722200451','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1407,27,'20190717161024','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1408,27,'20190711110747','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1409,27,'20190628200755','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1410,27,'20190617144820','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1411,27,'20190610211245','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1412,27,'20190605190944','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1413,27,'20190513175357','05/30/2019',' '); -INSERT INTO entity_versions VALUES(1414,27,'20190506101326','05/30/2019',' '); -INSERT INTO entity_versions VALUES(1415,27,'20190501153509','05/30/2019',' '); -INSERT INTO entity_versions VALUES(1416,27,'20190422213145','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1417,27,'20190415203801','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1418,27,'20190410001346','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1419,27,'20190325233053','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1420,27,'20190304193624','03/30/2019',' '); -INSERT INTO entity_versions VALUES(1421,27,'20190225235742','03/30/2019',' '); -INSERT INTO entity_versions VALUES(1422,27,'20190207004055','02/28/2019',' '); -INSERT INTO entity_versions VALUES(1423,27,'20190131011635','02/28/2019',' '); -INSERT INTO entity_versions VALUES(1424,27,'20190124232144','01/30/2019',' '); -INSERT INTO entity_versions VALUES(1425,27,'20190116225739','01/30/2019',' '); -INSERT INTO entity_versions VALUES(1426,27,'20181212095204','12/30/2018',' '); -INSERT INTO entity_versions VALUES(1427,27,'20181203095916','12/30/2018',' '); -INSERT INTO entity_versions VALUES(1428,27,'20181126154627','12/30/2018',' '); -INSERT INTO entity_versions VALUES(1429,27,'20181118185209','11/30/2018',' '); -INSERT INTO entity_versions VALUES(1430,27,'20181112131523','11/30/2018',' '); -INSERT INTO entity_versions VALUES(1431,27,'20181029174254','11/30/2018',' '); -INSERT INTO entity_versions VALUES(1432,27,'20181020020209','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1433,27,'20181015112149','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1434,27,'20181011135231','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1435,27,'20181001090525','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1436,27,'20180920223835','09/30/2018',' '); -INSERT INTO entity_versions VALUES(1437,27,'20180912124609','09/30/2018',' '); -INSERT INTO entity_versions VALUES(1438,27,'20180831173550','09/30/2018',' '); -INSERT INTO entity_versions VALUES(1439,27,'20180827132056','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1440,27,'20180817182829','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1441,27,'20180810152540','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1442,27,'20180807052402','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1443,27,'20180806202947','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1444,27,'20180803154514','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1445,27,'20180802181335','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1446,27,'20180728222031','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1447,27,'20180720170058','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1448,27,'20180717131009','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1449,27,'20180714142423','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1450,27,'20180706210448','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1451,27,'20180629132035','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1452,27,'20180621090851','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1453,27,'20180615105327','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1454,27,'20180608102534','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1455,27,'20180604124326','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1456,27,'20180519154949','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1457,27,'20180514204156','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1458,27,'20180504185246','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1459,27,'20180501212258','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1460,27,'20180430173459','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1461,27,'20180424200344','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1462,27,'20180424150704','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1463,27,'20180420141712','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1464,27,'20180416135645','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1465,27,'20180406143035','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1466,27,'20180403044658','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1467,27,'20180326145220','03/30/2018',' '); -INSERT INTO entity_versions VALUES(1468,27,'20180322085330','03/30/2018',' '); -INSERT INTO entity_versions VALUES(1469,27,'20180319150121','03/30/2018',' '); -INSERT INTO entity_versions VALUES(1470,249,'5','11/15/2016',' '); -INSERT INTO entity_versions VALUES(1471,249,'4.5','03/07/2016',' '); -INSERT INTO entity_versions VALUES(1472,249,'4','05/05/2015','05/08/2017'); -INSERT INTO entity_versions VALUES(1473,249,'3.5','05/27/2014','09/30/2016'); -INSERT INTO entity_versions VALUES(1474,249,'3.1','12/19/2013','06/10/2016'); -INSERT INTO entity_versions VALUES(1475,249,'3','07/17/2013','06/10/2016'); -INSERT INTO entity_versions VALUES(1476,249,'2','12/16/2012','06/10/2016'); -INSERT INTO entity_versions VALUES(1477,308,'5','06/12/1905',' '); -INSERT INTO entity_versions VALUES(1478,308,'5.01','04/15/1991',' '); -INSERT INTO entity_versions VALUES(1479,308,'5.2','02/15/1993',' '); -INSERT INTO entity_versions VALUES(1480,308,'5.2a','03/15/1993',' '); -INSERT INTO entity_versions VALUES(1481,308,'5.2b','06/25/1993',' '); -INSERT INTO entity_versions VALUES(1482,308,'5.2c','08/06/1993',' '); -INSERT INTO entity_versions VALUES(1483,308,'5.2d','03/25/1994',' '); -INSERT INTO entity_versions VALUES(1484,308,'5.2e','02/07/1995',' '); -INSERT INTO entity_versions VALUES(1485,308,'5.3','06/26/1995',' '); -INSERT INTO entity_versions VALUES(1486,308,'5.3a','05/20/1996',' '); -INSERT INTO entity_versions VALUES(1487,308,'5.3b','05/20/1997',' '); -INSERT INTO entity_versions VALUES(1488,230,'10','06/21/2017',' '); -INSERT INTO entity_versions VALUES(1489,230,'10.1','03/20/2019',' '); -INSERT INTO entity_versions VALUES(1490,230,'10.2','01/30/2019',' '); -INSERT INTO entity_versions VALUES(1491,230,'10.3','08/23/2019',' '); -INSERT INTO entity_versions VALUES(1492,230,'11','04/02/2020',' '); -INSERT INTO entity_versions VALUES(1493,230,'11.1','05/07/2020',' '); -INSERT INTO entity_versions VALUES(1494,230,'11.2','08/29/2020',' '); -INSERT INTO entity_versions VALUES(1495,230,'11.3','06/17/2021',' '); -INSERT INTO entity_versions VALUES(1496,246,' ',' ',' '); -INSERT INTO entity_versions VALUES(1497,3,'6','05/31/2017',' '); -INSERT INTO entity_versions VALUES(1498,178,'3','12/31/1992',' '); -INSERT INTO entity_versions VALUES(1499,178,'4','12/31/1994',' '); -INSERT INTO entity_versions VALUES(1500,178,'5','12/31/1995',' '); -INSERT INTO entity_versions VALUES(1501,178,'6','12/31/1998',' '); -INSERT INTO entity_versions VALUES(1502,178,'6.0.2','12/31/1999',' '); -INSERT INTO entity_versions VALUES(1503,178,'7','12/31/2000',' '); -INSERT INTO entity_versions VALUES(1504,178,'8','12/31/2001',' '); -INSERT INTO entity_versions VALUES(1505,178,'9','12/31/2003',' '); -INSERT INTO entity_versions VALUES(1506,178,'10','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1507,178,'11','12/31/2008',' '); -INSERT INTO entity_versions VALUES(1508,178,'12','12/31/2010',' '); -INSERT INTO entity_versions VALUES(1509,178,'16','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1510,178,'17','12/31/2021',' '); -INSERT INTO entity_versions VALUES(1511,232,'8.2.04',' ',' '); -INSERT INTO entity_versions VALUES(1512,10,'5','02/21/2017',' '); -INSERT INTO entity_versions VALUES(1513,10,'6','05/22/2017',' '); -INSERT INTO entity_versions VALUES(1514,10,'7','05/22/2017',' '); -INSERT INTO entity_versions VALUES(1515,365,'8.1','04/30/1999',' '); -INSERT INTO entity_versions VALUES(1516,365,'8.2','08/18/1999',' '); -INSERT INTO entity_versions VALUES(1517,365,'8.3','02/10/2000',' '); -INSERT INTO entity_versions VALUES(1518,365,'8.4','09/30/2002',' '); -INSERT INTO entity_versions VALUES(1519,365,'8.5','12/31/2007',' '); -INSERT INTO entity_versions VALUES(1520,365,'8.6','12/31/2012',' '); -INSERT INTO entity_versions VALUES(1521,365,'7.6','10/16/1996',' '); -INSERT INTO entity_versions VALUES(1522,365,'7.5','04/21/1996',' '); -INSERT INTO entity_versions VALUES(1523,365,'7.4','07/01/1995',' '); -INSERT INTO entity_versions VALUES(1524,145,' ',' ',' '); -INSERT INTO entity_versions VALUES(1525,7,'2.3.4','01/22/2021',' '); -INSERT INTO entity_versions VALUES(1526,7,'2.4.2','03/17/2021',' '); -INSERT INTO entity_versions VALUES(1527,7,'1.4.13',' ',' '); -INSERT INTO entity_versions VALUES(1528,7,'1.6.0',' ',' '); -INSERT INTO entity_versions VALUES(1529,7,'1.7.1',' ',' '); -INSERT INTO entity_versions VALUES(1530,7,'2.2.7',' ',' '); -INSERT INTO entity_versions VALUES(1531,7,'2.3.6',' ',' '); -INSERT INTO entity_versions VALUES(1532,7,'2.4.6',' ',' '); -INSERT INTO entity_versions VALUES(1533,7,'3.0.0',' ',' '); -INSERT INTO entity_versions VALUES(1534,60,' ',' ',' '); -INSERT INTO entity_versions VALUES(1535,12,'1.14.1','02/10/2021',' '); -INSERT INTO entity_versions VALUES(1536,12,'1.10.7','02/10/2021',' '); -INSERT INTO entity_versions VALUES(1537,12,'1.14.0','05/27/2020',' '); -INSERT INTO entity_versions VALUES(1538,12,'1.13.0','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1539,12,'1.12.2','07/24/2019',' '); -INSERT INTO entity_versions VALUES(1540,12,'1.10.6','07/24/2019',' '); -INSERT INTO entity_versions VALUES(1541,12,'1.9.12','07/24/2019',' '); -INSERT INTO entity_versions VALUES(1542,12,'1.12.0','04/24/2019',' '); -INSERT INTO entity_versions VALUES(1543,12,'1.11.1','01/11/2019',' '); -INSERT INTO entity_versions VALUES(1544,12,'1.10.4','01/11/2019',' '); -INSERT INTO entity_versions VALUES(1545,12,'1.9.10','01/11/2019',' '); -INSERT INTO entity_versions VALUES(1546,12,'1.11.0','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1547,12,'1.10.3','10/10/2018',' '); -INSERT INTO entity_versions VALUES(1548,12,'1.10.2','07/20/2018',' '); -INSERT INTO entity_versions VALUES(1549,12,'1.9.9','07/20/2018',' '); -INSERT INTO entity_versions VALUES(1550,12,'1.10.0','04/12/2018',' '); -INSERT INTO entity_versions VALUES(1551,12,'1.9.7','08/10/2017',' '); -INSERT INTO entity_versions VALUES(1552,12,'1.8.19','08/10/2017',' '); -INSERT INTO entity_versions VALUES(1553,12,'1.8.18','07/07/2017',' '); -INSERT INTO entity_versions VALUES(1554,12,'1.9.6','07/06/2017',' '); -INSERT INTO entity_versions VALUES(1555,12,'1.9.5','11/29/2016',' '); -INSERT INTO entity_versions VALUES(1556,12,'1.8.17','11/29/2016',' '); -INSERT INTO entity_versions VALUES(1557,12,'1.9.4','04/28/2016',' '); -INSERT INTO entity_versions VALUES(1558,12,'1.8.16','04/28/2016',' '); -INSERT INTO entity_versions VALUES(1559,12,'1.9.3','09/15/2015',' '); -INSERT INTO entity_versions VALUES(1560,12,'1.8.15','09/15/2015',' '); -INSERT INTO entity_versions VALUES(1561,12,'1.9.2','09/23/2015',' '); -INSERT INTO entity_versions VALUES(1562,12,'1.9.1','09/02/2015',' '); -INSERT INTO entity_versions VALUES(1563,12,'1.7.22','08/14/2015',' '); -INSERT INTO entity_versions VALUES(1564,12,'1.9.0','08/05/2015',' '); -INSERT INTO entity_versions VALUES(1565,12,'1.8.14','08/05/2015',' '); -INSERT INTO entity_versions VALUES(1566,12,'1.7.21','08/05/2015',' '); -INSERT INTO entity_versions VALUES(1567,12,'1.8.13','03/31/2015',' '); -INSERT INTO entity_versions VALUES(1568,12,'1.7.20','03/31/2015',' '); -INSERT INTO entity_versions VALUES(1569,12,'1.8.11','12/15/2014',' '); -INSERT INTO entity_versions VALUES(1570,12,'1.7.19','12/15/2014',' '); -INSERT INTO entity_versions VALUES(1571,12,'1.8.10','08/11/2014',' '); -INSERT INTO entity_versions VALUES(1572,12,'1.7.18','08/11/2014',' '); -INSERT INTO entity_versions VALUES(1573,12,'1.7.17','05/19/2014',' '); -INSERT INTO entity_versions VALUES(1574,12,'1.8.9','05/14/2014',' '); -INSERT INTO entity_versions VALUES(1575,12,'1.7.16','02/26/2014',' '); -INSERT INTO entity_versions VALUES(1576,12,'1.8.8','02/20/2014',' '); -INSERT INTO entity_versions VALUES(1577,12,'1.8.5','11/25/2013',' '); -INSERT INTO entity_versions VALUES(1578,12,'1.7.14','11/25/2013',' '); -INSERT INTO entity_versions VALUES(1579,12,'1.8.4','10/29/2013',' '); -INSERT INTO entity_versions VALUES(1580,12,'1.8.3','08/30/2013',' '); -INSERT INTO entity_versions VALUES(1581,12,'1.7.13','08/30/2013',' '); -INSERT INTO entity_versions VALUES(1582,12,'1.8.1','07/24/2013',' '); -INSERT INTO entity_versions VALUES(1583,12,'1.7.11','07/24/2013',' '); -INSERT INTO entity_versions VALUES(1584,12,'1.8.0','06/18/2013',' '); -INSERT INTO entity_versions VALUES(1585,12,'1.7.10','05/31/2013',' '); -INSERT INTO entity_versions VALUES(1586,12,'1.6.23','05/31/2013',' '); -INSERT INTO entity_versions VALUES(1587,12,'1.7.9','04/04/2013',' '); -INSERT INTO entity_versions VALUES(1588,12,'1.6.21','04/04/2013',' '); -INSERT INTO entity_versions VALUES(1589,12,'1.6.20','01/08/2013',' '); -INSERT INTO entity_versions VALUES(1590,12,'1.7.8','12/20/2012',' '); -INSERT INTO entity_versions VALUES(1591,12,'1.7.7','10/09/2012',' '); -INSERT INTO entity_versions VALUES(1592,12,'1.6.19','09/21/2012',' '); -INSERT INTO entity_versions VALUES(1593,12,'1.7.6','08/15/2012',' '); -INSERT INTO entity_versions VALUES(1594,12,'1.7.5','05/17/2012',' '); -INSERT INTO entity_versions VALUES(1595,12,'1.7.4','03/08/2012',' '); -INSERT INTO entity_versions VALUES(1596,12,'1.7.3','02/13/2012',' '); -INSERT INTO entity_versions VALUES(1597,12,'1.7.2','12/05/2011',' '); -INSERT INTO entity_versions VALUES(1598,12,'1.7.1','10/23/2011',' '); -INSERT INTO entity_versions VALUES(1599,12,'1.7.0','10/11/2011',' '); -INSERT INTO entity_versions VALUES(1600,12,'1.6.18','04/12/2012',' '); -INSERT INTO entity_versions VALUES(1601,12,'1.6.17','06/01/2011',' '); -INSERT INTO entity_versions VALUES(1602,12,'1.6.16','03/03/2011',' '); -INSERT INTO entity_versions VALUES(1603,12,'1.5.9','12/22/2010',' '); -INSERT INTO entity_versions VALUES(1604,12,'1.6.15','11/24/2010',' '); -INSERT INTO entity_versions VALUES(1605,12,'1.6.13','10/01/2010',' '); -INSERT INTO entity_versions VALUES(1606,12,'1.6.12','06/21/2010',' '); -INSERT INTO entity_versions VALUES(1607,12,'1.6.11','04/16/2010',' '); -INSERT INTO entity_versions VALUES(1608,12,'1.6.9','01/25/2010',' '); -INSERT INTO entity_versions VALUES(1609,12,'1.6.6','10/22/2009',' '); -INSERT INTO entity_versions VALUES(1610,12,'1.6.5','08/22/2009',' '); -INSERT INTO entity_versions VALUES(1611,12,'1.6.4','08/06/2009',' '); -INSERT INTO entity_versions VALUES(1612,12,'1.6.3','06/22/2009',' '); -INSERT INTO entity_versions VALUES(1613,12,'1.6.2','05/11/2009',' '); -INSERT INTO entity_versions VALUES(1614,12,'1.6.1','04/09/2009',' '); -INSERT INTO entity_versions VALUES(1615,12,'1.6.0','03/20/2009',' '); -INSERT INTO entity_versions VALUES(1616,12,'1.5.7','08/06/2009',' '); -INSERT INTO entity_versions VALUES(1617,12,'1.5.6','02/26/2009',' '); -INSERT INTO entity_versions VALUES(1618,12,'1.5.5','12/22/2008',' '); -INSERT INTO entity_versions VALUES(1619,12,'1.5.4','10/24/2008',' '); -INSERT INTO entity_versions VALUES(1620,12,'1.5.3','10/10/2008',' '); -INSERT INTO entity_versions VALUES(1621,12,'1.5.2','08/30/2008',' '); -INSERT INTO entity_versions VALUES(1622,12,'1.5.1','07/26/2008',' '); -INSERT INTO entity_versions VALUES(1623,12,'1.5.0','06/19/2008',' '); -INSERT INTO entity_versions VALUES(1624,12,'1.4.6','12/20/2007',' '); -INSERT INTO entity_versions VALUES(1625,12,'1.4.5','08/28/2007',' '); -INSERT INTO entity_versions VALUES(1626,12,'1.4.4','06/08/2007',' '); -INSERT INTO entity_versions VALUES(1627,12,'1.4.3','01/25/2007',' '); -INSERT INTO entity_versions VALUES(1628,12,'1.4.2','11/07/2006',' '); -INSERT INTO entity_versions VALUES(1629,12,'1.4.0','09/10/2006',' '); -INSERT INTO entity_versions VALUES(1630,12,'1.3.2','05/31/2006',' '); -INSERT INTO entity_versions VALUES(1631,12,'1.3.1','04/03/2006',' '); -INSERT INTO entity_versions VALUES(1632,12,'1.3.0','01/03/2006',' '); -INSERT INTO entity_versions VALUES(1633,12,'1.2.3','08/25/2005',' '); -INSERT INTO entity_versions VALUES(1634,12,'1.2.1','07/05/2005',' '); -INSERT INTO entity_versions VALUES(1635,12,'1.2.0','05/23/2005',' '); -INSERT INTO entity_versions VALUES(1636,12,'1.1.4','04/01/2005',' '); -INSERT INTO entity_versions VALUES(1637,12,'1.1.3','01/14/2005',' '); -INSERT INTO entity_versions VALUES(1638,12,'1.1.2','12/20/2004',' '); -INSERT INTO entity_versions VALUES(1639,12,'1.1.1','10/22/2004',' '); -INSERT INTO entity_versions VALUES(1640,12,'1.0.9','10/13/2004',' '); -INSERT INTO entity_versions VALUES(1641,12,'1.1.0','09/29/2004',' '); -INSERT INTO entity_versions VALUES(1642,12,'1.0.8','09/22/2004',' '); -INSERT INTO entity_versions VALUES(1643,12,'1.0.7','09/17/2004',' '); -INSERT INTO entity_versions VALUES(1644,12,'1.0.6','07/19/2004',' '); -INSERT INTO entity_versions VALUES(1645,12,'1.0.5','06/10/2004',' '); -INSERT INTO entity_versions VALUES(1646,12,'1.0.4','05/21/2004',' '); -INSERT INTO entity_versions VALUES(1647,12,'1.0.3','05/19/2004',' '); -INSERT INTO entity_versions VALUES(1648,12,'1.0.2','04/19/2004',' '); -INSERT INTO entity_versions VALUES(1649,12,'1.0.1','03/12/2004',' '); -INSERT INTO entity_versions VALUES(1650,12,'1.0.0','02/23/2004',' '); -INSERT INTO entity_versions VALUES(1651,12,'0.37','01/25/2004',' '); -INSERT INTO entity_versions VALUES(1652,12,'0.36','01/13/2004',' '); -INSERT INTO entity_versions VALUES(1653,12,'0.35.1','12/20/2003',' '); -INSERT INTO entity_versions VALUES(1654,12,'0.35','12/19/2003',' '); -INSERT INTO entity_versions VALUES(1655,12,'0.34','12/03/2003',' '); -INSERT INTO entity_versions VALUES(1656,12,'0.33.1','11/18/2003',' '); -INSERT INTO entity_versions VALUES(1657,12,'0.33','11/13/2003',' '); -INSERT INTO entity_versions VALUES(1658,12,'0.32.1','10/23/2003',' '); -INSERT INTO entity_versions VALUES(1659,12,'0.31','10/07/2003',' '); -INSERT INTO entity_versions VALUES(1660,12,'0.30','09/24/2003',' '); -INSERT INTO entity_versions VALUES(1661,12,'0.29','09/05/2003',' '); -INSERT INTO entity_versions VALUES(1662,12,'0.28.2','09/02/2003',' '); -INSERT INTO entity_versions VALUES(1663,12,'0.28.1','08/28/2003',' '); -INSERT INTO entity_versions VALUES(1664,12,'0.28','08/27/2003',' '); -INSERT INTO entity_versions VALUES(1665,12,'0.27','08/10/2003',' '); -INSERT INTO entity_versions VALUES(1666,12,'0.26','07/23/2003',' '); -INSERT INTO entity_versions VALUES(1667,12,'0.25','07/10/2003',' '); -INSERT INTO entity_versions VALUES(1668,12,'0.24.2','06/18/2003',' '); -INSERT INTO entity_versions VALUES(1669,12,'0.24.1','06/16/2003',' '); -INSERT INTO entity_versions VALUES(1670,12,'0.24','06/15/2003',' '); -INSERT INTO entity_versions VALUES(1671,12,'0.23','05/17/2003',' '); -INSERT INTO entity_versions VALUES(1672,12,'0.22.2','05/13/2003',' '); -INSERT INTO entity_versions VALUES(1673,12,'0.22.1','05/09/2003',' '); -INSERT INTO entity_versions VALUES(1674,12,'0.22','05/07/2003',' '); -INSERT INTO entity_versions VALUES(1675,12,'0.21','04/15/2003',' '); -INSERT INTO entity_versions VALUES(1676,12,'0.20.1','03/26/2003',' '); -INSERT INTO entity_versions VALUES(1677,12,'0.20','03/20/2003',' '); -INSERT INTO entity_versions VALUES(1678,12,'0.19.1','03/12/2003',' '); -INSERT INTO entity_versions VALUES(1679,12,'0.19','03/10/2003',' '); -INSERT INTO entity_versions VALUES(1680,12,'0.18.1','02/26/2003',' '); -INSERT INTO entity_versions VALUES(1681,12,'0.18','02/19/2003',' '); -INSERT INTO entity_versions VALUES(1682,12,'0.17.1','01/22/2003',' '); -INSERT INTO entity_versions VALUES(1683,12,'0.17','01/20/2003',' '); -INSERT INTO entity_versions VALUES(1684,12,'0.16.1','01/06/2003',' '); -INSERT INTO entity_versions VALUES(1685,12,'0.16','12/03/2002',' '); -INSERT INTO entity_versions VALUES(1686,12,'0.15','11/07/2002',' '); -INSERT INTO entity_versions VALUES(1687,12,'0.14.5','10/29/2002',' '); -INSERT INTO entity_versions VALUES(1688,12,'0.14.4','10/29/2002',' '); -INSERT INTO entity_versions VALUES(1689,12,'0.14.3','09/20/2002',' '); -INSERT INTO entity_versions VALUES(1690,12,'0.14.2','08/22/2002',' '); -INSERT INTO entity_versions VALUES(1691,12,'0.14.1','08/09/2002',' '); -INSERT INTO entity_versions VALUES(1692,12,'0.13.2','06/28/2002',' '); -INSERT INTO entity_versions VALUES(1693,12,'0.13.1','06/20/2002',' '); -INSERT INTO entity_versions VALUES(1694,12,'0.13.0','06/10/2002',' '); -INSERT INTO entity_versions VALUES(1695,12,'0.12','05/03/2002',' '); -INSERT INTO entity_versions VALUES(1696,12,'0.11','04/12/2002',' '); -INSERT INTO entity_versions VALUES(1697,12,'0.10','03/08/2002',' '); -INSERT INTO entity_versions VALUES(1698,12,'0.9','02/18/2002',' '); -INSERT INTO entity_versions VALUES(1699,12,'0.8','01/14/2002',' '); -INSERT INTO entity_versions VALUES(1700,12,'0.7','12/03/2001',' '); -INSERT INTO entity_versions VALUES(1701,422,'9',' ',' '); -INSERT INTO entity_versions VALUES(1702,422,'8',' ',' '); -INSERT INTO entity_versions VALUES(1703,422,'7',' ',' '); -INSERT INTO entity_versions VALUES(1704,422,'6',' ',' '); -INSERT INTO entity_versions VALUES(1705,422,'5',' ',' '); -INSERT INTO entity_versions VALUES(1706,422,'4',' ',' '); -INSERT INTO entity_versions VALUES(1707,422,'3',' ',' '); -INSERT INTO entity_versions VALUES(1708,422,'2',' ',' '); -INSERT INTO entity_versions VALUES(1709,43,'11.5',' ',' '); -INSERT INTO entity_versions VALUES(1710,43,'11.1',' ','04/30/2022'); -INSERT INTO entity_versions VALUES(1711,43,'10.5',' ','04/30/2023'); -INSERT INTO entity_versions VALUES(1712,43,'10.1',' ','09/30/2020'); -INSERT INTO entity_versions VALUES(1713,43,'9.8',' ','04/30/2016'); -INSERT INTO entity_versions VALUES(1714,43,'9.7',' ','09/30/2020'); -INSERT INTO entity_versions VALUES(1715,43,'9.5',' ','04/30/2015'); -INSERT INTO entity_versions VALUES(1716,43,'9.1',' ','04/30/2012'); -INSERT INTO entity_versions VALUES(1717,43,'8.1',' ','04/30/2009'); -INSERT INTO entity_versions VALUES(1718,68,'10','03/27/2015',' '); -INSERT INTO entity_versions VALUES(1719,68,'9','06/28/2013',' '); -INSERT INTO entity_versions VALUES(1720,330,'12.1',' ',' '); -INSERT INTO entity_versions VALUES(1721,330,'14.1',' ',' '); -INSERT INTO entity_versions VALUES(1722,81,'9.2','07/23/2020',' '); -INSERT INTO entity_versions VALUES(1723,81,'9.1','07/27/2018',' '); -INSERT INTO entity_versions VALUES(1724,81,'IBM MQ on IBM Cloud','03/13/2018',' '); -INSERT INTO entity_versions VALUES(1725,81,'IBM MQ for HPE Nonstop 8.0','06/23/2017',' '); -INSERT INTO entity_versions VALUES(1726,81,'9.0','06/02/2016',' '); -INSERT INTO entity_versions VALUES(1727,81,'8.0','05/23/2014',' '); -INSERT INTO entity_versions VALUES(1728,81,'7.5','06/15/2012',' '); -INSERT INTO entity_versions VALUES(1729,81,'7.1','11/30/2011',' '); -INSERT INTO entity_versions VALUES(1730,81,'7.0','06/30/2008',' '); -INSERT INTO entity_versions VALUES(1731,81,'7.0','05/31/2008',' '); -INSERT INTO entity_versions VALUES(1732,81,'6.0','06/30/2005',' '); -INSERT INTO entity_versions VALUES(1733,81,'WebSphere MQ 6.0 (Distributed, iSeries)','05/31/2005',' '); -INSERT INTO entity_versions VALUES(1734,81,'5.3','06/30/2002',' '); -INSERT INTO entity_versions VALUES(1735,81,'WebSphere MQ 5.3 (Distributed, iSeries)','11/30/2002',' '); -INSERT INTO entity_versions VALUES(1736,81,'MQSeries 5.2 (Distributed)','12/31/2000',' '); -INSERT INTO entity_versions VALUES(1737,81,'5.2','11/30/2000',' '); -INSERT INTO entity_versions VALUES(1738,81,'5.1','08/31/2000',' '); -INSERT INTO entity_versions VALUES(1739,81,'2.1','02/28/1999',' '); -INSERT INTO entity_versions VALUES(1740,81,'5.1','06/30/1999',' '); -INSERT INTO entity_versions VALUES(1741,81,'4.2','02/28/1998',' '); -INSERT INTO entity_versions VALUES(1742,81,'5.0','10/31/1997',' '); -INSERT INTO entity_versions VALUES(1743,81,'1.2','08/29/1997',' '); -INSERT INTO entity_versions VALUES(1744,81,'1.1.4,','06/30/1996',' '); -INSERT INTO entity_versions VALUES(1745,81,'2.2','07/31/1996',' '); -INSERT INTO entity_versions VALUES(1746,81,'2.0','06/30/1996',' '); -INSERT INTO entity_versions VALUES(1747,81,'2.2','12/31/1995',' '); -INSERT INTO entity_versions VALUES(1748,81,'1.1.3','05/31/1995',' '); -INSERT INTO entity_versions VALUES(1749,81,'2.0','02/28/1995',' '); -INSERT INTO entity_versions VALUES(1750,81,'3','12/31/1994',' '); -INSERT INTO entity_versions VALUES(1751,81,'3.0','07/01/1994',' '); -INSERT INTO entity_versions VALUES(1752,81,'1.1.2','06/01/1994',' '); -INSERT INTO entity_versions VALUES(1753,81,'2.3','04/30/1994',' '); -INSERT INTO entity_versions VALUES(1754,81,'1.1.1','12/31/1993',' '); -INSERT INTO entity_versions VALUES(1755,127,'9.5.3',' ',' '); -INSERT INTO entity_versions VALUES(1756,169,' ',' ',' '); -INSERT INTO entity_versions VALUES(1757,36,' ',' ',' '); -INSERT INTO entity_versions VALUES(1758,225,'3','12/31/1986',' '); -INSERT INTO entity_versions VALUES(1759,225,'4','12/31/1988',' '); -INSERT INTO entity_versions VALUES(1760,225,'5','12/31/1990',' '); -INSERT INTO entity_versions VALUES(1761,225,'6','12/31/1994',' '); -INSERT INTO entity_versions VALUES(1762,225,'7','12/31/1997',' '); -INSERT INTO entity_versions VALUES(1763,225,'8','12/31/2001',' '); -INSERT INTO entity_versions VALUES(1764,225,'9','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1765,225,'9.4','12/31/2010',' '); -INSERT INTO entity_versions VALUES(1766,225,'9.5','12/31/2011',' '); -INSERT INTO entity_versions VALUES(1767,225,'9.6','12/31/2012',' '); -INSERT INTO entity_versions VALUES(1768,225,'9.7','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1769,225,'10','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1770,225,'10.4','12/31/2021',' '); -INSERT INTO entity_versions VALUES(1771,219,'8.5.0','12/31/2019',' '); -INSERT INTO entity_versions VALUES(1772,128,'2.5.0','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1773,128,'2.5.1','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1774,128,'2.5.2','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1775,128,'2.5.3','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1776,128,'2.4.0','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1777,128,'2.4.1','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1778,128,'2.4.2','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1779,128,'2.4.3','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1780,128,'2.4.4','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1781,128,'2.4.5','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1782,128,'2.4.6','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1783,128,'2.4.7','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1784,128,'2.4.8','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1785,128,'2.4.9','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1786,128,'2.4.10','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1787,128,'2.4.11','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1788,128,'2.3.0','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1789,128,'2.3.1','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1790,128,'2.3.2','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1791,128,'2.3.3','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1792,128,'2.3.4','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1793,128,'2.3.5','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1794,128,'2.3.6','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1795,128,'2.3.7','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1796,128,'2.3.8','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1797,128,'2.3.9','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1798,128,'2.3.10','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1799,128,'2.3.11','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1800,128,'2.3.12','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1801,128,'2.3.13','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1802,128,'2.3.14','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1803,128,'2.3.15','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1804,128,'2.3.16','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1805,128,'2.3.17','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1806,128,'2.3.18','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1807,128,'2.2.0','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1808,128,'2.2.1','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1809,128,'2.2.2','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1810,128,'2.2.3','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1811,128,'2.1.0','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1812,128,'2.1.1','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1813,128,'2.1.2','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1814,128,'2.1.3','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1815,128,'2.1.4','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1816,215,'15','03/31/2014',' '); -INSERT INTO entity_versions VALUES(1817,215,'16','11/30/2016',' '); -INSERT INTO entity_versions VALUES(1818,117,'1','11/09/2006',' '); -INSERT INTO entity_versions VALUES(1819,117,'1.5','11/30/2005',' '); -INSERT INTO entity_versions VALUES(1820,117,'2','10/24/2006',' '); -INSERT INTO entity_versions VALUES(1821,117,'3','06/17/2008',' '); -INSERT INTO entity_versions VALUES(1822,117,'3.5','06/30/2009',' '); -INSERT INTO entity_versions VALUES(1823,117,'3.6','01/21/2010',' '); -INSERT INTO entity_versions VALUES(1824,117,'4','10/13/2006',' '); -INSERT INTO entity_versions VALUES(1825,146,'1','03/31/2006',' '); -INSERT INTO entity_versions VALUES(1826,146,'1.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1827,146,'1.2.1','08/31/2007',' '); -INSERT INTO entity_versions VALUES(1828,146,'1.5','04/30/2008',' '); -INSERT INTO entity_versions VALUES(1829,146,'1.5.1','06/30/2008',' '); -INSERT INTO entity_versions VALUES(1830,146,'1.5.3','12/31/2008',' '); -INSERT INTO entity_versions VALUES(1831,146,'1.5.4','03/31/2009',' '); -INSERT INTO entity_versions VALUES(1832,146,'1.5.5','07/31/2009',' '); -INSERT INTO entity_versions VALUES(1833,146,'2.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(1834,146,'3','03/31/2011',' '); -INSERT INTO entity_versions VALUES(1835,146,'3.1','02/28/2012',' '); -INSERT INTO entity_versions VALUES(1836,146,'3.2','08/31/2012',' '); -INSERT INTO entity_versions VALUES(1837,146,'4','12/31/2013',' '); -INSERT INTO entity_versions VALUES(1838,146,'4.0.1','02/28/2014',' '); -INSERT INTO entity_versions VALUES(1839,146,'4.0.2','05/31/2014',' '); -INSERT INTO entity_versions VALUES(1840,146,'4.0.3','09/30/2014',' '); -INSERT INTO entity_versions VALUES(1841,146,'4.1.1','06/30/2015',' '); -INSERT INTO entity_versions VALUES(1842,146,'4.1.2','10/31/2015',' '); -INSERT INTO entity_versions VALUES(1843,146,'4.1.3','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1844,146,'4.1.5','09/30/2016',' '); -INSERT INTO entity_versions VALUES(1845,146,'4.2.0','04/30/2017',' '); -INSERT INTO entity_versions VALUES(1846,146,'17.2','07/31/2017',' '); -INSERT INTO entity_versions VALUES(1847,146,'17.4','12/31/2017',' '); -INSERT INTO entity_versions VALUES(1848,146,'18.1','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1849,146,'18.2','07/31/2018',' '); -INSERT INTO entity_versions VALUES(1850,146,'18.3','10/31/2018',' '); -INSERT INTO entity_versions VALUES(1851,146,'18.4','01/31/2019',' '); -INSERT INTO entity_versions VALUES(1852,146,'19.1','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1853,146,'19.2','08/31/2019',' '); -INSERT INTO entity_versions VALUES(1854,146,'19.4','12/31/2019',' '); -INSERT INTO entity_versions VALUES(1855,146,'20.2','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1856,146,'20.4','01/31/2021',' '); -INSERT INTO entity_versions VALUES(1857,146,'20.4.1','02/28/2021',' '); -INSERT INTO entity_versions VALUES(1858,146,'21.2','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1859,241,'2.16.0','11/23/2018',' '); -INSERT INTO entity_versions VALUES(1860,241,'2.15.2','01/28/2018',' '); -INSERT INTO entity_versions VALUES(1861,241,'2.14.0','02/02/2013',' '); -INSERT INTO entity_versions VALUES(1862,241,'2.13.20','10/20/2013',' '); -INSERT INTO entity_versions VALUES(1863,241,'2.12.0','03/05/2009',' '); -INSERT INTO entity_versions VALUES(1864,241,'2.11.1','07/11/2008',' '); -INSERT INTO entity_versions VALUES(1865,241,'2.9.1','04/23/2008',' '); -INSERT INTO entity_versions VALUES(1866,241,'2.8','03/04/2008',' '); -INSERT INTO entity_versions VALUES(1867,241,'2.7.1','11/16/2006',' '); -INSERT INTO entity_versions VALUES(1868,241,' ',' ',' '); -INSERT INTO entity_versions VALUES(1869,115,' ',' ',' '); -INSERT INTO entity_versions VALUES(1870,86,' ','12/31/2008',' '); -INSERT INTO entity_versions VALUES(1871,4,'1','06/15/1993',' '); -INSERT INTO entity_versions VALUES(1872,4,'2','09/01/1994',' '); -INSERT INTO entity_versions VALUES(1873,4,'3','11/01/1996',' '); -INSERT INTO entity_versions VALUES(1874,4,'4','04/01/1999',' '); -INSERT INTO entity_versions VALUES(1875,4,'5','05/01/2001',' '); -INSERT INTO entity_versions VALUES(1876,4,'6','07/01/2003',' '); -INSERT INTO entity_versions VALUES(1877,4,'7','12/28/2004',' '); -INSERT INTO entity_versions VALUES(1878,4,'8','11/03/2006',' '); -INSERT INTO entity_versions VALUES(1879,4,'9','06/02/2008',' '); -INSERT INTO entity_versions VALUES(1880,4,'10','11/15/2010',' '); -INSERT INTO entity_versions VALUES(1881,4,'11','10/15/2012',' '); -INSERT INTO entity_versions VALUES(1882,4,'2015','04/06/2015',' '); -INSERT INTO entity_versions VALUES(1883,4,'2017','06/06/2017',' '); -INSERT INTO entity_versions VALUES(1884,4,'2020','06/01/2020',' '); -INSERT INTO entity_versions VALUES(1885,101,'1.5','12/31/2000',' '); -INSERT INTO entity_versions VALUES(1886,101,'2012','09/30/2011',' '); -INSERT INTO entity_versions VALUES(1887,101,'7 ','02/28/2016',' '); -INSERT INTO entity_versions VALUES(1888,101,'7.0.4.17','05/27/2016',' '); -INSERT INTO entity_versions VALUES(1889,88,'2.8','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1890,88,'2.81','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1891,125,'20.03','03/31/2020',' '); -INSERT INTO entity_versions VALUES(1892,125,'21.05','05/31/2021',' '); -INSERT INTO entity_versions VALUES(1893,234,'8.6',' ',' '); -INSERT INTO entity_versions VALUES(1894,234,'8.5.1','05/22/2020',' '); -INSERT INTO entity_versions VALUES(1895,231,'7.0.0','04/02/2020',' '); -INSERT INTO entity_versions VALUES(1896,231,'6.7','04/17/2018',' '); -INSERT INTO entity_versions VALUES(1897,231,'6.5','11/15/2016',' '); -INSERT INTO entity_versions VALUES(1898,231,'6','03/12/2015',' '); -INSERT INTO entity_versions VALUES(1899,231,'5.5','09/22/2013',' '); -INSERT INTO entity_versions VALUES(1900,231,'5','08/24/2011',' '); -INSERT INTO entity_versions VALUES(1901,56,'5','09/30/2017',' '); -INSERT INTO entity_versions VALUES(1902,56,'6','09/30/2019',' '); -INSERT INTO entity_versions VALUES(1903,57,'1','04/30/2006',' '); -INSERT INTO entity_versions VALUES(1904,57,'2.7.7','05/31/2018',' '); -INSERT INTO entity_versions VALUES(1905,57,'2.8.5','09/15/2018',' '); -INSERT INTO entity_versions VALUES(1906,57,'2.9.2','11/09/2018',' '); -INSERT INTO entity_versions VALUES(1907,57,'2.10.1','09/21/2020',' '); -INSERT INTO entity_versions VALUES(1908,57,'3.1.4','08/03/2020',' '); -INSERT INTO entity_versions VALUES(1909,57,'3.2.2','01/09/2021',' '); -INSERT INTO entity_versions VALUES(1910,57,'3.3.1','06/15/2021',' '); -INSERT INTO entity_versions VALUES(1911,124,'3.29.1','12/24/2020',' '); -INSERT INTO entity_versions VALUES(1912,124,'3.29','12/04/2020',' '); -INSERT INTO entity_versions VALUES(1913,124,'3.28.1','10/19/2020',' '); -INSERT INTO entity_versions VALUES(1914,124,'3.28','10/01/2020',' '); -INSERT INTO entity_versions VALUES(1915,124,'3.27','09/03/2020',' '); -INSERT INTO entity_versions VALUES(1916,124,'3.26.1','08/12/2020',' '); -INSERT INTO entity_versions VALUES(1917,124,'3.26','08/10/2020',' '); -INSERT INTO entity_versions VALUES(1918,124,'3.25.1','07/29/2020',' '); -INSERT INTO entity_versions VALUES(1919,124,'3.25','07/13/2020',' '); -INSERT INTO entity_versions VALUES(1920,124,'3.24','06/08/2020',' '); -INSERT INTO entity_versions VALUES(1921,124,'3.23','05/05/2020',' '); -INSERT INTO entity_versions VALUES(1922,124,'3.22.1','04/16/2020',' '); -INSERT INTO entity_versions VALUES(1923,124,'3.22.0','03/27/2020',' '); -INSERT INTO entity_versions VALUES(1924,124,'3',' ',' '); -INSERT INTO entity_versions VALUES(1925,188,'6','10/01/2013','10/22/2019'); -INSERT INTO entity_versions VALUES(1926,188,'6.1','05/06/2014','10/22/2019'); -INSERT INTO entity_versions VALUES(1927,188,'6.2','10/07/2014','10/22/2019'); -INSERT INTO entity_versions VALUES(1928,188,'6.3','09/22/2015','10/22/2019'); -INSERT INTO entity_versions VALUES(1929,188,'6.4','04/05/2016','10/22/2019'); -INSERT INTO entity_versions VALUES(1930,188,'6.5','09/27/2016','10/22/2019'); -INSERT INTO entity_versions VALUES(1931,188,'6.6','05/02/2017','01/31/2020'); -INSERT INTO entity_versions VALUES(1932,188,'7','09/26/2017','01/31/2020'); -INSERT INTO entity_versions VALUES(1933,188,'7.1','04/24/2018','10/31/2020'); -INSERT INTO entity_versions VALUES(1934,188,'7.2','10/02/2018','04/30/2021'); -INSERT INTO entity_versions VALUES(1935,188,'7.3','06/04/2019','10/22/2021'); -INSERT INTO entity_versions VALUES(1936,188,'8','10/22/2019','10/22/2021'); -INSERT INTO entity_versions VALUES(1937,188,'8.1','10/19/2020','10/19/2022'); -INSERT INTO entity_versions VALUES(1938,188,'8.2','05/12/2021','05/12/2023'); -INSERT INTO entity_versions VALUES(1939,151,'7','12/31/1997',' '); -INSERT INTO entity_versions VALUES(1940,151,'7.5','12/31/1998',' '); -INSERT INTO entity_versions VALUES(1941,151,'9','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1942,151,'9.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(1943,151,'9.2','12/31/2013',' '); -INSERT INTO entity_versions VALUES(1944,84,'12.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1945,84,'13.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1946,84,'14.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1947,84,'15.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1948,84,'15.2.0',' ',' '); -INSERT INTO entity_versions VALUES(1949,603,'2013','08/31/2013',' '); -INSERT INTO entity_versions VALUES(1950,603,'2016','04/30/2016',' '); -INSERT INTO entity_versions VALUES(1951,603,'2019',' ',' '); -INSERT INTO entity_versions VALUES(1952,193,' ',' ',' '); -INSERT INTO entity_versions VALUES(1953,6,'5.16.3','08/17/2021',' '); -INSERT INTO entity_versions VALUES(1954,6,'5.16.2','04/28/2021',' '); -INSERT INTO entity_versions VALUES(1955,6,'5.16.1','01/20/2021',' '); -INSERT INTO entity_versions VALUES(1956,6,'5.16.0',' ',' '); -INSERT INTO entity_versions VALUES(1957,6,'5.15.15','04/28/2021',' '); -INSERT INTO entity_versions VALUES(1958,6,'5.15.14','12/09/2020',' '); -INSERT INTO entity_versions VALUES(1959,6,'5.15.13',' ',' '); -INSERT INTO entity_versions VALUES(1960,6,'5.15.12',' ',' '); -INSERT INTO entity_versions VALUES(1961,6,'5.15.11',' ',' '); -INSERT INTO entity_versions VALUES(1962,6,'5.15.10',' ',' '); -INSERT INTO entity_versions VALUES(1963,6,'5.15.9',' ',' '); -INSERT INTO entity_versions VALUES(1964,6,'5.15.8',' ',' '); -INSERT INTO entity_versions VALUES(1965,6,'5.15.7',' ',' '); -INSERT INTO entity_versions VALUES(1966,6,'5.15.6',' ',' '); -INSERT INTO entity_versions VALUES(1967,6,'5.15.5',' ',' '); -INSERT INTO entity_versions VALUES(1968,6,'5.15.4',' ',' '); -INSERT INTO entity_versions VALUES(1969,6,'5.15.3',' ',' '); -INSERT INTO entity_versions VALUES(1970,6,'5.15.2',' ',' '); -INSERT INTO entity_versions VALUES(1971,6,'5.15.1',' ',' '); -INSERT INTO entity_versions VALUES(1972,6,'5.15.0',' ',' '); -INSERT INTO entity_versions VALUES(1973,6,'5.14.5',' ',' '); -INSERT INTO entity_versions VALUES(1974,6,'5.14.4',' ',' '); -INSERT INTO entity_versions VALUES(1975,6,'5.14.3',' ',' '); -INSERT INTO entity_versions VALUES(1976,6,'5.14.2',' ',' '); -INSERT INTO entity_versions VALUES(1977,6,'5.14.1',' ',' '); -INSERT INTO entity_versions VALUES(1978,6,'5.14.0',' ',' '); -INSERT INTO entity_versions VALUES(1979,6,'5.13.4',' ',' '); -INSERT INTO entity_versions VALUES(1980,6,'5.13.3',' ',' '); -INSERT INTO entity_versions VALUES(1981,6,'5.13.2',' ',' '); -INSERT INTO entity_versions VALUES(1982,6,'5.13.1',' ',' '); -INSERT INTO entity_versions VALUES(1983,6,'5.13.0',' ',' '); -INSERT INTO entity_versions VALUES(1984,6,'5.12.2',' ',' '); -INSERT INTO entity_versions VALUES(1985,6,'5.12.1',' ',' '); -INSERT INTO entity_versions VALUES(1986,6,'5.12.0',' ',' '); -INSERT INTO entity_versions VALUES(1987,6,'5.11.3',' ',' '); -INSERT INTO entity_versions VALUES(1988,6,'5.11.2',' ',' '); -INSERT INTO entity_versions VALUES(1989,6,'5.11.1',' ',' '); -INSERT INTO entity_versions VALUES(1990,6,'5.11.0',' ',' '); -INSERT INTO entity_versions VALUES(1991,6,'5.10.2',' ',' '); -INSERT INTO entity_versions VALUES(1992,6,'5.10.1',' ',' '); -INSERT INTO entity_versions VALUES(1993,6,'5.10.0',' ',' '); -INSERT INTO entity_versions VALUES(1994,6,'5.9.1',' ',' '); -INSERT INTO entity_versions VALUES(1995,6,'5.9.0',' ',' '); -INSERT INTO entity_versions VALUES(1996,6,'5.8.0',' ',' '); -INSERT INTO entity_versions VALUES(1997,6,'5.7.0',' ',' '); -INSERT INTO entity_versions VALUES(1998,6,'5.6.0',' ',' '); -INSERT INTO entity_versions VALUES(1999,6,'5.5.1',' ',' '); -INSERT INTO entity_versions VALUES(2000,6,'5.5.0',' ',' '); -INSERT INTO entity_versions VALUES(2001,6,'5.4.3',' ',' '); -INSERT INTO entity_versions VALUES(2002,6,'5.4.2',' ',' '); -INSERT INTO entity_versions VALUES(2003,6,'5.4.1',' ',' '); -INSERT INTO entity_versions VALUES(2004,6,'5.4.0',' ',' '); -INSERT INTO entity_versions VALUES(2005,6,'5.3.2',' ',' '); -INSERT INTO entity_versions VALUES(2006,6,'5.3.1',' ',' '); -INSERT INTO entity_versions VALUES(2007,6,'5.3.0',' ',' '); -INSERT INTO entity_versions VALUES(2008,6,'5.2.0',' ',' '); -INSERT INTO entity_versions VALUES(2009,6,'5.1.0',' ',' '); -INSERT INTO entity_versions VALUES(2010,6,'5.0.0',' ',' '); -INSERT INTO entity_versions VALUES(2011,240,'10',' ',' '); -INSERT INTO entity_versions VALUES(2012,240,'9.2',' ',' '); -INSERT INTO entity_versions VALUES(2013,248,'0',' ',' '); -INSERT INTO entity_versions VALUES(2014,248,'1',' ',' '); -INSERT INTO entity_versions VALUES(2015,248,'2',' ',' '); -INSERT INTO entity_versions VALUES(2016,248,'3',' ',' '); -INSERT INTO entity_versions VALUES(2017,248,'4',' ',' '); -INSERT INTO entity_versions VALUES(2018,79,'9.2',' ',' '); -INSERT INTO entity_versions VALUES(2019,79,'9.1',' ',' '); -INSERT INTO entity_versions VALUES(2020,79,'8.6',' ',' '); -INSERT INTO entity_versions VALUES(2021,83,'8.2',' ',' '); -INSERT INTO entity_versions VALUES(2022,83,'8.3',' ',' '); -INSERT INTO entity_versions VALUES(2023,83,'9',' ',' '); -INSERT INTO entity_versions VALUES(2024,83,'10',' ',' '); -INSERT INTO entity_versions VALUES(2025,157,'14','09/30/2021',' '); -INSERT INTO entity_versions VALUES(2026,157,'13','09/24/2020',' '); -INSERT INTO entity_versions VALUES(2027,157,'12','10/03/2019',' '); -INSERT INTO entity_versions VALUES(2028,157,'11','10/18/2018',' '); -INSERT INTO entity_versions VALUES(2029,157,'10','10/05/2017',' '); -INSERT INTO entity_versions VALUES(2030,157,'9.6','09/29/2016',' '); -INSERT INTO entity_versions VALUES(2031,157,'9.5','01/07/2016',' '); -INSERT INTO entity_versions VALUES(2032,157,'9.4','12/18/2014',' '); -INSERT INTO entity_versions VALUES(2033,157,'9.3','09/09/2013',' '); -INSERT INTO entity_versions VALUES(2034,157,'9.2','09/10/2012',' '); -INSERT INTO entity_versions VALUES(2035,157,'9.1','09/12/2011',' '); -INSERT INTO entity_versions VALUES(2036,157,'9','09/20/2010',' '); -INSERT INTO entity_versions VALUES(2037,157,'8.4','07/01/2009',' '); -INSERT INTO entity_versions VALUES(2038,157,'8.3','02/04/2008',' '); -INSERT INTO entity_versions VALUES(2039,157,'8.2','12/05/2006',' '); -INSERT INTO entity_versions VALUES(2040,157,'8.1','11/08/2005',' '); -INSERT INTO entity_versions VALUES(2041,157,'8','01/19/2005',' '); -INSERT INTO entity_versions VALUES(2042,157,'7.4','11/17/2003',' '); -INSERT INTO entity_versions VALUES(2043,157,'7.3','11/27/2002',' '); -INSERT INTO entity_versions VALUES(2044,157,'7.2','02/04/2002',' '); -INSERT INTO entity_versions VALUES(2045,157,'7.1','04/13/2001',' '); -INSERT INTO entity_versions VALUES(2046,157,'7','05/08/2000',' '); -INSERT INTO entity_versions VALUES(2047,157,'6.5','06/09/1999',' '); -INSERT INTO entity_versions VALUES(2048,157,'6.4','10/30/1998',' '); -INSERT INTO entity_versions VALUES(2049,157,'6.3','03/01/1998',' '); -INSERT INTO entity_versions VALUES(2050,11,'1','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2051,11,'1.3','12/31/2008',' '); -INSERT INTO entity_versions VALUES(2052,11,'1.4','12/31/2009',' '); -INSERT INTO entity_versions VALUES(2053,11,'4','10/31/2012',' '); -INSERT INTO entity_versions VALUES(2054,11,'5','10/31/2015',' '); -INSERT INTO entity_versions VALUES(2055,11,'6','04/30/2016',' '); -INSERT INTO entity_versions VALUES(2056,11,'7','09/30/2017',' '); -INSERT INTO entity_versions VALUES(2057,11,'8','03/31/2019',' '); -INSERT INTO entity_versions VALUES(2058,73,'08.10.05','12/18/2020',' '); -INSERT INTO entity_versions VALUES(2059,73,'08.10.02','06/19/2019',' '); -INSERT INTO entity_versions VALUES(2060,73,'08.10.00','12/07/2018',' '); -INSERT INTO entity_versions VALUES(2061,73,'08.09.02','03/23/2018','04/30/2022'); -INSERT INTO entity_versions VALUES(2062,73,'08.09.01','11/10/2017','04/30/2022'); -INSERT INTO entity_versions VALUES(2063,73,'08.09.00','03/03/2017','04/30/2022'); -INSERT INTO entity_versions VALUES(2064,73,'08.08.01','07/19/2016','04/30/2021'); -INSERT INTO entity_versions VALUES(2065,73,'08.08.00','11/27/2015','04/30/2021'); -INSERT INTO entity_versions VALUES(2066,73,'08.07.01','05/15/2015','04/30/2020'); -INSERT INTO entity_versions VALUES(2067,73,'08.07.00','12/05/2014','04/30/2020'); -INSERT INTO entity_versions VALUES(2068,73,'08.06.00','06/06/2014','09/30/2019'); -INSERT INTO entity_versions VALUES(2069,73,'08.05.01','11/29/2013','09/30/2018'); -INSERT INTO entity_versions VALUES(2070,73,'08.05.00','06/07/2013','09/30/2018'); -INSERT INTO entity_versions VALUES(2071,73,'08.00.01','12/30/2012','09/30/2017'); -INSERT INTO entity_versions VALUES(2072,73,'08.00.00','06/08/2012','09/30/2017'); -INSERT INTO entity_versions VALUES(2073,73,'07.05.00','11/18/2011','04/30/2017'); -INSERT INTO entity_versions VALUES(2074,73,'07.01.00','10/15/2010','09/30/2017'); -INSERT INTO entity_versions VALUES(2075,176,'7.6','12/31/2016',' '); -INSERT INTO entity_versions VALUES(2076,176,'7.7','12/31/2017',' '); -INSERT INTO entity_versions VALUES(2077,176,'7.8','12/31/2017',' '); -INSERT INTO entity_versions VALUES(2078,176,'7.9',' ',' '); -INSERT INTO entity_versions VALUES(2079,581,'1.0','12/31/1989',' '); -INSERT INTO entity_versions VALUES(2080,581,'1.1','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2081,581,'4.2A','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2082,581,'4.2B','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2083,581,'4.21','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2084,581,'6','12/31/1995',' '); -INSERT INTO entity_versions VALUES(2085,581,'6.5','12/31/1996',' '); -INSERT INTO entity_versions VALUES(2086,581,'7','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2087,581,'8','12/31/2000','04/08/2008'); -INSERT INTO entity_versions VALUES(2088,581,'9','01/14/2006','04/12/2011'); -INSERT INTO entity_versions VALUES(2089,581,'10','11/06/2008','07/08/2014'); -INSERT INTO entity_versions VALUES(2090,581,'10.25','12/31/2010',' '); -INSERT INTO entity_versions VALUES(2091,581,'10.5','07/20/2010','07/08/2014'); -INSERT INTO entity_versions VALUES(2092,581,'11','05/20/2012','07/11/2017'); -INSERT INTO entity_versions VALUES(2093,581,'12','06/05/2014','07/09/2019'); -INSERT INTO entity_versions VALUES(2094,581,'13','06/01/2016','07/13/2021'); -INSERT INTO entity_versions VALUES(2095,581,'14','09/29/2017','10/11/2022'); -INSERT INTO entity_versions VALUES(2096,581,'15','11/04/2019','01/07/2025'); -INSERT INTO entity_versions VALUES(2097,121,'1.0','10/26/2000',' '); -INSERT INTO entity_versions VALUES(2098,121,'2.0',' ',' '); -INSERT INTO entity_versions VALUES(2099,121,'3.0',' ',' '); -INSERT INTO entity_versions VALUES(2100,121,'3.1','02/19/2007','04/12/2016'); -INSERT INTO entity_versions VALUES(2101,121,'3.5','02/19/2008','04/10/2018'); -INSERT INTO entity_versions VALUES(2102,121,'4.0','04/13/2011','07/13/2021'); -INSERT INTO entity_versions VALUES(2103,31,' ',' ',' '); -INSERT INTO entity_versions VALUES(2104,190,'3','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2105,190,'4','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2106,190,'4.2','12/31/1991',' '); -INSERT INTO entity_versions VALUES(2107,190,'4.8','12/31/1992',' '); -INSERT INTO entity_versions VALUES(2108,190,'4.9','12/31/1992',' '); -INSERT INTO entity_versions VALUES(2109,190,'4.9.1','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2110,190,'4.9.2','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2111,190,'11','12/31/1995',' '); -INSERT INTO entity_versions VALUES(2112,190,'11.5','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2113,190,'11.9','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2114,190,'11.9.2','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2115,190,'12','12/31/1999',' '); -INSERT INTO entity_versions VALUES(2116,190,'12.5','12/31/2001',' '); -INSERT INTO entity_versions VALUES(2117,190,'12.5.0.1','12/31/2002',' '); -INSERT INTO entity_versions VALUES(2118,190,'12.5.0.3','12/31/2003',' '); -INSERT INTO entity_versions VALUES(2119,190,'12.5.2','12/31/2004',' '); -INSERT INTO entity_versions VALUES(2120,190,'12.5.3','12/31/2005',' '); -INSERT INTO entity_versions VALUES(2121,190,'12.5.4','12/31/2006',' '); -INSERT INTO entity_versions VALUES(2122,190,'15','12/31/2005',' '); -INSERT INTO entity_versions VALUES(2123,190,'15.0.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(2124,190,'15.0.2','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2125,190,'15.5',' ',' '); -INSERT INTO entity_versions VALUES(2126,190,'16',' ',' '); -INSERT INTO entity_versions VALUES(2127,436,'12.04.5','07/08/2014','04/28/2017'); -INSERT INTO entity_versions VALUES(2128,436,'12.04.5','07/08/2014','04/28/2017'); -INSERT INTO entity_versions VALUES(2129,436,'12.04.5','07/08/2014','04/28/2017'); -INSERT INTO entity_versions VALUES(2130,436,'14.04.6','03/07/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(2131,436,'14.04.6','03/07/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(2132,436,'14.04.6','03/07/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(2133,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2134,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2135,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2136,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2137,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2138,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2139,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2140,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2141,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2142,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2143,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2144,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2145,436,'20.10','10/22/2020','07/22/2021'); -INSERT INTO entity_versions VALUES(2146,436,'20.10','10/22/2020','07/22/2021'); -INSERT INTO entity_versions VALUES(2147,436,'4.1','10/26/2004','04/30/2006'); -INSERT INTO entity_versions VALUES(2148,436,'5.04','04/08/2005','10/31/2006'); -INSERT INTO entity_versions VALUES(2149,436,'5.1','10/12/2005','04/13/2007'); -INSERT INTO entity_versions VALUES(2150,436,'6.06.0','06/01/2006','07/14/2009'); -INSERT INTO entity_versions VALUES(2151,436,'6.06.1','08/10/2006',' '); -INSERT INTO entity_versions VALUES(2152,436,'6.06.2','01/21/2008',' '); -INSERT INTO entity_versions VALUES(2153,436,'6.1','10/26/2006','04/26/2008'); -INSERT INTO entity_versions VALUES(2154,436,'7.04','04/19/2007','10/19/2008'); -INSERT INTO entity_versions VALUES(2155,436,'7.1','10/18/2007','04/18/2009'); -INSERT INTO entity_versions VALUES(2156,436,'8.04.0','04/24/2008','05/12/2011'); -INSERT INTO entity_versions VALUES(2157,436,'8.04.1','07/03/2008',' '); -INSERT INTO entity_versions VALUES(2158,436,'8.04.2','01/22/2009',' '); -INSERT INTO entity_versions VALUES(2159,436,'8.04.3','07/16/2009',' '); -INSERT INTO entity_versions VALUES(2160,436,'8.04.4','01/28/2010',' '); -INSERT INTO entity_versions VALUES(2161,436,'8.1','10/30/2008','04/30/2010'); -INSERT INTO entity_versions VALUES(2162,436,'9.04','04/23/2009','10/23/2010'); -INSERT INTO entity_versions VALUES(2163,436,'9.1','08/23/2013','04/30/2011'); -INSERT INTO entity_versions VALUES(2164,436,'10.04.0','10/21/2015','05/09/2013'); -INSERT INTO entity_versions VALUES(2165,436,'10.04.1','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2166,436,'10.04.2','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2167,436,'10.04.3','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2168,436,'10.04.4','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2169,436,'10.1','08/23/2013','04/10/2012'); -INSERT INTO entity_versions VALUES(2170,436,'11.04','08/23/2013','10/28/2012'); -INSERT INTO entity_versions VALUES(2171,436,'11.1','08/23/2013','05/09/2013'); -INSERT INTO entity_versions VALUES(2172,436,'12.04.0','04/27/2018','04/28/2017'); -INSERT INTO entity_versions VALUES(2173,436,'12.04.1','04/27/2018','04/28/2017'); -INSERT INTO entity_versions VALUES(2174,436,'12.04.2','04/27/2018','08/08/2014'); -INSERT INTO entity_versions VALUES(2175,436,'12.04.3','04/27/2018','08/08/2014'); -INSERT INTO entity_versions VALUES(2176,436,'12.04.4','04/27/2018','08/08/2014'); -INSERT INTO entity_versions VALUES(2177,436,'12.1','04/22/2016','05/16/2014'); -INSERT INTO entity_versions VALUES(2178,436,'13.04','04/22/2016','01/27/2014'); -INSERT INTO entity_versions VALUES(2179,436,'13.1','04/22/2016','07/17/2014'); -INSERT INTO entity_versions VALUES(2180,436,'14.04.0','03/07/2019','04/30/2019'); -INSERT INTO entity_versions VALUES(2181,436,'14.04.1','03/07/2019','04/30/2019'); -INSERT INTO entity_versions VALUES(2182,436,'14.04.2','03/07/2019','08/31/2016'); -INSERT INTO entity_versions VALUES(2183,436,'14.04.3','03/07/2019','08/31/2016'); -INSERT INTO entity_versions VALUES(2184,436,'14.04.4','03/07/2019','08/31/2016'); -INSERT INTO entity_versions VALUES(2185,436,'14.04.5','03/07/2019','04/30/2019'); -INSERT INTO entity_versions VALUES(2186,436,'14.1','04/22/2016','07/23/2015'); -INSERT INTO entity_versions VALUES(2187,436,'15.04','04/28/2016','02/04/2016'); -INSERT INTO entity_versions VALUES(2188,436,'15.1','08/04/2016','07/28/2016'); -INSERT INTO entity_versions VALUES(2189,436,'16.04.0','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2190,436,'16.04.1','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2191,436,'16.04.2','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2192,436,'16.04.3','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2193,436,'16.04.4','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2194,436,'16.04.5','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2195,436,'16.1','07/21/2017','07/20/2017'); -INSERT INTO entity_versions VALUES(2196,436,'17.04','02/07/2018','01/13/2018'); -INSERT INTO entity_versions VALUES(2197,436,'17.1','08/02/2018','07/19/2018'); -INSERT INTO entity_versions VALUES(2198,436,'18.04.0','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2199,436,'18.04.1','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2200,436,'18.04.2','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2201,436,'18.04.3','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2202,436,'18.04.4','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2203,436,'18.1','08/08/2019','07/18/2019'); -INSERT INTO entity_versions VALUES(2204,436,'19.04','08/18/2020','04/18/2019'); -INSERT INTO entity_versions VALUES(2205,436,'19.1','08/21/2020','10/17/2019'); -INSERT INTO entity_versions VALUES(2206,436,'20.04.0','02/11/2021','04/30/2025'); -INSERT INTO entity_versions VALUES(2207,436,'20.04.1','02/11/2021','04/30/2025'); -INSERT INTO entity_versions VALUES(2208,436,'20.04','02/11/2021','04/30/2025'); -INSERT INTO entity_versions VALUES(2209,436,'20.1','10/22/2020','01/31/2022'); -INSERT INTO entity_versions VALUES(2210,434,'8.3','11/03/2020','05/31/2029'); -INSERT INTO entity_versions VALUES(2211,434,'8.2','04/28/2020','05/31/2029'); -INSERT INTO entity_versions VALUES(2212,434,'8.1','11/05/2019','05/31/2029'); -INSERT INTO entity_versions VALUES(2213,434,'8','05/07/2019','05/31/2029'); -INSERT INTO entity_versions VALUES(2214,434,'7.9','09/29/2020','06/30/2024'); -INSERT INTO entity_versions VALUES(2215,434,'7.8','03/31/2020','06/30/2024'); -INSERT INTO entity_versions VALUES(2216,434,'7.7','08/06/2019','06/30/2024'); -INSERT INTO entity_versions VALUES(2217,434,'7.6','10/30/2018','06/30/2024'); -INSERT INTO entity_versions VALUES(2218,434,'7.5','04/10/2018','06/30/2024'); -INSERT INTO entity_versions VALUES(2219,434,'7.4','07/31/2017','06/30/2024'); -INSERT INTO entity_versions VALUES(2220,434,'7.3','11/03/2016','06/30/2024'); -INSERT INTO entity_versions VALUES(2221,434,'7.2','11/19/2015','06/30/2024'); -INSERT INTO entity_versions VALUES(2222,434,'7.1','03/05/2015','06/30/2024'); -INSERT INTO entity_versions VALUES(2223,434,'7.0','06/09/2014',' '); -INSERT INTO entity_versions VALUES(2224,434,'7.0','12/11/2013',' '); -INSERT INTO entity_versions VALUES(2225,434,'6.10','06/19/2018','11/30/2020'); -INSERT INTO entity_versions VALUES(2226,434,'6.9','03/21/2017','11/30/2020'); -INSERT INTO entity_versions VALUES(2227,434,'6.8','05/10/2016','11/30/2020'); -INSERT INTO entity_versions VALUES(2228,434,'6.7','07/22/2015','11/30/2020'); -INSERT INTO entity_versions VALUES(2229,434,'6.6','10/14/2014','11/30/2020'); -INSERT INTO entity_versions VALUES(2230,434,'6.5','11/21/2013','11/30/2020'); -INSERT INTO entity_versions VALUES(2231,434,'6.4','02/21/2013','11/30/2020'); -INSERT INTO entity_versions VALUES(2232,434,'6.3','06/20/2012','11/30/2020'); -INSERT INTO entity_versions VALUES(2233,434,'6.2','12/06/2011','11/30/2020'); -INSERT INTO entity_versions VALUES(2234,434,'6.1','05/19/2011','11/30/2020'); -INSERT INTO entity_versions VALUES(2235,434,'6.0','11/09/2010','11/30/2020'); -INSERT INTO entity_versions VALUES(2236,434,'5.11','09/16/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2237,434,'5.10','10/01/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2238,434,'5.9','01/07/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2239,434,'5.8','02/20/2012','03/31/2017'); -INSERT INTO entity_versions VALUES(2240,434,'5.7','07/21/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2241,434,'5.6','01/13/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2242,434,'5.5','03/30/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2243,434,'5.4','09/02/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2244,434,'5.3','01/20/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2245,434,'5.2','05/21/2008','03/31/2017'); -INSERT INTO entity_versions VALUES(2246,434,'5.1','11/07/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2247,434,'5.0','03/15/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2248,434,'4.9','02/16/2011','02/16/2011'); -INSERT INTO entity_versions VALUES(2249,434,'4.8','05/19/2009','02/16/2011'); -INSERT INTO entity_versions VALUES(2250,434,'4.7','07/29/2008','02/16/2011'); -INSERT INTO entity_versions VALUES(2251,434,'4.6','11/15/2007','02/16/2011'); -INSERT INTO entity_versions VALUES(2252,434,'4.5','05/01/2007','02/16/2011'); -INSERT INTO entity_versions VALUES(2253,434,'4.4','08/10/2006','02/16/2011'); -INSERT INTO entity_versions VALUES(2254,434,'4.3','03/12/2006','02/16/2011'); -INSERT INTO entity_versions VALUES(2255,434,'4.2','10/05/2005','02/16/2011'); -INSERT INTO entity_versions VALUES(2256,434,'4.1','06/08/2005','02/16/2011'); -INSERT INTO entity_versions VALUES(2257,434,'4','02/15/2005','02/16/2011'); -INSERT INTO entity_versions VALUES(2258,434,'3.9','06/20/2007','10/21/2010'); -INSERT INTO entity_versions VALUES(2259,434,'3.8','07/20/2006','10/21/2010'); -INSERT INTO entity_versions VALUES(2260,434,'3.7','03/17/2006','10/21/2010'); -INSERT INTO entity_versions VALUES(2261,434,'3.6','09/28/2005','10/21/2010'); -INSERT INTO entity_versions VALUES(2262,434,'3.5','05/18/2005','10/21/2010'); -INSERT INTO entity_versions VALUES(2263,434,'3.4','12/12/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2264,434,'3.3','09/03/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2265,434,'3.2','05/12/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2266,434,'3.1','01/16/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2267,434,'3','10/22/2003','10/21/2010'); -INSERT INTO entity_versions VALUES(2268,434,'2.1.7','04/28/2005','05/31/2009'); -INSERT INTO entity_versions VALUES(2269,434,'2.1.6','12/13/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2270,434,'2.1.5','08/18/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2271,434,'2.1.4','04/21/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2272,434,'2.1.3','12/19/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2273,434,'2.1.2','03/29/2003','05/31/2009'); -INSERT INTO entity_versions VALUES(2274,434,'2.1.1','02/14/2003','05/31/2009'); -INSERT INTO entity_versions VALUES(2275,434,'2.1','03/23/2002','05/31/2009'); -INSERT INTO entity_versions VALUES(2276,429,'0.9','08/01/1993',' '); -INSERT INTO entity_versions VALUES(2277,429,'0.91','01/01/1994',' '); -INSERT INTO entity_versions VALUES(2278,429,'0.93R5','03/01/1995',' '); -INSERT INTO entity_versions VALUES(2279,429,'0.93R6','11/01/1995',' '); -INSERT INTO entity_versions VALUES(2280,429,'1',' ',' '); -INSERT INTO entity_versions VALUES(2281,429,'1.1','06/17/1996',' '); -INSERT INTO entity_versions VALUES(2282,429,'1.2','12/12/1996',' '); -INSERT INTO entity_versions VALUES(2283,429,'1.3','06/05/1997',' '); -INSERT INTO entity_versions VALUES(2284,429,'2.0','07/24/1998',' '); -INSERT INTO entity_versions VALUES(2285,429,'2.1','03/09/1999','09/30/2000'); -INSERT INTO entity_versions VALUES(2286,429,'2.2','08/15/2000','06/30/2003'); -INSERT INTO entity_versions VALUES(2287,429,'3.0','07/19/2002','06/30/2006'); -INSERT INTO entity_versions VALUES(2288,429,'3.1','06/06/2005','03/31/2008'); -INSERT INTO entity_versions VALUES(2289,429,'4.0','04/08/2007','02/15/2010'); -INSERT INTO entity_versions VALUES(2290,429,'5.0','02/14/2009','02/06/2012'); -INSERT INTO entity_versions VALUES(2291,429,'6.0','02/06/2011','05/31/2015'); -INSERT INTO entity_versions VALUES(2292,429,'7','05/04/2013','04/26/2016'); -INSERT INTO entity_versions VALUES(2293,429,'8','04/26/2015','06/30/2020'); -INSERT INTO entity_versions VALUES(2294,429,'9','06/17/2017','01/31/2020'); -INSERT INTO entity_versions VALUES(2295,429,'10','07/06/2019','01/31/2022'); -INSERT INTO entity_versions VALUES(2296,429,'11',' ',' '); -INSERT INTO entity_versions VALUES(2297,429,'12',' ',' '); -INSERT INTO entity_versions VALUES(2298,429,'13',' ',' '); -INSERT INTO entity_versions VALUES(2299,427,'2.1','08/19/2009',' '); -INSERT INTO entity_versions VALUES(2300,427,'3.1','07/31/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2301,427,'3.3','03/17/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2302,427,'3.4','03/01/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2303,427,'3.5','07/28/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2304,427,'3.6','04/04/2006','10/31/2010'); -INSERT INTO entity_versions VALUES(2305,427,'3.7','05/06/2006','10/31/2010'); -INSERT INTO entity_versions VALUES(2306,427,'3.8','04/20/2012','10/31/2010'); -INSERT INTO entity_versions VALUES(2307,427,'3.9','04/20/2012','10/31/2010'); -INSERT INTO entity_versions VALUES(2308,427,'4','06/23/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2309,427,'4.0','09/15/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2310,427,'4.1','10/19/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2311,427,'4.2','11/04/2006','02/29/2012'); -INSERT INTO entity_versions VALUES(2312,427,'4.2.0','10/23/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2313,427,'4.3','08/27/2006','02/29/2012'); -INSERT INTO entity_versions VALUES(2314,427,'4.4','11/01/2006','02/29/2012'); -INSERT INTO entity_versions VALUES(2315,427,'4.5','12/08/2007','02/29/2012'); -INSERT INTO entity_versions VALUES(2316,427,'4.6','09/18/2008','02/29/2012'); -INSERT INTO entity_versions VALUES(2317,427,'4.7','02/14/2010','02/29/2012'); -INSERT INTO entity_versions VALUES(2318,427,'4.8','04/20/2012','02/29/2012'); -INSERT INTO entity_versions VALUES(2319,427,'4.9','04/20/2012','02/29/2012'); -INSERT INTO entity_versions VALUES(2320,427,'5','04/11/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2321,427,'5.1','11/27/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2322,427,'5.2','06/18/2008','03/31/2017'); -INSERT INTO entity_versions VALUES(2323,427,'5.3','02/14/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2324,427,'5.4','06/25/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2325,427,'5.5','05/14/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2326,427,'5.6','08/12/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2327,427,'5.7','09/13/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2328,427,'5.8','02/27/2012','03/31/2017'); -INSERT INTO entity_versions VALUES(2329,427,'5.9','01/12/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2330,427,'5.1','10/07/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2331,427,'5.11','09/27/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2332,427,'6','12/19/2011','05/10/2017'); -INSERT INTO entity_versions VALUES(2333,427,'6.1','12/08/2011','05/10/2017'); -INSERT INTO entity_versions VALUES(2334,427,'6.2','12/19/2011','05/10/2017'); -INSERT INTO entity_versions VALUES(2335,427,'6.3','07/09/2012','05/10/2017'); -INSERT INTO entity_versions VALUES(2336,427,'6.4','06/20/2013','05/10/2017'); -INSERT INTO entity_versions VALUES(2337,427,'6.5','12/21/2013','05/10/2017'); -INSERT INTO entity_versions VALUES(2338,427,'6.6','07/31/2015','05/10/2017'); -INSERT INTO entity_versions VALUES(2339,427,'6.7','01/21/2016','05/10/2017'); -INSERT INTO entity_versions VALUES(2340,427,'6.8','05/24/2016','05/10/2017'); -INSERT INTO entity_versions VALUES(2341,427,'6.9','04/04/2017','05/10/2017'); -INSERT INTO entity_versions VALUES(2342,427,'6.1','07/02/2018','05/10/2017'); -INSERT INTO entity_versions VALUES(2343,427,'7.0.1406','04/07/2015','08/06/2020'); -INSERT INTO entity_versions VALUES(2344,427,'7.1.1503','11/13/2015','08/06/2020'); -INSERT INTO entity_versions VALUES(2345,427,'7.2.1511','05/18/2016','08/06/2020'); -INSERT INTO entity_versions VALUES(2346,427,'7.3.1611','02/20/2017','08/06/2020'); -INSERT INTO entity_versions VALUES(2347,427,'7.4.1708','02/26/2018','08/06/2020'); -INSERT INTO entity_versions VALUES(2348,427,'7.5.1804','05/09/2018','08/06/2020'); -INSERT INTO entity_versions VALUES(2349,427,'7.6.1810','12/02/2018','08/06/2020'); -INSERT INTO entity_versions VALUES(2350,427,'7.7.1908','09/15/2019','08/06/2020'); -INSERT INTO entity_versions VALUES(2351,427,'7.8.2003','06/17/2020','08/06/2020'); -INSERT INTO entity_versions VALUES(2352,427,'7.9.2009','01/18/2021','08/06/2020'); -INSERT INTO entity_versions VALUES(2353,427,'8.0','03/10/2021','05/31/2024'); -INSERT INTO entity_versions VALUES(2354,427,'8.0.1905','09/09/2020','05/31/2024'); -INSERT INTO entity_versions VALUES(2355,427,'8.1.1911','10/21/2020','05/31/2024'); -INSERT INTO entity_versions VALUES(2356,427,'8.2.2004','01/15/2021','05/31/2024'); -INSERT INTO entity_versions VALUES(2357,427,'8.3.2011','02/22/2021','05/31/2024'); -INSERT INTO entity_versions VALUES(2358,453,'1','11/05/2003','09/20/2004'); -INSERT INTO entity_versions VALUES(2359,453,'2','05/18/2004','04/11/2005'); -INSERT INTO entity_versions VALUES(2360,453,'3','11/08/2004','01/16/2006'); -INSERT INTO entity_versions VALUES(2361,453,'4','06/13/2005','08/07/2006'); -INSERT INTO entity_versions VALUES(2362,453,'5','03/20/2006','07/02/2007'); -INSERT INTO entity_versions VALUES(2363,453,'6','10/24/2006','12/07/2007'); -INSERT INTO entity_versions VALUES(2364,453,'7','05/31/2007','06/13/2008'); -INSERT INTO entity_versions VALUES(2365,453,'8','11/08/2007','01/07/2009'); -INSERT INTO entity_versions VALUES(2366,453,'9','05/13/2008','07/10/2009'); -INSERT INTO entity_versions VALUES(2367,453,'10','11/25/2008','12/17/2009'); -INSERT INTO entity_versions VALUES(2368,453,'11','06/09/2009','06/25/2010'); -INSERT INTO entity_versions VALUES(2369,453,'12','11/17/2009','12/02/2010'); -INSERT INTO entity_versions VALUES(2370,453,'13','05/25/2010','06/24/2011'); -INSERT INTO entity_versions VALUES(2371,453,'14','11/02/2010','12/09/2011'); -INSERT INTO entity_versions VALUES(2372,453,'15','05/24/2011','06/26/2012'); -INSERT INTO entity_versions VALUES(2373,453,'16','11/08/2011','02/12/2013'); -INSERT INTO entity_versions VALUES(2374,453,'17','05/29/2012','07/30/2013'); -INSERT INTO entity_versions VALUES(2375,453,'18','01/15/2013','01/14/2014'); -INSERT INTO entity_versions VALUES(2376,453,'19','07/02/2013','01/06/2015'); -INSERT INTO entity_versions VALUES(2377,453,'20','12/17/2013','06/23/2015'); -INSERT INTO entity_versions VALUES(2378,453,'21','12/09/2014','01/12/2015'); -INSERT INTO entity_versions VALUES(2379,453,'22','05/26/2015','07/19/2016'); -INSERT INTO entity_versions VALUES(2380,453,'23','11/03/2015','12/20/2016'); -INSERT INTO entity_versions VALUES(2381,453,'24','06/21/2016','08/08/2017'); -INSERT INTO entity_versions VALUES(2382,453,'25','11/22/2016','12/12/2017'); -INSERT INTO entity_versions VALUES(2383,453,'26','07/11/2017','05/29/2018'); -INSERT INTO entity_versions VALUES(2384,453,'27','11/14/2017','11/30/2018'); -INSERT INTO entity_versions VALUES(2385,453,'28','05/01/2018','05/28/2019'); -INSERT INTO entity_versions VALUES(2386,453,'29','10/30/2018','11/26/2019'); -INSERT INTO entity_versions VALUES(2387,453,'30','05/07/2019','05/26/2020'); -INSERT INTO entity_versions VALUES(2388,453,'31','10/29/2019','11/24/2020'); -INSERT INTO entity_versions VALUES(2389,453,'32','04/28/2020','05/25/2021'); -INSERT INTO entity_versions VALUES(2390,453,'33','10/27/2020',' '); -INSERT INTO entity_versions VALUES(2391,453,'34','04/20/2021',' '); -INSERT INTO entity_versions VALUES(2392,453,'35','10/19/2021',' '); -INSERT INTO entity_versions VALUES(2393,432,'4.5',' ',' '); -INSERT INTO entity_versions VALUES(2394,432,'4.6','12/10/2007',' '); -INSERT INTO entity_versions VALUES(2395,432,'4.7','08/05/2008',' '); -INSERT INTO entity_versions VALUES(2396,432,'4.8','05/26/2009',' '); -INSERT INTO entity_versions VALUES(2397,432,'4.9',' ',' '); -INSERT INTO entity_versions VALUES(2398,432,'5','06/26/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2399,432,'5.1','11/26/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2400,432,'5.2','06/02/2008','03/31/2017'); -INSERT INTO entity_versions VALUES(2401,432,'5.3','01/28/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2402,432,'5.4','09/09/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2403,432,'5.5','04/07/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2404,432,'5.6','01/22/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2405,432,'5.7','08/16/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2406,432,'5.8','03/02/2012','03/31/2017'); -INSERT INTO entity_versions VALUES(2407,432,'5.9','01/16/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2408,432,'5.1','10/08/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2409,432,'5.11','09/23/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2410,432,'6','02/11/2011','03/31/2021'); -INSERT INTO entity_versions VALUES(2411,432,'6.1','06/01/2011','03/31/2021'); -INSERT INTO entity_versions VALUES(2412,432,'6.2','12/15/2011','03/31/2021'); -INSERT INTO entity_versions VALUES(2413,432,'6.3','06/28/2012','03/31/2021'); -INSERT INTO entity_versions VALUES(2414,432,'6.4','02/28/2013','03/31/2021'); -INSERT INTO entity_versions VALUES(2415,432,'6.5','11/27/2013','03/31/2021'); -INSERT INTO entity_versions VALUES(2416,432,'6.6','10/21/2014','03/31/2021'); -INSERT INTO entity_versions VALUES(2417,432,'6.7','07/31/2015','03/31/2021'); -INSERT INTO entity_versions VALUES(2418,432,' ','03/31/2017',' '); -INSERT INTO entity_versions VALUES(2419,432,'6.8','05/16/2016','03/31/2021'); -INSERT INTO entity_versions VALUES(2420,432,'6.9','03/28/2017','03/31/2021'); -INSERT INTO entity_versions VALUES(2421,432,'6.1','07/02/2018','03/31/2021'); -INSERT INTO entity_versions VALUES(2422,432,'7','07/23/2014','07/31/2024'); -INSERT INTO entity_versions VALUES(2423,432,'7.1','03/12/2015','07/31/2024'); -INSERT INTO entity_versions VALUES(2424,432,'7.2','11/25/2015','07/31/2024'); -INSERT INTO entity_versions VALUES(2425,432,'7.3','11/10/2016','07/31/2024'); -INSERT INTO entity_versions VALUES(2426,432,'7.4','08/08/2017','07/31/2024'); -INSERT INTO entity_versions VALUES(2427,432,'7.5','04/17/2018','07/31/2024'); -INSERT INTO entity_versions VALUES(2428,432,'7.6','11/07/2018','07/31/2024'); -INSERT INTO entity_versions VALUES(2429,432,'7.7','08/15/2019','07/31/2024'); -INSERT INTO entity_versions VALUES(2430,432,'7.8','04/08/2020','07/31/2024'); -INSERT INTO entity_versions VALUES(2431,432,'7.9','10/07/2020','07/31/2024'); -INSERT INTO entity_versions VALUES(2432,432,'8','07/18/2019','07/31/2029'); -INSERT INTO entity_versions VALUES(2433,432,'8.1','11/15/2019','07/31/2029'); -INSERT INTO entity_versions VALUES(2434,432,'8.2','05/06/2020','07/31/2029'); -INSERT INTO entity_versions VALUES(2435,432,'8.3','11/13/2020','07/31/2029'); -INSERT INTO entity_versions VALUES(2436,454,'2011.09',' ',' '); -INSERT INTO entity_versions VALUES(2437,454,'2012.03.3','06/27/2012',' '); -INSERT INTO entity_versions VALUES(2438,454,'2012.09.1','02/19/2013',' '); -INSERT INTO entity_versions VALUES(2439,454,'2013.03','05/13/2013',' '); -INSERT INTO entity_versions VALUES(2440,454,'2013.03.1','05/13/2013',' '); -INSERT INTO entity_versions VALUES(2441,454,'2013.09.1','11/11/2013',' '); -INSERT INTO entity_versions VALUES(2442,454,'2013.09.2','12/12/2013',' '); -INSERT INTO entity_versions VALUES(2443,454,'2014.03.1','04/14/2014',' '); -INSERT INTO entity_versions VALUES(2444,454,'2014.03.2','06/16/2014',' '); -INSERT INTO entity_versions VALUES(2445,454,'2014.09.1','10/14/2014',' '); -INSERT INTO entity_versions VALUES(2446,454,'2014.09.2','01/29/2015',' '); -INSERT INTO entity_versions VALUES(2447,454,'2015.03.1','08/21/2015',' '); -INSERT INTO entity_versions VALUES(2448,454,'2015.09.2','02/16/2016',' '); -INSERT INTO entity_versions VALUES(2449,454,'2016.03.1','05/04/2016',' '); -INSERT INTO entity_versions VALUES(2450,454,'2016.03.2','06/09/2016',' '); -INSERT INTO entity_versions VALUES(2451,454,'2016.03.3','06/28/2016',' '); -INSERT INTO entity_versions VALUES(2452,454,'2016.09.1','12/22/2016',' '); -INSERT INTO entity_versions VALUES(2453,454,'2017.03','06/19/2017',' '); -INSERT INTO entity_versions VALUES(2454,454,'2017.09','11/06/2017',' '); -INSERT INTO entity_versions VALUES(2455,454,'2018.03','05/14/2018',' '); -INSERT INTO entity_versions VALUES(2456,431,'10.2','12/07/2006','11/30/2008'); -INSERT INTO entity_versions VALUES(2457,431,'10.3','10/04/2007','10/31/2009'); -INSERT INTO entity_versions VALUES(2458,431,'11','06/19/2008','07/26/2010'); -INSERT INTO entity_versions VALUES(2459,431,'11.1','12/18/2008','01/14/2011'); -INSERT INTO entity_versions VALUES(2460,431,'11.2','11/12/2009','05/12/2011'); -INSERT INTO entity_versions VALUES(2461,431,'11.3','07/15/2010','01/20/2012'); -INSERT INTO entity_versions VALUES(2462,431,'11.4','03/10/2011','11/05/2012'); -INSERT INTO entity_versions VALUES(2463,431,'12.1','11/16/2011','05/15/2013'); -INSERT INTO entity_versions VALUES(2464,431,'12.2','09/05/2012','01/15/2014'); -INSERT INTO entity_versions VALUES(2465,431,'12.3','03/13/2013','01/29/2015'); -INSERT INTO entity_versions VALUES(2466,431,'13.1','11/19/2013','02/03/2016'); -INSERT INTO entity_versions VALUES(2467,431,'13.2','11/04/2014','01/17/2017'); -INSERT INTO entity_versions VALUES(2468,431,'42.1','11/04/2015','05/17/2017'); -INSERT INTO entity_versions VALUES(2469,431,'42.2','11/16/2016','01/26/2018'); -INSERT INTO entity_versions VALUES(2470,431,'42.3','07/26/2017','07/01/2019'); -INSERT INTO entity_versions VALUES(2471,431,'15','05/25/2018','12/03/2019'); -INSERT INTO entity_versions VALUES(2472,431,'15.1','05/22/2019','02/02/2021'); -INSERT INTO entity_versions VALUES(2473,431,'15.2','07/02/2020',' '); -INSERT INTO entity_versions VALUES(2474,431,'15.3','07/07/2021',' '); -INSERT INTO entity_versions VALUES(2475,435,'SuSE Linux Enterprise Server S/390','10/31/2000',' '); -INSERT INTO entity_versions VALUES(2476,435,'Sparc','04/01/2001',' '); -INSERT INTO entity_versions VALUES(2477,435,'IAs32','04/01/2001',' '); -INSERT INTO entity_versions VALUES(2478,435,'7','10/13/2001',' '); -INSERT INTO entity_versions VALUES(2479,435,'8','10/01/2002','12/20/2007'); -INSERT INTO entity_versions VALUES(2480,435,'8 SP1',' ',' '); -INSERT INTO entity_versions VALUES(2481,435,'8 SP2',' ',' '); -INSERT INTO entity_versions VALUES(2482,435,'8 SP2a',' ',' '); -INSERT INTO entity_versions VALUES(2483,435,'8 SP3',' ',' '); -INSERT INTO entity_versions VALUES(2484,435,'8 SP4',' ',' '); -INSERT INTO entity_versions VALUES(2485,435,'9','08/03/2004','08/31/2011'); -INSERT INTO entity_versions VALUES(2486,435,'9 SP1','01/19/2005','08/31/2011'); -INSERT INTO entity_versions VALUES(2487,435,'9 SP2','07/07/2005','08/31/2011'); -INSERT INTO entity_versions VALUES(2488,435,'9 SP3','12/22/2005','08/31/2011'); -INSERT INTO entity_versions VALUES(2489,435,'9 SP4','12/12/2007','08/31/2011'); -INSERT INTO entity_versions VALUES(2490,435,'10','06/17/2006','07/31/2013'); -INSERT INTO entity_versions VALUES(2491,435,'10 SP1','06/18/2007','07/31/2013'); -INSERT INTO entity_versions VALUES(2492,435,'10 SP2','05/19/2008','07/31/2013'); -INSERT INTO entity_versions VALUES(2493,435,'10 SP3','10/12/2009','07/31/2013'); -INSERT INTO entity_versions VALUES(2494,435,'10 SP4','04/12/2011','07/31/2013'); -INSERT INTO entity_versions VALUES(2495,435,'11','03/24/2009','03/31/2019'); -INSERT INTO entity_versions VALUES(2496,435,'11 SP1','06/02/2010','03/31/2019'); -INSERT INTO entity_versions VALUES(2497,435,'11 SP2','02/15/2012','03/31/2019'); -INSERT INTO entity_versions VALUES(2498,435,'11 SP3','07/01/2013','03/31/2019'); -INSERT INTO entity_versions VALUES(2499,435,'11 SP4','07/16/2015','03/31/2019'); -INSERT INTO entity_versions VALUES(2500,435,'12','10/27/2014','08/31/2024'); -INSERT INTO entity_versions VALUES(2501,435,'12 SP1','01/12/2016','08/31/2024'); -INSERT INTO entity_versions VALUES(2502,435,'12 SP2','11/11/2016','08/31/2024'); -INSERT INTO entity_versions VALUES(2503,435,'12 SP3','09/07/2017','08/31/2024'); -INSERT INTO entity_versions VALUES(2504,435,'12 SP4','12/11/2018','08/31/2024'); -INSERT INTO entity_versions VALUES(2505,435,'12 SP5','12/09/2019','08/31/2024'); -INSERT INTO entity_versions VALUES(2506,435,'15','07/16/2018','07/31/2028'); -INSERT INTO entity_versions VALUES(2507,435,'15 SP1','06/24/2019','07/31/2028'); -INSERT INTO entity_versions VALUES(2508,435,'15 SP2','07/21/2020','07/31/2028'); -INSERT INTO entity_versions VALUES(2509,430,'20.4','12/25/2020','06/25/2024'); -INSERT INTO entity_versions VALUES(2510,430,'20.3','09/29/2020','03/29/2023'); -INSERT INTO entity_versions VALUES(2511,430,'20.2','06/30/2020','12/30/2023'); -INSERT INTO entity_versions VALUES(2512,430,'20.1','03/27/2020','09/27/2022'); -INSERT INTO entity_versions VALUES(2513,430,'19.4','12/26/2019','06/26/2023'); -INSERT INTO entity_versions VALUES(2514,430,'19.3','09/26/2019','03/26/2023'); -INSERT INTO entity_versions VALUES(2515,430,'19.2','06/26/2019','12/26/2022'); -INSERT INTO entity_versions VALUES(2516,430,'19.1','03/27/2019','09/27/2022'); -INSERT INTO entity_versions VALUES(2517,430,'18.4','12/22/2018','06/22/2022'); -INSERT INTO entity_versions VALUES(2518,430,'18.3','09/26/2018','03/26/2022'); -INSERT INTO entity_versions VALUES(2519,430,'18.2','06/29/2018','12/29/2021'); -INSERT INTO entity_versions VALUES(2520,430,'18.1','03/28/2018','09/28/2021'); -INSERT INTO entity_versions VALUES(2521,430,'17.4','12/21/2017','06/21/2021'); -INSERT INTO entity_versions VALUES(2522,430,'17.3','08/25/2017','02/25/2021'); -INSERT INTO entity_versions VALUES(2523,430,'17.2','06/06/2017','12/06/2020'); -INSERT INTO entity_versions VALUES(2524,430,'17.1','03/03/2017','09/03/2020'); -INSERT INTO entity_versions VALUES(2525,430,'16.2','11/29/2016','05/29/2020'); -INSERT INTO entity_versions VALUES(2526,430,'16.1','07/28/2016','01/28/2020'); -INSERT INTO entity_versions VALUES(2527,430,'15.1X53','06/05/2015','12/05/2018'); -INSERT INTO entity_versions VALUES(2528,430,'15.1X49','06/30/2015','06/30/2021'); -INSERT INTO entity_versions VALUES(2529,430,'15.1','06/05/2015','12/05/2018'); -INSERT INTO entity_versions VALUES(2530,430,'14.2','11/05/2014','05/05/2018'); -INSERT INTO entity_versions VALUES(2531,430,'14.1X53','09/26/2014','06/30/2019'); -INSERT INTO entity_versions VALUES(2532,430,'14.1','06/13/2014','06/13/2018'); -INSERT INTO entity_versions VALUES(2533,430,'13.3','01/22/2014','07/22/2017'); -INSERT INTO entity_versions VALUES(2534,430,'13.2X52','07/06/2014','06/30/2017'); -INSERT INTO entity_versions VALUES(2535,430,'13.2X51','11/22/2013','06/30/2016'); -INSERT INTO entity_versions VALUES(2536,430,'13.2X50','06/28/2013','12/28/2014'); -INSERT INTO entity_versions VALUES(2537,430,'13.2','08/29/2013','02/29/2016'); -INSERT INTO entity_versions VALUES(2538,430,'13.1X50','07/25/2013','12/30/2015'); -INSERT INTO entity_versions VALUES(2539,430,'13.1','03/15/2013','09/15/2015'); -INSERT INTO entity_versions VALUES(2540,430,'12.3X54','07/18/2014','07/18/2018'); -INSERT INTO entity_versions VALUES(2541,430,'12.3X52','08/23/2013','02/23/2016'); -INSERT INTO entity_versions VALUES(2542,430,'12.3X51','03/15/2013','09/15/2015'); -INSERT INTO entity_versions VALUES(2543,430,'12.3X50','12/08/2012','07/31/2016'); -INSERT INTO entity_versions VALUES(2544,430,'12.3X48','03/06/2015','06/30/2022'); -INSERT INTO entity_versions VALUES(2545,430,'12.3','01/31/2013','07/31/2016'); -INSERT INTO entity_versions VALUES(2546,430,'12.2X50','07/05/2012','07/31/2015'); -INSERT INTO entity_versions VALUES(2547,430,'12.2','09/05/2012','03/05/2015'); -INSERT INTO entity_versions VALUES(2548,430,'12.1X49','04/19/2012','10/19/2014'); -INSERT INTO entity_versions VALUES(2549,430,'12.1X48','01/28/2013','06/30/2015'); -INSERT INTO entity_versions VALUES(2550,430,'12.1X47','08/18/2014','02/18/2017'); -INSERT INTO entity_versions VALUES(2551,430,'12.1X46','12/30/2013','06/30/2017'); -INSERT INTO entity_versions VALUES(2552,430,'12.1X45','07/17/2013','01/17/2015'); -INSERT INTO entity_versions VALUES(2553,430,'12.1X44','01/18/2013','07/18/2016'); -INSERT INTO entity_versions VALUES(2554,430,'12.1','03/28/2012','09/28/2014'); -INSERT INTO entity_versions VALUES(2555,430,'11.4','12/21/2011','06/21/2015'); -INSERT INTO entity_versions VALUES(2556,430,'11.3','08/15/2011','03/15/2013'); -INSERT INTO entity_versions VALUES(2557,430,'11.2','08/03/2011','02/15/2013'); -INSERT INTO entity_versions VALUES(2558,430,'11.1','03/29/2011','05/15/2012'); -INSERT INTO entity_versions VALUES(2559,430,'10.41','12/08/2010','06/08/2014'); -INSERT INTO entity_versions VALUES(2560,430,'10.3','08/15/2010','12/21/2011'); -INSERT INTO entity_versions VALUES(2561,430,'10.2','05/28/2010','11/15/2011'); -INSERT INTO entity_versions VALUES(2562,430,'10.1','02/15/2010','05/15/2011'); -INSERT INTO entity_versions VALUES(2563,430,'10.0','11/04/2009','05/15/2013'); -INSERT INTO entity_versions VALUES(2564,430,'9.6','08/06/2009','11/06/2010'); -INSERT INTO entity_versions VALUES(2565,430,'9.5','04/14/2009','08/15/2010'); -INSERT INTO entity_versions VALUES(2566,430,'9.4','02/11/2009','05/11/2010'); -INSERT INTO entity_versions VALUES(2567,430,'9.3','11/14/2008','05/15/2012'); -INSERT INTO entity_versions VALUES(2568,430,'9.2','08/12/2008','11/12/2009'); -INSERT INTO entity_versions VALUES(2569,430,'9.1','04/28/2008','07/28/2009'); -INSERT INTO entity_versions VALUES(2570,430,'9.0','02/15/2008','05/15/2009'); -INSERT INTO entity_versions VALUES(2571,430,'8.5','11/16/2007','05/16/2011'); -INSERT INTO entity_versions VALUES(2572,430,'8.4','08/09/2007','11/09/2008'); -INSERT INTO entity_versions VALUES(2573,430,'8.3','04/18/2007','07/18/2008'); -INSERT INTO entity_versions VALUES(2574,430,'8.2','02/15/2007','05/15/2008'); -INSERT INTO entity_versions VALUES(2575,430,'8.11','11/06/2006','05/06/2010'); -INSERT INTO entity_versions VALUES(2576,430,'8.0','08/15/2006','11/15/2007'); -INSERT INTO entity_versions VALUES(2577,430,'7.6','05/15/2006','08/15/2007'); -INSERT INTO entity_versions VALUES(2578,430,'7.5','02/08/2006','05/08/2007'); -INSERT INTO entity_versions VALUES(2579,430,'7.4','11/15/2005','02/15/2007'); -INSERT INTO entity_versions VALUES(2580,430,'7.3','08/16/2005','11/16/2006'); -INSERT INTO entity_versions VALUES(2581,430,'7.2','05/14/2005','08/14/2006'); -INSERT INTO entity_versions VALUES(2582,430,'7.1','02/14/2005','05/14/2006'); -INSERT INTO entity_versions VALUES(2583,430,'7.0','11/15/2004','02/15/2006'); -INSERT INTO entity_versions VALUES(2584,430,'6.4','08/12/2004','11/12/2005'); -INSERT INTO entity_versions VALUES(2585,430,'6.3','05/15/2004','08/15/2005'); -INSERT INTO entity_versions VALUES(2586,430,'6.2','02/15/2004','05/15/2005'); -INSERT INTO entity_versions VALUES(2587,430,'6.1','11/15/2003','02/15/2005'); -INSERT INTO entity_versions VALUES(2588,430,'6.0','08/15/2003','11/15/2004'); -INSERT INTO entity_versions VALUES(2589,430,'5.7','05/15/2003','08/15/2004'); -INSERT INTO entity_versions VALUES(2590,430,'5.6','02/15/2003','05/15/2004'); -INSERT INTO entity_versions VALUES(2591,430,'5.5','11/15/2002','02/15/2004'); -INSERT INTO entity_versions VALUES(2592,430,'5.4','08/12/2002','11/15/2003'); -INSERT INTO entity_versions VALUES(2593,430,'5.3','05/12/2002','08/15/2003'); -INSERT INTO entity_versions VALUES(2594,430,'5.2','02/12/2002','05/15/2003'); -INSERT INTO entity_versions VALUES(2595,430,'5.1','11/07/2001','02/15/2003'); -INSERT INTO entity_versions VALUES(2596,430,'5.0','08/17/2001','11/15/2002'); -INSERT INTO entity_versions VALUES(2597,430,'4.4','04/30/2001',' '); -INSERT INTO entity_versions VALUES(2598,430,'4.3','01/31/2001',' '); -INSERT INTO entity_versions VALUES(2599,430,'4.2','10/16/2000',' '); -INSERT INTO entity_versions VALUES(2600,430,'4.1','08/15/2000',' '); -INSERT INTO entity_versions VALUES(2601,430,'4.0','03/31/2000',' '); -INSERT INTO entity_versions VALUES(2602,433,'1','06/16/2016',' '); -INSERT INTO entity_versions VALUES(2603,433,'2','10/31/2017',' '); -INSERT INTO entity_versions VALUES(2604,433,'3','02/07/2019',' '); -INSERT INTO entity_versions VALUES(2605,433,'4','03/05/2021',' '); -INSERT INTO entity_versions VALUES(2606,322,'1','10/01/1956',' '); -INSERT INTO entity_versions VALUES(2607,322,'2','12/31/1958',' '); -INSERT INTO entity_versions VALUES(2608,322,'3','12/31/1958',' '); -INSERT INTO entity_versions VALUES(2609,322,'4','12/31/1961',' '); -INSERT INTO entity_versions VALUES(2610,322,'5.0','12/31/1968',' '); -INSERT INTO entity_versions VALUES(2611,322,'5.1','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2612,322,'6','12/31/2001',' '); -INSERT INTO entity_versions VALUES(2613,322,'66','12/31/1966',' '); -INSERT INTO entity_versions VALUES(2614,322,'77','12/31/1978',' '); -INSERT INTO entity_versions VALUES(2615,322,'90','12/31/1991',' '); -INSERT INTO entity_versions VALUES(2616,322,'95','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2617,322,'2003','12/31/2004',' '); -INSERT INTO entity_versions VALUES(2618,322,'2008','09/01/2010',' '); -INSERT INTO entity_versions VALUES(2619,322,'2018','11/28/2018',' '); -INSERT INTO entity_versions VALUES(2620,589,'ES1','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2621,589,'ES2','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2622,589,'ES3','12/31/1999',' '); -INSERT INTO entity_versions VALUES(2623,589,'ES4',' ',' '); -INSERT INTO entity_versions VALUES(2624,589,'ES5','12/31/2009',' '); -INSERT INTO entity_versions VALUES(2625,589,'ES6','12/31/2015',' '); -INSERT INTO entity_versions VALUES(2626,343,'1','12/31/1981',' '); -INSERT INTO entity_versions VALUES(2627,343,'2','12/31/2006',' '); -INSERT INTO entity_versions VALUES(2628,599,'pascal','12/31/2070',' '); -INSERT INTO entity_versions VALUES(2629,599,'Object pascal','12/31/1985',' '); -INSERT INTO entity_versions VALUES(2630,599,'extended pascal','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2631,599,'Free pascal','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2632,599,'smalltalk80','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2633,363,'ANSI smalltalk','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2634,363,'Ambrai smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2635,363,'Dolphin smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2636,363,'GNU smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2637,363,'LSWsvision smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2638,363,'Little smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2639,363,'Resilient embedded smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2640,363,'Object studio smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2641,363,'Pocket smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2642,363,'Public Domain smalltalk (PDST)',' ',' '); -INSERT INTO entity_versions VALUES(2643,363,'Slate smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2644,363,'Smalltalk Express',' ',' '); -INSERT INTO entity_versions VALUES(2645,363,'smalltalk MT',' ',' '); -INSERT INTO entity_versions VALUES(2646,363,'smalltalk X',' ',' '); -INSERT INTO entity_versions VALUES(2647,363,'Squat smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2648,363,'Squeak smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2649,363,'Strong smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2650,363,'Susie smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2651,363,'Talks2 smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2652,363,'VisualWorks smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2653,363,'VisualAge smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2654,363,'Vmx Quicknet smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2655,363,'Zoku smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2656,324,'0.1.1','07/02/2015',' '); -INSERT INTO entity_versions VALUES(2657,324,'0.2.0','07/30/2015',' '); -INSERT INTO entity_versions VALUES(2658,324,'0.3.0',' ',' '); -INSERT INTO entity_versions VALUES(2659,324,'0.4.0',' ',' '); -INSERT INTO entity_versions VALUES(2660,324,'0.5.0',' ',' '); -INSERT INTO entity_versions VALUES(2661,324,'0.6.0',' ',' '); -INSERT INTO entity_versions VALUES(2662,324,'0.7.0',' ',' '); -INSERT INTO entity_versions VALUES(2663,324,'0.8.0',' ',' '); -INSERT INTO entity_versions VALUES(2664,324,'0.9.0',' ',' '); -INSERT INTO entity_versions VALUES(2665,324,'0.10.0',' ',' '); -INSERT INTO entity_versions VALUES(2666,324,'0.11.0',' ',' '); -INSERT INTO entity_versions VALUES(2667,324,'0.12.0',' ',' '); -INSERT INTO entity_versions VALUES(2668,324,'0.13.0',' ',' '); -INSERT INTO entity_versions VALUES(2669,324,'14',' ',' '); -INSERT INTO entity_versions VALUES(2670,324,'14.1',' ',' '); -INSERT INTO entity_versions VALUES(2671,324,'14.2',' ',' '); -INSERT INTO entity_versions VALUES(2672,324,'14.3',' ',' '); -INSERT INTO entity_versions VALUES(2673,324,'14.4',' ',' '); -INSERT INTO entity_versions VALUES(2674,324,'14.5',' ',' '); -INSERT INTO entity_versions VALUES(2675,324,'15',' ',' '); -INSERT INTO entity_versions VALUES(2676,360,'72','01/31/1972',' '); -INSERT INTO entity_versions VALUES(2677,360,'76','07/31/1976',' '); -INSERT INTO entity_versions VALUES(2678,360,'79.5','04/30/1981',' '); -INSERT INTO entity_versions VALUES(2679,360,'82.4','01/31/1983',' '); -INSERT INTO entity_versions VALUES(2680,360,'4.06','03/31/1984',' '); -INSERT INTO entity_versions VALUES(2681,360,'5.03','07/31/1986',' '); -INSERT INTO entity_versions VALUES(2682,360,'6.01','01/31/1985',' '); -INSERT INTO entity_versions VALUES(2683,360,'6.03','03/31/1988',' '); -INSERT INTO entity_versions VALUES(2684,360,'6.06','03/31/1990',' '); -INSERT INTO entity_versions VALUES(2685,360,'6.07','04/30/1991',' '); -INSERT INTO entity_versions VALUES(2686,360,'6.08','03/31/1993',' '); -INSERT INTO entity_versions VALUES(2687,360,'6.09','10/31/1993',' '); -INSERT INTO entity_versions VALUES(2688,360,'6.1','10/31/1994',' '); -INSERT INTO entity_versions VALUES(2689,360,'6.11','10/31/1995',' '); -INSERT INTO entity_versions VALUES(2690,360,'6.12','11/30/1996',' '); -INSERT INTO entity_versions VALUES(2691,360,'7','10/31/1998',' '); -INSERT INTO entity_versions VALUES(2692,360,'8','11/30/1999',' '); -INSERT INTO entity_versions VALUES(2693,360,'8.1','07/31/2000',' '); -INSERT INTO entity_versions VALUES(2694,360,'8.2','03/31/2001',' '); -INSERT INTO entity_versions VALUES(2695,360,'9','10/31/2002',' '); -INSERT INTO entity_versions VALUES(2696,360,'9.1','12/31/2003',' '); -INSERT INTO entity_versions VALUES(2697,360,'9.1.3','08/31/2004',' '); -INSERT INTO entity_versions VALUES(2698,360,'9.2','03/31/2008',' '); -INSERT INTO entity_versions VALUES(2699,360,'9.2M2','04/30/2010',' '); -INSERT INTO entity_versions VALUES(2700,360,'9.3','07/31/2011',' '); -INSERT INTO entity_versions VALUES(2701,360,'9.3M2','08/31/2012',' '); -INSERT INTO entity_versions VALUES(2702,360,'9.4','07/31/2013',' '); -INSERT INTO entity_versions VALUES(2703,360,'9.4M1','12/31/2013',' '); -INSERT INTO entity_versions VALUES(2704,360,'9.4M2','08/31/2014',' '); -INSERT INTO entity_versions VALUES(2705,360,'9.4M3','07/31/2015',' '); -INSERT INTO entity_versions VALUES(2706,360,'9.4M4','11/30/2016',' '); -INSERT INTO entity_versions VALUES(2707,360,'9.4M5','09/30/2017',' '); -INSERT INTO entity_versions VALUES(2708,360,'9.4M6','11/30/2018',' '); -INSERT INTO entity_versions VALUES(2709,360,'9.4M7','08/31/2020',' '); -INSERT INTO entity_versions VALUES(2710,367,'0.8','10/31/2012',' '); -INSERT INTO entity_versions VALUES(2711,367,'0.9','06/18/2013',' '); -INSERT INTO entity_versions VALUES(2712,367,'1','04/12/2014',' '); -INSERT INTO entity_versions VALUES(2713,367,'1.1','10/06/2014',' '); -INSERT INTO entity_versions VALUES(2714,367,'1.3','11/12/2014',' '); -INSERT INTO entity_versions VALUES(2715,367,'1.4','01/20/2015',' '); -INSERT INTO entity_versions VALUES(2716,367,'1.5','07/20/2015',' '); -INSERT INTO entity_versions VALUES(2717,367,'1.6','09/16/2015',' '); -INSERT INTO entity_versions VALUES(2718,367,'1.7','11/30/2015',' '); -INSERT INTO entity_versions VALUES(2719,367,'1.8','02/22/2016',' '); -INSERT INTO entity_versions VALUES(2720,367,'2','09/22/2016',' '); -INSERT INTO entity_versions VALUES(2721,367,'2.1','11/08/2016',' '); -INSERT INTO entity_versions VALUES(2722,367,'2.2','02/22/2017',' '); -INSERT INTO entity_versions VALUES(2723,367,'2.3','04/27/2017',' '); -INSERT INTO entity_versions VALUES(2724,367,'2.4','06/27/2017',' '); -INSERT INTO entity_versions VALUES(2725,367,'2.5','08/31/2017',' '); -INSERT INTO entity_versions VALUES(2726,367,'2.6','10/31/2017',' '); -INSERT INTO entity_versions VALUES(2727,367,'2.7','01/31/2018',' '); -INSERT INTO entity_versions VALUES(2728,367,'2.8','03/27/2018',' '); -INSERT INTO entity_versions VALUES(2729,367,'2.9','05/14/2018',' '); -INSERT INTO entity_versions VALUES(2730,367,'3','07/30/2018',' '); -INSERT INTO entity_versions VALUES(2731,367,'3.1','09/27/2018',' '); -INSERT INTO entity_versions VALUES(2732,367,'3.2','11/30/2018',' '); -INSERT INTO entity_versions VALUES(2733,367,'3.3','01/31/2019',' '); -INSERT INTO entity_versions VALUES(2734,367,'3.4','03/29/2019',' '); -INSERT INTO entity_versions VALUES(2735,367,'3.5','05/29/2019',' '); -INSERT INTO entity_versions VALUES(2736,367,'3.6','08/28/2019',' '); -INSERT INTO entity_versions VALUES(2737,367,'3.7','11/05/2019',' '); -INSERT INTO entity_versions VALUES(2738,367,'3.8','02/20/2020',' '); -INSERT INTO entity_versions VALUES(2739,367,'3.9','05/12/2020',' '); -INSERT INTO entity_versions VALUES(2740,367,'4','08/20/2020',' '); -INSERT INTO entity_versions VALUES(2741,367,'4.1','11/19/2020',' '); -INSERT INTO entity_versions VALUES(2742,367,'4.2','02/25/2021',' '); -INSERT INTO entity_versions VALUES(2743,367,'4.3','05/26/2021',' '); -INSERT INTO entity_versions VALUES(2744,367,'4.4','08/26/2021',' '); -INSERT INTO entity_versions VALUES(2745,584,'JDK Beta','12/31/1995',' '); -INSERT INTO entity_versions VALUES(2746,584,'1.0','01/01/1996',' '); -INSERT INTO entity_versions VALUES(2747,584,'1.1','02/01/1997',' '); -INSERT INTO entity_versions VALUES(2748,584,'1.2','12/01/1998',' '); -INSERT INTO entity_versions VALUES(2749,584,'1.3','05/01/2000',' '); -INSERT INTO entity_versions VALUES(2750,584,'1.4','02/01/2002','10/01/2008'); -INSERT INTO entity_versions VALUES(2751,584,'5.0','09/01/2004','11/01/2009'); -INSERT INTO entity_versions VALUES(2752,584,'6','12/01/2006','04/01/2013'); -INSERT INTO entity_versions VALUES(2753,584,'7','07/01/2011','04/01/2015'); -INSERT INTO entity_versions VALUES(2754,584,'8','03/01/2014','12/01/1930'); -INSERT INTO entity_versions VALUES(2755,584,'9','09/01/2017','03/01/2018'); -INSERT INTO entity_versions VALUES(2756,584,'10','03/01/2018','09/01/2026'); -INSERT INTO entity_versions VALUES(2757,584,'11','09/01/2018','10/01/2024'); -INSERT INTO entity_versions VALUES(2758,584,'12','03/01/2019','09/01/2019'); -INSERT INTO entity_versions VALUES(2759,584,'13','09/01/2019','03/01/2020'); -INSERT INTO entity_versions VALUES(2760,584,'14','03/01/2020','09/01/2020'); -INSERT INTO entity_versions VALUES(2761,584,'15','09/01/2020','03/01/2021'); -INSERT INTO entity_versions VALUES(2762,584,'16','03/01/2021','09/01/2021'); -INSERT INTO entity_versions VALUES(2763,584,'17','09/01/2021','09/01/2029'); -INSERT INTO entity_versions VALUES(2764,584,'18','03/01/2022','09/01/2022'); -INSERT INTO entity_versions VALUES(2765,584,'19','09/01/2022','03/01/2023'); -INSERT INTO entity_versions VALUES(2766,584,'20','03/01/2023','01/09/2023'); -INSERT INTO entity_versions VALUES(2767,584,'21','09/01/2023',' '); -INSERT INTO entity_versions VALUES(2768,585,'1','12/18/1987',' '); -INSERT INTO entity_versions VALUES(2769,585,'4','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2770,585,'5','10/17/1994',' '); -INSERT INTO entity_versions VALUES(2771,585,'5.001','03/13/1995',' '); -INSERT INTO entity_versions VALUES(2772,585,'5.002','02/29/1996',' '); -INSERT INTO entity_versions VALUES(2773,585,'5.003','06/25/1996',' '); -INSERT INTO entity_versions VALUES(2774,585,'5.004','05/15/1997',' '); -INSERT INTO entity_versions VALUES(2775,585,'5.005','07/22/1998',' '); -INSERT INTO entity_versions VALUES(2776,585,'5.6','03/22/2020',' '); -INSERT INTO entity_versions VALUES(2777,585,'5.8','07/18/2002',' '); -INSERT INTO entity_versions VALUES(2778,585,'5.10.0','12/18/2007',' '); -INSERT INTO entity_versions VALUES(2779,585,'5.11',' ',' '); -INSERT INTO entity_versions VALUES(2780,585,'5.12','04/12/2010',' '); -INSERT INTO entity_versions VALUES(2781,585,'5.12.3','01/21/2011',' '); -INSERT INTO entity_versions VALUES(2782,585,'5.12.4','06/20/2011',' '); -INSERT INTO entity_versions VALUES(2783,585,'5.12.5','11/10/2012',' '); -INSERT INTO entity_versions VALUES(2784,585,'5.14','05/14/2011',' '); -INSERT INTO entity_versions VALUES(2785,585,'5.16','05/20/2012',' '); -INSERT INTO entity_versions VALUES(2786,585,'5.18','05/18/2013',' '); -INSERT INTO entity_versions VALUES(2787,585,'5.20.0','05/27/2014',' '); -INSERT INTO entity_versions VALUES(2788,368,'7.0','12/31/2002',' '); -INSERT INTO entity_versions VALUES(2789,368,'7.1','12/31/2003',' '); -INSERT INTO entity_versions VALUES(2790,368,'8.0','12/31/2005',' '); -INSERT INTO entity_versions VALUES(2791,368,'9.0','11/19/2007',' '); -INSERT INTO entity_versions VALUES(2792,368,'10.0','04/01/2010',' '); -INSERT INTO entity_versions VALUES(2793,368,'11.0','12/31/2012',' '); -INSERT INTO entity_versions VALUES(2794,368,'12.0','12/31/2013',' '); -INSERT INTO entity_versions VALUES(2795,368,'14.0','12/31/2015',' '); -INSERT INTO entity_versions VALUES(2796,368,'15.0','12/31/2017',' '); -INSERT INTO entity_versions VALUES(2797,368,'16.0','12/31/2019',' '); -INSERT INTO entity_versions VALUES(2798,315,'1','09/01/1987',' '); -INSERT INTO entity_versions VALUES(2799,315,'2','04/01/1990',' '); -INSERT INTO entity_versions VALUES(2800,315,'3','10/01/1991',' '); -INSERT INTO entity_versions VALUES(2801,315,'4','01/01/1993',' '); -INSERT INTO entity_versions VALUES(2802,315,'5','03/01/1994',' '); -INSERT INTO entity_versions VALUES(2803,315,'5.45.5','02/04/2018',' '); -INSERT INTO entity_versions VALUES(2804,364,'1.0','09/09/2014',' '); -INSERT INTO entity_versions VALUES(2805,364,'1.1','10/22/2014',' '); -INSERT INTO entity_versions VALUES(2806,364,'1.2','04/08/2015',' '); -INSERT INTO entity_versions VALUES(2807,364,'2.0','09/21/2015',' '); -INSERT INTO entity_versions VALUES(2808,364,'2.1','10/20/2015',' '); -INSERT INTO entity_versions VALUES(2809,364,'2.2','03/21/2016',' '); -INSERT INTO entity_versions VALUES(2810,364,'2.2.1','05/03/2016',' '); -INSERT INTO entity_versions VALUES(2811,364,'3.0','09/13/2016',' '); -INSERT INTO entity_versions VALUES(2812,364,'3.0.1','10/28/2016',' '); -INSERT INTO entity_versions VALUES(2813,364,'3.0.2','12/13/2016',' '); -INSERT INTO entity_versions VALUES(2814,364,'3.1','03/27/2017',' '); -INSERT INTO entity_versions VALUES(2815,364,'3.1.1','04/21/2017',' '); -INSERT INTO entity_versions VALUES(2816,364,'4.0','09/19/2017',' '); -INSERT INTO entity_versions VALUES(2817,364,'4.0.2','11/01/2017',' '); -INSERT INTO entity_versions VALUES(2818,364,'4.0.3','12/05/2017',' '); -INSERT INTO entity_versions VALUES(2819,364,'4.1','03/29/2018',' '); -INSERT INTO entity_versions VALUES(2820,364,'4.1.1','05/04/2018',' '); -INSERT INTO entity_versions VALUES(2821,364,'4.1.2','05/31/2018',' '); -INSERT INTO entity_versions VALUES(2822,364,'4.1.3','07/27/2018',' '); -INSERT INTO entity_versions VALUES(2823,364,'4.2','09/17/2018',' '); -INSERT INTO entity_versions VALUES(2824,364,'4.2.1','10/30/2018',' '); -INSERT INTO entity_versions VALUES(2825,364,'4.2.2','02/04/2019',' '); -INSERT INTO entity_versions VALUES(2826,364,'4.2.3','02/28/2019',' '); -INSERT INTO entity_versions VALUES(2827,364,'4.2.4','03/29/2019',' '); -INSERT INTO entity_versions VALUES(2828,364,'5.0','03/25/2019',' '); -INSERT INTO entity_versions VALUES(2829,364,'5.0.1','04/18/2019',' '); -INSERT INTO entity_versions VALUES(2830,364,'5.0.2','07/15/2019',' '); -INSERT INTO entity_versions VALUES(2831,364,'5.0.3','08/30/2019',' '); -INSERT INTO entity_versions VALUES(2832,364,'5.1','09/10/2019',' '); -INSERT INTO entity_versions VALUES(2833,364,'5.1.1','10/11/2019',' '); -INSERT INTO entity_versions VALUES(2834,364,'5.1.2','11/07/2019',' '); -INSERT INTO entity_versions VALUES(2835,364,'5.1.3','12/13/2019',' '); -INSERT INTO entity_versions VALUES(2836,364,'5.1.4','01/31/2020',' '); -INSERT INTO entity_versions VALUES(2837,364,'5.1.5','03/09/2020',' '); -INSERT INTO entity_versions VALUES(2838,364,'5.2','03/24/2020',' '); -INSERT INTO entity_versions VALUES(2839,364,'5.2.1','03/30/2020',' '); -INSERT INTO entity_versions VALUES(2840,364,'5.2.2','04/15/2020',' '); -INSERT INTO entity_versions VALUES(2841,364,'5.2.3','04/29/2020',' '); -INSERT INTO entity_versions VALUES(2842,364,'5.2.4','05/20/2020',' '); -INSERT INTO entity_versions VALUES(2843,364,'5.2.5','08/05/2020',' '); -INSERT INTO entity_versions VALUES(2844,364,'5.3','09/16/2020',' '); -INSERT INTO entity_versions VALUES(2845,364,'5.3.1','11/13/2020',' '); -INSERT INTO entity_versions VALUES(2846,364,'5.3.2','12/15/2020',' '); -INSERT INTO entity_versions VALUES(2847,364,'5.3.3','01/25/2021',' '); -INSERT INTO entity_versions VALUES(2848,364,'5.4','04/26/2021',' '); -INSERT INTO entity_versions VALUES(2849,364,'5.4.1','05/25/2021',' '); -INSERT INTO entity_versions VALUES(2850,364,'5.4.2','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2851,364,'5.4.3','09/09/2021',' '); -INSERT INTO entity_versions VALUES(2852,364,'5.5','09/20/2021',' '); -INSERT INTO entity_versions VALUES(2853,341,'ACL2','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2854,341,'Arc','12/31/2008',' '); -INSERT INTO entity_versions VALUES(2855,341,'AutoLISP','12/31/1986',' '); -INSERT INTO entity_versions VALUES(2856,341,'BBN LISP','12/31/2066',' '); -INSERT INTO entity_versions VALUES(2857,341,'Chez Scheme','12/31/1985',' '); -INSERT INTO entity_versions VALUES(2858,341,'Chicken','12/31/2000',' '); -INSERT INTO entity_versions VALUES(2859,341,'Clojure','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2860,341,'ANSI Common Lisp','12/31/1994',' '); -INSERT INTO entity_versions VALUES(2861,341,'Common Lisp','12/31/1984',' '); -INSERT INTO entity_versions VALUES(2862,341,'Dylan','12/31/1992',' '); -INSERT INTO entity_versions VALUES(2863,341,'Emacs Lisp','12/31/1976',' '); -INSERT INTO entity_versions VALUES(2864,341,'EuLisp','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2865,341,'Franz Lisp','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2866,341,'Game Oriented Assembly Lisp (GOAL)','12/31/2000',' '); -INSERT INTO entity_versions VALUES(2867,341,'Hy','12/31/2013',' '); -INSERT INTO entity_versions VALUES(2868,341,'Ikarus','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2869,341,'Interlisp','12/31/2067',' '); -INSERT INTO entity_versions VALUES(2870,341,'ISLISP','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2871,341,'Le Lisp','12/31/1981',' '); -INSERT INTO entity_versions VALUES(2872,341,'Lisp Flavored Erlang (LFE)','12/31/2008',' '); -INSERT INTO entity_versions VALUES(2873,341,'Lisp Machine Lisp','12/31/1984',' '); -INSERT INTO entity_versions VALUES(2874,341,'Maclisp','12/31/2066',' '); -INSERT INTO entity_versions VALUES(2875,341,'MultiLisp','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2876,341,'NIL','12/31/2070',' '); -INSERT INTO entity_versions VALUES(2877,341,'OpenLisp','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2878,341,'Owl Lisp','12/31/2012',' '); -INSERT INTO entity_versions VALUES(2879,341,'PicoLisp','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2880,341,'Portable Standard Lisp','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2881,341,'Racket','12/31/1994',' '); -INSERT INTO entity_versions VALUES(2882,341,'Scheme','12/31/2070',' '); -INSERT INTO entity_versions VALUES(2883,341,'Scheme In One Defun (SIOD)','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2884,341,'SKILL','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2885,341,'TXR Lisp','12/31/2009',' '); -INSERT INTO entity_versions VALUES(2886,587,'3.10.0','10/04/2021',' '); -INSERT INTO entity_versions VALUES(2887,587,'3.9.7','08/30/2021',' '); -INSERT INTO entity_versions VALUES(2888,587,'3.9.6','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2889,587,'3.9.5','05/03/2021',' '); -INSERT INTO entity_versions VALUES(2890,587,'3.9.4','04/04/2021',' '); -INSERT INTO entity_versions VALUES(2891,587,'3.9.3','04/02/2021',' '); -INSERT INTO entity_versions VALUES(2892,587,'3.9.2','02/19/2021',' '); -INSERT INTO entity_versions VALUES(2893,587,'3.9.1','12/08/2020',' '); -INSERT INTO entity_versions VALUES(2894,587,'3.9.0','10/05/2020',' '); -INSERT INTO entity_versions VALUES(2895,587,'3.8.12','08/30/2021',' '); -INSERT INTO entity_versions VALUES(2896,587,'3.8.11','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2897,587,'3.8.10','05/03/2021',' '); -INSERT INTO entity_versions VALUES(2898,587,'3.8.9','04/02/2021',' '); -INSERT INTO entity_versions VALUES(2899,587,'3.8.8','02/19/2021',' '); -INSERT INTO entity_versions VALUES(2900,587,'3.8.7','12/21/2020',' '); -INSERT INTO entity_versions VALUES(2901,587,'3.8.6','09/23/2020',' '); -INSERT INTO entity_versions VALUES(2902,587,'3.8.5','07/20/2020',' '); -INSERT INTO entity_versions VALUES(2903,587,'3.8.4','07/13/2020',' '); -INSERT INTO entity_versions VALUES(2904,587,'3.8.3','05/13/2020',' '); -INSERT INTO entity_versions VALUES(2905,587,'3.8.2','02/24/2020',' '); -INSERT INTO entity_versions VALUES(2906,587,'3.8.1','12/18/2019',' '); -INSERT INTO entity_versions VALUES(2907,587,'3.8.0','10/14/2019',' '); -INSERT INTO entity_versions VALUES(2908,587,'3.7.12','09/04/2021',' '); -INSERT INTO entity_versions VALUES(2909,587,'3.7.11','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2910,587,'3.7.10','02/15/2021',' '); -INSERT INTO entity_versions VALUES(2911,587,'3.7.9','08/17/2020',' '); -INSERT INTO entity_versions VALUES(2912,587,'3.7.8','06/27/2020',' '); -INSERT INTO entity_versions VALUES(2913,587,'3.7.7','03/10/2020',' '); -INSERT INTO entity_versions VALUES(2914,587,'3.7.6','12/18/2019',' '); -INSERT INTO entity_versions VALUES(2915,587,'3.7.5','10/15/2019',' '); -INSERT INTO entity_versions VALUES(2916,587,'3.7.4','07/08/2019',' '); -INSERT INTO entity_versions VALUES(2917,587,'3.7.3','03/25/2019',' '); -INSERT INTO entity_versions VALUES(2918,587,'3.7.2','12/24/2018',' '); -INSERT INTO entity_versions VALUES(2919,587,'3.7.1','10/20/2018',' '); -INSERT INTO entity_versions VALUES(2920,587,'3.7.0','06/27/2018',' '); -INSERT INTO entity_versions VALUES(2921,587,'3.6.15','09/04/2021',' '); -INSERT INTO entity_versions VALUES(2922,587,'3.6.14','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2923,587,'3.6.13','02/15/2021',' '); -INSERT INTO entity_versions VALUES(2924,587,'3.6.12','08/17/2020',' '); -INSERT INTO entity_versions VALUES(2925,587,'3.6.11','06/27/2020',' '); -INSERT INTO entity_versions VALUES(2926,587,'3.6.10','12/18/2019',' '); -INSERT INTO entity_versions VALUES(2927,587,'3.6.9','07/02/2019',' '); -INSERT INTO entity_versions VALUES(2928,587,'3.6.8','12/24/2018',' '); -INSERT INTO entity_versions VALUES(2929,587,'3.6.7','10/20/2018',' '); -INSERT INTO entity_versions VALUES(2930,587,'3.6.6','06/27/2018',' '); -INSERT INTO entity_versions VALUES(2931,587,'3.6.5','03/28/2018',' '); -INSERT INTO entity_versions VALUES(2932,587,'3.6.4','12/19/2017',' '); -INSERT INTO entity_versions VALUES(2933,587,'3.6.3','10/03/2017',' '); -INSERT INTO entity_versions VALUES(2934,587,'3.6.2','07/17/2017',' '); -INSERT INTO entity_versions VALUES(2935,587,'3.6.1','03/21/2017',' '); -INSERT INTO entity_versions VALUES(2936,587,'3.6.0','12/23/2016',' '); -INSERT INTO entity_versions VALUES(2937,587,'3.5.10','09/05/2020',' '); -INSERT INTO entity_versions VALUES(2938,587,'3.5.8','11/01/2019',' '); -INSERT INTO entity_versions VALUES(2939,587,'3.5.7','03/18/2019',' '); -INSERT INTO entity_versions VALUES(2940,587,'3.5.6','08/08/2018',' '); -INSERT INTO entity_versions VALUES(2941,587,'3.5.5','02/04/2018',' '); -INSERT INTO entity_versions VALUES(2942,587,'3.5.4','07/25/2017',' '); -INSERT INTO entity_versions VALUES(2943,587,'3.5.3','01/17/2017',' '); -INSERT INTO entity_versions VALUES(2944,587,'3.5.2','06/27/2016',' '); -INSERT INTO entity_versions VALUES(2945,587,'3.5.1','12/07/2015',' '); -INSERT INTO entity_versions VALUES(2946,587,'3.5.0','09/13/2015',' '); -INSERT INTO entity_versions VALUES(2947,587,'3.4.10','03/18/2019',' '); -INSERT INTO entity_versions VALUES(2948,587,'3.4.9','08/08/2018',' '); -INSERT INTO entity_versions VALUES(2949,587,'3.4.8','02/04/2018',' '); -INSERT INTO entity_versions VALUES(2950,587,'3.4.7','07/25/2017',' '); -INSERT INTO entity_versions VALUES(2951,587,'3.4.6','01/17/2017',' '); -INSERT INTO entity_versions VALUES(2952,587,'3.4.5','06/26/2016',' '); -INSERT INTO entity_versions VALUES(2953,587,'3.4.4','12/06/2015',' '); -INSERT INTO entity_versions VALUES(2954,587,'3.4.3','02/25/2015',' '); -INSERT INTO entity_versions VALUES(2955,587,'3.4.2','10/04/2014',' '); -INSERT INTO entity_versions VALUES(2956,587,'3.4.1','05/18/2014',' '); -INSERT INTO entity_versions VALUES(2957,587,'3.4.0','03/16/2014',' '); -INSERT INTO entity_versions VALUES(2958,587,'3.3.7','09/19/2017',' '); -INSERT INTO entity_versions VALUES(2959,587,'3.3.6','10/12/2014',' '); -INSERT INTO entity_versions VALUES(2960,587,'3.3.5','03/09/2014',' '); -INSERT INTO entity_versions VALUES(2961,587,'3.3.4','02/09/2014',' '); -INSERT INTO entity_versions VALUES(2962,587,'3.3.3','11/17/2013',' '); -INSERT INTO entity_versions VALUES(2963,587,'3.3.2','05/15/2013',' '); -INSERT INTO entity_versions VALUES(2964,587,'3.3.1','04/07/2013',' '); -INSERT INTO entity_versions VALUES(2965,587,'3.3.0','09/29/2012',' '); -INSERT INTO entity_versions VALUES(2966,587,'3.2.6','10/11/2014',' '); -INSERT INTO entity_versions VALUES(2967,587,'3.2.5','05/15/2013',' '); -INSERT INTO entity_versions VALUES(2968,587,'3.2.4','04/07/2013',' '); -INSERT INTO entity_versions VALUES(2969,587,'3.2.3','04/10/2012',' '); -INSERT INTO entity_versions VALUES(2970,587,'3.2.2','09/04/2011',' '); -INSERT INTO entity_versions VALUES(2971,587,'3.2.1','07/10/2011',' '); -INSERT INTO entity_versions VALUES(2972,587,'3.2','02/20/2011',' '); -INSERT INTO entity_versions VALUES(2973,587,'3.1.5','04/09/2012',' '); -INSERT INTO entity_versions VALUES(2974,587,'3.1.4','06/11/2011',' '); -INSERT INTO entity_versions VALUES(2975,587,'3.1.3','11/27/2010',' '); -INSERT INTO entity_versions VALUES(2976,587,'3.1.2','03/21/2010',' '); -INSERT INTO entity_versions VALUES(2977,587,'3.1.1','08/17/2009',' '); -INSERT INTO entity_versions VALUES(2978,587,'3.1','06/27/2009',' '); -INSERT INTO entity_versions VALUES(2979,587,'3.0.1','02/13/2009',' '); -INSERT INTO entity_versions VALUES(2980,587,'3','12/03/2008',' '); -INSERT INTO entity_versions VALUES(2981,587,'2.7.18','04/20/2020',' '); -INSERT INTO entity_versions VALUES(2982,587,'2.7.17','10/19/2019',' '); -INSERT INTO entity_versions VALUES(2983,587,'2.7.16','03/02/2019',' '); -INSERT INTO entity_versions VALUES(2984,587,'2.7.15','04/30/2018',' '); -INSERT INTO entity_versions VALUES(2985,587,'2.7.14','09/16/2017',' '); -INSERT INTO entity_versions VALUES(2986,587,'2.7.13','12/17/2016',' '); -INSERT INTO entity_versions VALUES(2987,587,'2.7.12','06/26/2016',' '); -INSERT INTO entity_versions VALUES(2988,587,'2.7.11','12/05/2015',' '); -INSERT INTO entity_versions VALUES(2989,587,'2.7.10','05/23/2015',' '); -INSERT INTO entity_versions VALUES(2990,587,'2.7.9','12/10/2014',' '); -INSERT INTO entity_versions VALUES(2991,587,'2.7.8','07/01/2014',' '); -INSERT INTO entity_versions VALUES(2992,587,'2.7.7','05/31/2014',' '); -INSERT INTO entity_versions VALUES(2993,587,'2.7.6','11/10/2013',' '); -INSERT INTO entity_versions VALUES(2994,587,'2.7.5','05/15/2013',' '); -INSERT INTO entity_versions VALUES(2995,587,'2.7.4','04/06/2013',' '); -INSERT INTO entity_versions VALUES(2996,587,'2.7.3','04/09/2012',' '); -INSERT INTO entity_versions VALUES(2997,587,'2.7.2','06/11/2011',' '); -INSERT INTO entity_versions VALUES(2998,587,'2.7.1','11/27/2010',' '); -INSERT INTO entity_versions VALUES(2999,587,'2.7','07/04/2010',' '); -INSERT INTO entity_versions VALUES(3000,587,'2.6.9','10/29/2013',' '); -INSERT INTO entity_versions VALUES(3001,587,'2.6.8','04/10/2012',' '); -INSERT INTO entity_versions VALUES(3002,587,'2.6.7','06/03/2011',' '); -INSERT INTO entity_versions VALUES(3003,587,'2.6.6','08/24/2010',' '); -INSERT INTO entity_versions VALUES(3004,587,'2.6.5','03/19/2010',' '); -INSERT INTO entity_versions VALUES(3005,587,'2.6.4','10/25/2009',' '); -INSERT INTO entity_versions VALUES(3006,587,'2.6.3','10/02/2009',' '); -INSERT INTO entity_versions VALUES(3007,587,'2.6.2','04/14/2009',' '); -INSERT INTO entity_versions VALUES(3008,587,'2.6.1','12/04/2008',' '); -INSERT INTO entity_versions VALUES(3009,587,'2.6','10/01/2008',' '); -INSERT INTO entity_versions VALUES(3010,587,'2.5.4','12/23/2008',' '); -INSERT INTO entity_versions VALUES(3011,587,'2.5.3','12/19/2008',' '); -INSERT INTO entity_versions VALUES(3012,587,'2.5.2','02/21/2008',' '); -INSERT INTO entity_versions VALUES(3013,587,'2.5.1','04/18/2007',' '); -INSERT INTO entity_versions VALUES(3014,587,'2.5','09/19/2006',' '); -INSERT INTO entity_versions VALUES(3015,587,'2.4.4','10/18/2006',' '); -INSERT INTO entity_versions VALUES(3016,587,'2.4.3','03/29/2006',' '); -INSERT INTO entity_versions VALUES(3017,587,'2.4.2','09/28/2005',' '); -INSERT INTO entity_versions VALUES(3018,587,'2.4.1','03/30/2005',' '); -INSERT INTO entity_versions VALUES(3019,587,'2.4','11/30/2004',' '); -INSERT INTO entity_versions VALUES(3020,587,'2.3.5','02/08/2005',' '); -INSERT INTO entity_versions VALUES(3021,587,'2.3.4','05/27/2004',' '); -INSERT INTO entity_versions VALUES(3022,587,'2.3.3','12/19/2003',' '); -INSERT INTO entity_versions VALUES(3023,587,'2.3.2','10/03/2003',' '); -INSERT INTO entity_versions VALUES(3024,587,'2.3.1','09/23/2003',' '); -INSERT INTO entity_versions VALUES(3025,587,'2.3','07/29/2003',' '); -INSERT INTO entity_versions VALUES(3026,587,'2.2.3','05/30/2003',' '); -INSERT INTO entity_versions VALUES(3027,587,'2.2.2','10/14/2002',' '); -INSERT INTO entity_versions VALUES(3028,587,'2.2.1','04/10/2002',' '); -INSERT INTO entity_versions VALUES(3029,587,'2.2.0','03/29/2002',' '); -INSERT INTO entity_versions VALUES(3030,587,'2.2','12/21/2001',' '); -INSERT INTO entity_versions VALUES(3031,587,'2.1.3','04/08/2002',' '); -INSERT INTO entity_versions VALUES(3032,587,'2.1.2','01/16/2002',' '); -INSERT INTO entity_versions VALUES(3033,587,'2.1.1','07/20/2001',' '); -INSERT INTO entity_versions VALUES(3034,587,'2.1','04/15/2001',' '); -INSERT INTO entity_versions VALUES(3035,587,'2.0.1','06/22/2001',' '); -INSERT INTO entity_versions VALUES(3036,587,'2','10/16/2000',' '); -INSERT INTO entity_versions VALUES(3037,587,'1.6','09/05/2000',' '); -INSERT INTO entity_versions VALUES(3038,587,'1.5.2p2','03/22/2000',' '); -INSERT INTO entity_versions VALUES(3039,587,'1.5.2p1','07/06/1999',' '); -INSERT INTO entity_versions VALUES(3040,587,'1.5.2','04/30/1999',' '); -INSERT INTO entity_versions VALUES(3041,587,'1.5.1p1','08/06/1998',' '); -INSERT INTO entity_versions VALUES(3042,587,'1.5.1','04/14/1998',' '); -INSERT INTO entity_versions VALUES(3043,587,'1.5','02/17/1998',' '); -INSERT INTO entity_versions VALUES(3044,587,'1.4','10/25/1996',' '); -INSERT INTO entity_versions VALUES(3045,587,'1','01/01/1994',' '); -INSERT INTO entity_versions VALUES(3046,355,'4.1.1','08/30/2021',' '); -INSERT INTO entity_versions VALUES(3047,355,'4.1.0','05/30/2021',' '); -INSERT INTO entity_versions VALUES(3048,355,'4.0.5','03/30/2021',' '); -INSERT INTO entity_versions VALUES(3049,355,'4.0.4','02/28/2020',' '); -INSERT INTO entity_versions VALUES(3050,355,'4.0.3','10/30/2020',' '); -INSERT INTO entity_versions VALUES(3051,355,'4.0.2','06/30/2020',' '); -INSERT INTO entity_versions VALUES(3052,355,'4.0.1','06/30/2020',' '); -INSERT INTO entity_versions VALUES(3053,355,'4.0.0','04/30/2020',' '); -INSERT INTO entity_versions VALUES(3054,355,'3.6.3','02/28/2019',' '); -INSERT INTO entity_versions VALUES(3055,355,'3.6.2','12/30/2019',' '); -INSERT INTO entity_versions VALUES(3056,355,'3.6.1','07/30/2019',' '); -INSERT INTO entity_versions VALUES(3057,355,'3.6.0','04/30/2019',' '); -INSERT INTO entity_versions VALUES(3058,355,'3.5.3','03/30/2018',' '); -INSERT INTO entity_versions VALUES(3059,355,'3.5.2','12/30/2018',' '); -INSERT INTO entity_versions VALUES(3060,355,'3.5.1','07/30/2018',' '); -INSERT INTO entity_versions VALUES(3061,355,'3.5.0','04/30/2018',' '); -INSERT INTO entity_versions VALUES(3062,355,'3.4.4','03/30/2017',' '); -INSERT INTO entity_versions VALUES(3063,355,'3.4.3','11/30/2017',' '); -INSERT INTO entity_versions VALUES(3064,355,'3.4.2','09/30/2017',' '); -INSERT INTO entity_versions VALUES(3065,355,'3.4.1','06/30/2017',' '); -INSERT INTO entity_versions VALUES(3066,355,'3.4.0','04/30/2017',' '); -INSERT INTO entity_versions VALUES(3067,355,'3.3.3','03/30/2016',' '); -INSERT INTO entity_versions VALUES(3068,355,'3.3.2','10/30/2016',' '); -INSERT INTO entity_versions VALUES(3069,355,'3.3.1','06/30/2016',' '); -INSERT INTO entity_versions VALUES(3070,355,'3.3.0','04/30/2016',' '); -INSERT INTO entity_versions VALUES(3071,355,'3.2.5','04/30/2016',' '); -INSERT INTO entity_versions VALUES(3072,355,'3.2.4','03/30/2015',' '); -INSERT INTO entity_versions VALUES(3073,355,'3.2.3','12/30/2015',' '); -INSERT INTO entity_versions VALUES(3074,355,'3.2.2','08/30/2015',' '); -INSERT INTO entity_versions VALUES(3075,355,'3.2.1','06/30/2015',' '); -INSERT INTO entity_versions VALUES(3076,355,'3.2.0','04/30/2015',' '); -INSERT INTO entity_versions VALUES(3077,355,'3.1.3','03/30/2014',' '); -INSERT INTO entity_versions VALUES(3078,355,'3.1.2','10/30/2014',' '); -INSERT INTO entity_versions VALUES(3079,355,'3.1.1','07/30/2014',' '); -INSERT INTO entity_versions VALUES(3080,355,'3.1.0','04/30/2014',' '); -INSERT INTO entity_versions VALUES(3081,355,'3.0.3','03/30/2014',' '); -INSERT INTO entity_versions VALUES(3082,355,'3.0.2','09/30/2013',' '); -INSERT INTO entity_versions VALUES(3083,355,'3.0.1','05/30/2013',' '); -INSERT INTO entity_versions VALUES(3084,355,'3.0.0','04/30/2013',' '); -INSERT INTO entity_versions VALUES(3085,355,'2.15.3','03/30/2013',' '); -INSERT INTO entity_versions VALUES(3086,355,'2.15.2','10/30/2012',' '); -INSERT INTO entity_versions VALUES(3087,355,'2.15.1','06/30/2012',' '); -INSERT INTO entity_versions VALUES(3088,355,'2.15.0','03/30/2012',' '); -INSERT INTO entity_versions VALUES(3089,355,'2.14.2','02/28/2012',' '); -INSERT INTO entity_versions VALUES(3090,355,'2.14.1','12/30/2011',' '); -INSERT INTO entity_versions VALUES(3091,355,'2.14.0','11/30/2011',' '); -INSERT INTO entity_versions VALUES(3092,355,'2.13.2','09/30/2011',' '); -INSERT INTO entity_versions VALUES(3093,355,'2.13.1','07/30/2011',' '); -INSERT INTO entity_versions VALUES(3094,355,'2.13.0','04/30/2011',' '); -INSERT INTO entity_versions VALUES(3095,355,'2.12.2','02/28/2011',' '); -INSERT INTO entity_versions VALUES(3096,355,'2.12.1','12/30/2010',' '); -INSERT INTO entity_versions VALUES(3097,355,'2.12.0','10/30/2010',' '); -INSERT INTO entity_versions VALUES(3098,355,'2.11.1','05/30/2010',' '); -INSERT INTO entity_versions VALUES(3099,355,'2.11.0','04/30/2010',' '); -INSERT INTO entity_versions VALUES(3100,355,'2.10.1','12/30/2009',' '); -INSERT INTO entity_versions VALUES(3101,355,'2.10.0','10/30/2009',' '); -INSERT INTO entity_versions VALUES(3102,355,'2.9.2','08/30/2009',' '); -INSERT INTO entity_versions VALUES(3103,355,'2.9.1','06/30/2009',' '); -INSERT INTO entity_versions VALUES(3104,355,'2.9.0','04/30/2009',' '); -INSERT INTO entity_versions VALUES(3105,355,'2.8.1','12/30/2008',' '); -INSERT INTO entity_versions VALUES(3106,355,'2.8.0','10/30/2008',' '); -INSERT INTO entity_versions VALUES(3107,355,'2.7.2','08/30/2008',' '); -INSERT INTO entity_versions VALUES(3108,355,'2.7.1','06/30/2008',' '); -INSERT INTO entity_versions VALUES(3109,355,'2.7.0','04/30/2008',' '); -INSERT INTO entity_versions VALUES(3110,355,'2.6.2','02/28/2008',' '); -INSERT INTO entity_versions VALUES(3111,355,'2.6.1','11/30/2007',' '); -INSERT INTO entity_versions VALUES(3112,355,'2.6.0','10/30/2007',' '); -INSERT INTO entity_versions VALUES(3113,355,'2.5.1','07/30/2007',' '); -INSERT INTO entity_versions VALUES(3114,355,'2.5.0','04/30/2007',' '); -INSERT INTO entity_versions VALUES(3115,355,'2.4.1','12/30/2006',' '); -INSERT INTO entity_versions VALUES(3116,355,'2.4.0','10/30/2006',' '); -INSERT INTO entity_versions VALUES(3117,355,'2.3.1','06/30/2006',' '); -INSERT INTO entity_versions VALUES(3118,355,'2.3.0','04/30/2006',' '); -INSERT INTO entity_versions VALUES(3119,355,'2.2.1','12/30/2005',' '); -INSERT INTO entity_versions VALUES(3120,355,'2.2.0','10/30/2005',' '); -INSERT INTO entity_versions VALUES(3121,355,'2.1.1','06/30/2005',' '); -INSERT INTO entity_versions VALUES(3122,355,'2.1.0','04/30/2005',' '); -INSERT INTO entity_versions VALUES(3123,355,'2.0.1','11/30/2004',' '); -INSERT INTO entity_versions VALUES(3124,355,'2.0.0','10/30/2004',' '); -INSERT INTO entity_versions VALUES(3125,355,'1.9.1','06/30/2004',' '); -INSERT INTO entity_versions VALUES(3126,355,'1.8.1','11/30/2003',' '); -INSERT INTO entity_versions VALUES(3127,355,'1.7.1','06/30/2003',' '); -INSERT INTO entity_versions VALUES(3128,355,'1.6.2','01/30/2003',' '); -INSERT INTO entity_versions VALUES(3129,355,'1.5.1','06/30/2002',' '); -INSERT INTO entity_versions VALUES(3130,355,'1.4.1','01/30/2002',' '); -INSERT INTO entity_versions VALUES(3131,355,'1.3.1','09/30/2001',' '); -INSERT INTO entity_versions VALUES(3132,355,'1.2.2','03/30/2001',' '); -INSERT INTO entity_versions VALUES(3133,355,'1.0.0','02/28/2000',' '); -INSERT INTO entity_versions VALUES(3134,588,'3.0.2','07/07/2021',' '); -INSERT INTO entity_versions VALUES(3135,588,'2.7.4','07/07/2021',' '); -INSERT INTO entity_versions VALUES(3136,588,'2.6.8','07/07/2021',' '); -INSERT INTO entity_versions VALUES(3137,588,'3.0.1','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3138,588,'2.7.3','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3139,588,'2.6.7','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3140,588,'2.5.9','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3141,588,'3.0.0','12/25/2020',' '); -INSERT INTO entity_versions VALUES(3142,588,'3.0.0src1','12/20/2020',' '); -INSERT INTO entity_versions VALUES(3143,588,'3.0.0spreview2','12/08/2020',' '); -INSERT INTO entity_versions VALUES(3144,588,'2.7.2','10/02/2020',' '); -INSERT INTO entity_versions VALUES(3145,588,'3.0.0spreview1','09/25/2020',' '); -INSERT INTO entity_versions VALUES(3146,588,'2.7.1','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3147,588,'2.6.6','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3148,588,'2.5.8','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3149,588,'2.4.10','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3150,588,'2.7.0','12/25/2019',' '); -INSERT INTO entity_versions VALUES(3151,588,'2.7.0src2','12/21/2019',' '); -INSERT INTO entity_versions VALUES(3152,588,'2.7.0src1','12/17/2019',' '); -INSERT INTO entity_versions VALUES(3153,588,'2.7.0spreview3','11/23/2019',' '); -INSERT INTO entity_versions VALUES(3154,588,'2.7.0spreview2','10/22/2019',' '); -INSERT INTO entity_versions VALUES(3155,588,'2.4.9','10/02/2019',' '); -INSERT INTO entity_versions VALUES(3156,588,'2.6.5','10/01/2019',' '); -INSERT INTO entity_versions VALUES(3157,588,'2.5.7','10/01/2019',' '); -INSERT INTO entity_versions VALUES(3158,588,'2.4.8','10/01/2019',' '); -INSERT INTO entity_versions VALUES(3159,588,'2.6.4','08/28/2019',' '); -INSERT INTO entity_versions VALUES(3160,588,'2.5.6','08/28/2019',' '); -INSERT INTO entity_versions VALUES(3161,588,'2.4.7','08/28/2019',' '); -INSERT INTO entity_versions VALUES(3162,588,'2.7.0spreview1','05/30/2019',' '); -INSERT INTO entity_versions VALUES(3163,588,'2.6.3','04/17/2019',' '); -INSERT INTO entity_versions VALUES(3164,588,'2.4.6','04/01/2019',' '); -INSERT INTO entity_versions VALUES(3165,588,'2.5.5','03/15/2019',' '); -INSERT INTO entity_versions VALUES(3166,588,'2.6.2','03/13/2019',' '); -INSERT INTO entity_versions VALUES(3167,588,'2.5.4','03/13/2019',' '); -INSERT INTO entity_versions VALUES(3168,588,'2.6.1','01/30/2019',' '); -INSERT INTO entity_versions VALUES(3169,588,'2.6.0','12/25/2018',' '); -INSERT INTO entity_versions VALUES(3170,588,'2.6.0src2','12/15/2018',' '); -INSERT INTO entity_versions VALUES(3171,588,'2.6.0src1','12/06/2018',' '); -INSERT INTO entity_versions VALUES(3172,588,'2.6.0spreview3','11/06/2018',' '); -INSERT INTO entity_versions VALUES(3173,588,'2.5.3','10/18/2018',' '); -INSERT INTO entity_versions VALUES(3174,588,'2.5.2','10/17/2018',' '); -INSERT INTO entity_versions VALUES(3175,588,'2.4.5','10/17/2018',' '); -INSERT INTO entity_versions VALUES(3176,588,'2.3.8','10/17/2018',' '); -INSERT INTO entity_versions VALUES(3177,588,'2.6.0spreview2','05/31/2018',' '); -INSERT INTO entity_versions VALUES(3178,588,'2.5.1','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3179,588,'2.4.4','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3180,588,'2.3.7','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3181,588,'2.2.10','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3182,588,'2.6.0spreview1','02/24/2018',' '); -INSERT INTO entity_versions VALUES(3183,588,'2.5.0','12/25/2017',' '); -INSERT INTO entity_versions VALUES(3184,588,'2.5.0src1','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3185,588,'2.4.3','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3186,588,'2.3.6','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3187,588,'2.2.9','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3188,588,'2.5.0spreview1','10/10/2017',' '); -INSERT INTO entity_versions VALUES(3189,588,'2.4.2','09/14/2017',' '); -INSERT INTO entity_versions VALUES(3190,588,'2.3.5','09/14/2017',' '); -INSERT INTO entity_versions VALUES(3191,588,'2.2.8','09/14/2017',' '); -INSERT INTO entity_versions VALUES(3192,588,'2.3.4','03/30/2017',' '); -INSERT INTO entity_versions VALUES(3193,588,'2.2.7','03/28/2017',' '); -INSERT INTO entity_versions VALUES(3194,588,'2.4.1','03/22/2017',' '); -INSERT INTO entity_versions VALUES(3195,588,'2.4.0','12/25/2016',' '); -INSERT INTO entity_versions VALUES(3196,588,'2.4.0src1','12/12/2016',' '); -INSERT INTO entity_versions VALUES(3197,588,'2.3.3','11/21/2016',' '); -INSERT INTO entity_versions VALUES(3198,588,'2.3.2','11/15/2016',' '); -INSERT INTO entity_versions VALUES(3199,588,'2.2.6','11/15/2016',' '); -INSERT INTO entity_versions VALUES(3200,588,'2.4.0spreview3','11/09/2016',' '); -INSERT INTO entity_versions VALUES(3201,588,'2.4.0spreview2','09/08/2016',' '); -INSERT INTO entity_versions VALUES(3202,588,'2.4.0spreview1','06/20/2016',' '); -INSERT INTO entity_versions VALUES(3203,588,'2.3.1','04/26/2016',' '); -INSERT INTO entity_versions VALUES(3204,588,'2.2.5','04/26/2016',' '); -INSERT INTO entity_versions VALUES(3205,588,'2.1.10','04/01/2016',' '); -INSERT INTO entity_versions VALUES(3206,588,'2.1.9','03/30/2016',' '); -INSERT INTO entity_versions VALUES(3207,588,'2.3.0','12/25/2015',' '); -INSERT INTO entity_versions VALUES(3208,588,'2.2.4','12/16/2015',' '); -INSERT INTO entity_versions VALUES(3209,588,'2.1.8','12/16/2015',' '); -INSERT INTO entity_versions VALUES(3210,588,'2.0.0sp648','12/16/2015',' '); -INSERT INTO entity_versions VALUES(3211,588,'2.3.0spreview2','12/11/2015',' '); -INSERT INTO entity_versions VALUES(3212,588,'2.3.0spreview1','11/11/2015',' '); -INSERT INTO entity_versions VALUES(3213,588,'2.2.3','08/18/2015',' '); -INSERT INTO entity_versions VALUES(3214,588,'2.1.7','08/18/2015',' '); -INSERT INTO entity_versions VALUES(3215,588,'2.0.0sp647','08/18/2015',' '); -INSERT INTO entity_versions VALUES(3216,588,'2.2.2','04/13/2015',' '); -INSERT INTO entity_versions VALUES(3217,588,'2.1.6','04/13/2015',' '); -INSERT INTO entity_versions VALUES(3218,588,'2.0.0sp645','04/13/2015',' '); -INSERT INTO entity_versions VALUES(3219,588,'2.2.1','03/03/2015',' '); -INSERT INTO entity_versions VALUES(3220,588,'2.0.0sp643','02/25/2015',' '); -INSERT INTO entity_versions VALUES(3221,588,'2.2.0','12/25/2014',' '); -INSERT INTO entity_versions VALUES(3222,588,'2.2.0src1','12/18/2014',' '); -INSERT INTO entity_versions VALUES(3223,588,'2.2.0spreview2','11/28/2014',' '); -INSERT INTO entity_versions VALUES(3224,588,'2.1.5','11/13/2014',' '); -INSERT INTO entity_versions VALUES(3225,588,'2.0.0sp598','11/13/2014',' '); -INSERT INTO entity_versions VALUES(3226,588,'1.9.3sp551','11/13/2014',' '); -INSERT INTO entity_versions VALUES(3227,588,'2.1.4','10/27/2014',' '); -INSERT INTO entity_versions VALUES(3228,588,'2.0.0sp594','10/27/2014',' '); -INSERT INTO entity_versions VALUES(3229,588,'1.9.3sp550','10/27/2014',' '); -INSERT INTO entity_versions VALUES(3230,588,'2.1.3','09/19/2014',' '); -INSERT INTO entity_versions VALUES(3231,588,'2.0.0sp576','09/19/2014',' '); -INSERT INTO entity_versions VALUES(3232,588,'2.2.0spreview1','09/18/2014',' '); -INSERT INTO entity_versions VALUES(3233,588,'1.9.2sp330','08/19/2014',' '); -INSERT INTO entity_versions VALUES(3234,588,'1.9.3sp547','05/16/2014',' '); -INSERT INTO entity_versions VALUES(3235,588,'2.1.2','05/09/2014',' '); -INSERT INTO entity_versions VALUES(3236,588,'2.0.0sp481','05/09/2014',' '); -INSERT INTO entity_versions VALUES(3237,588,'2.1.1','02/24/2014',' '); -INSERT INTO entity_versions VALUES(3238,588,'2.0.0sp451','02/24/2014',' '); -INSERT INTO entity_versions VALUES(3239,588,'1.9.3sp545','02/24/2014',' '); -INSERT INTO entity_versions VALUES(3240,588,'2.1.0','12/25/2013',' '); -INSERT INTO entity_versions VALUES(3241,588,'2.1.0src1','12/20/2013',' '); -INSERT INTO entity_versions VALUES(3242,588,'2.1.0spreview2','11/22/2013',' '); -INSERT INTO entity_versions VALUES(3243,588,'2.0.0sp353','11/22/2013',' '); -INSERT INTO entity_versions VALUES(3244,588,'1.9.3sp484','11/22/2013',' '); -INSERT INTO entity_versions VALUES(3245,588,'2.1.0spreview1','09/23/2013',' '); -INSERT INTO entity_versions VALUES(3246,588,'2.0.0sp247','06/27/2013',' '); -INSERT INTO entity_versions VALUES(3247,588,'1.9.3sp448','06/27/2013',' '); -INSERT INTO entity_versions VALUES(3248,588,'1.8.7sp374','06/27/2013',' '); -INSERT INTO entity_versions VALUES(3249,588,'2.0.0sp195','05/14/2013',' '); -INSERT INTO entity_versions VALUES(3250,588,'1.9.3sp429','05/14/2013',' '); -INSERT INTO entity_versions VALUES(3251,588,'2.0.0','02/24/2013',' '); -INSERT INTO entity_versions VALUES(3252,588,'1.9.3sp392','02/22/2013',' '); -INSERT INTO entity_versions VALUES(3253,588,'2.0.0src2','02/08/2013',' '); -INSERT INTO entity_versions VALUES(3254,588,'1.9.3sp385','02/06/2013',' '); -INSERT INTO entity_versions VALUES(3255,588,'1.9.3sp374','01/17/2013',' '); -INSERT INTO entity_versions VALUES(3256,588,'1.9.3sp362','12/25/2012',' '); -INSERT INTO entity_versions VALUES(3257,588,'1.9.3sp327','11/09/2012',' '); -INSERT INTO entity_versions VALUES(3258,588,'1.9.3sp286','10/12/2012',' '); -INSERT INTO entity_versions VALUES(3259,588,'1.8.7sp370','06/29/2012',' '); -INSERT INTO entity_versions VALUES(3260,588,'1.9.2sp320','04/21/2012',' '); -INSERT INTO entity_versions VALUES(3261,588,'1.9.3sp194','04/20/2012',' '); -INSERT INTO entity_versions VALUES(3262,588,'1.9.3sp125','02/16/2012',' '); -INSERT INTO entity_versions VALUES(3263,588,'1.9.3','10/31/2011',' '); -INSERT INTO entity_versions VALUES(3264,588,'1.9.3src1','09/24/2011',' '); -INSERT INTO entity_versions VALUES(3265,588,'1.9.3spreview1','08/01/2011',' '); -INSERT INTO entity_versions VALUES(3266,588,'1.9.2sp290','07/15/2011',' '); -INSERT INTO entity_versions VALUES(3267,588,'1.8.7sp352','07/02/2011',' '); -INSERT INTO entity_versions VALUES(3268,588,'1.9.2sp136','12/25/2010',' '); -INSERT INTO entity_versions VALUES(3269,588,'1.8.7sp330','12/25/2010',' '); -INSERT INTO entity_versions VALUES(3270,588,'1.9.2','08/18/2010',' '); -INSERT INTO entity_versions VALUES(3271,588,'1.9.1sp430','08/16/2010',' '); -INSERT INTO entity_versions VALUES(3272,588,'1.8.7sp302','08/16/2010',' '); -INSERT INTO entity_versions VALUES(3273,588,'1.9.2src2','07/11/2010',' '); -INSERT INTO entity_versions VALUES(3274,588,'1.9.2src1','07/02/2010',' '); -INSERT INTO entity_versions VALUES(3275,588,'1.9.1sp429','07/02/2010',' '); -INSERT INTO entity_versions VALUES(3276,588,'1.8.7sp299','06/23/2010',' '); -INSERT INTO entity_versions VALUES(3277,588,'1.8.7sp248','12/25/2009',' '); -INSERT INTO entity_versions VALUES(3278,588,'1.9.1sp376','12/07/2009',' '); -INSERT INTO entity_versions VALUES(3279,588,'1.9.2spreview1','07/20/2009',' '); -INSERT INTO entity_versions VALUES(3280,588,'1.9.1sp243','07/20/2009',' '); -INSERT INTO entity_versions VALUES(3281,588,'1.9.1sp129','05/12/2009',' '); -INSERT INTO entity_versions VALUES(3282,588,'1.8.7sp160','04/18/2009',' '); -INSERT INTO entity_versions VALUES(3283,588,'1.8.6sp368','04/18/2009',' '); -INSERT INTO entity_versions VALUES(3284,588,'1.9.1','01/30/2009',' '); -INSERT INTO entity_versions VALUES(3285,588,'1.9.1spreview1','10/28/2008',' '); -INSERT INTO entity_versions VALUES(3286,588,'1.8.7sp72','08/11/2008',' '); -INSERT INTO entity_versions VALUES(3287,588,'1.8.6sp287','08/11/2008',' '); -INSERT INTO entity_versions VALUES(3288,588,'1.8.7','05/31/2008',' '); -INSERT INTO entity_versions VALUES(3289,588,'1.9.0','12/25/2007',' '); -INSERT INTO entity_versions VALUES(3290,588,'1.8.6','03/12/2007',' '); -INSERT INTO entity_versions VALUES(3291,588,'1.8.5','08/29/2006',' '); -INSERT INTO entity_versions VALUES(3292,588,'1.8.4','12/24/2005',' '); -INSERT INTO entity_versions VALUES(3293,588,'1.8.4spreview2','12/14/2005',' '); -INSERT INTO entity_versions VALUES(3294,588,'1.8.3','09/21/2005',' '); -INSERT INTO entity_versions VALUES(3295,588,'1.8.2','12/26/2004',' '); -INSERT INTO entity_versions VALUES(3296,588,'1.8.2spreview4','12/22/2004',' '); -INSERT INTO entity_versions VALUES(3297,588,'1.8.2spreview3','11/08/2004',' '); -INSERT INTO entity_versions VALUES(3298,588,'1.8.2spreview2','07/30/2004',' '); -INSERT INTO entity_versions VALUES(3299,588,'1.8.2spreview1','07/21/2004',' '); -INSERT INTO entity_versions VALUES(3300,588,'1.8.0','08/04/2003',' '); -INSERT INTO entity_versions VALUES(3301,588,'1.6.7','03/01/2002',' '); -INSERT INTO entity_versions VALUES(3302,323,'1','03/28/2012',' '); -INSERT INTO entity_versions VALUES(3303,323,'1.1','05/13/2013',' '); -INSERT INTO entity_versions VALUES(3304,323,'1.2','12/01/2013',' '); -INSERT INTO entity_versions VALUES(3305,323,'1.3','06/18/2014',' '); -INSERT INTO entity_versions VALUES(3306,323,'1.4','12/10/2014',' '); -INSERT INTO entity_versions VALUES(3307,323,'1.5','08/19/2015',' '); -INSERT INTO entity_versions VALUES(3308,323,'1.6','02/17/2016',' '); -INSERT INTO entity_versions VALUES(3309,323,'1.7','08/15/2016',' '); -INSERT INTO entity_versions VALUES(3310,323,'1.8','02/16/2017',' '); -INSERT INTO entity_versions VALUES(3311,323,'1.9','08/24/2017',' '); -INSERT INTO entity_versions VALUES(3312,323,'1.10','02/16/2018',' '); -INSERT INTO entity_versions VALUES(3313,323,'1.11','08/24/2018',' '); -INSERT INTO entity_versions VALUES(3314,323,'1.12.1','02/25/2019',' '); -INSERT INTO entity_versions VALUES(3315,323,'1.13.1','09/03/2019',' '); -INSERT INTO entity_versions VALUES(3316,323,'1.14','02/25/2020',' '); -INSERT INTO entity_versions VALUES(3317,323,'1.15','08/11/2020',' '); -INSERT INTO entity_versions VALUES(3318,323,'1.16','02/16/2021',' '); -INSERT INTO entity_versions VALUES(3319,323,'1.17','08/16/2021',' '); -INSERT INTO entity_versions VALUES(3320,325,'1','01/02/2007',' '); -INSERT INTO entity_versions VALUES(3321,325,'1.2','12/07/2007',' '); -INSERT INTO entity_versions VALUES(3322,325,'1.5',' ',' '); -INSERT INTO entity_versions VALUES(3323,325,'2','07/02/2012',' '); -INSERT INTO entity_versions VALUES(3324,325,'3','02/07/2020',' '); -INSERT INTO entity_versions VALUES(3325,325,'4.0','09/01/2021',' '); -INSERT INTO entity_versions VALUES(3326,333,'1.2','12/12/1999','05/22/2020'); -INSERT INTO entity_versions VALUES(3327,333,'1.3','09/24/2001','06/28/2020'); -INSERT INTO entity_versions VALUES(3328,333,'1.4','11/11/2003','08/29/2020'); -INSERT INTO entity_versions VALUES(3329,333,'5','05/11/2006','08/11/2020'); -INSERT INTO entity_versions VALUES(3330,333,'6','12/10/2009','12/19/2020'); -INSERT INTO entity_versions VALUES(3331,333,'7','05/28/2013','04/30/2001'); -INSERT INTO entity_versions VALUES(3332,333,'8','08/31/2017','06/23/2001'); -INSERT INTO entity_versions VALUES(3333,333,'9','11/22/2020','12/10/2001'); -INSERT INTO entity_versions VALUES(3334,333,'9.1','05/25/2021',' '); -INSERT INTO entity_versions VALUES(3335,583,'98','12/31/1998',' '); -INSERT INTO entity_versions VALUES(3336,583,'03','12/31/2003',' '); -INSERT INTO entity_versions VALUES(3337,583,'11','12/31/2011',' '); -INSERT INTO entity_versions VALUES(3338,583,'14','12/31/2014',' '); -INSERT INTO entity_versions VALUES(3339,583,'17','12/31/2017',' '); -INSERT INTO entity_versions VALUES(3340,583,'20','12/31/2020',' '); -INSERT INTO entity_versions VALUES(3341,344,'progress 4gl','12/31/1981',' '); -INSERT INTO entity_versions VALUES(3342,344,'10.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(3343,586,'3.0.0','08/20/2020','08/20/2020'); -INSERT INTO entity_versions VALUES(3344,586,'4','05/22/2020',' '); -INSERT INTO entity_versions VALUES(3345,586,'4.1','12/10/2001',' '); -INSERT INTO entity_versions VALUES(3346,586,'4.2','04/22/2002',' '); -INSERT INTO entity_versions VALUES(3347,586,'4.3','12/27/2002',' '); -INSERT INTO entity_versions VALUES(3348,586,'4.4','07/11/2005',' '); -INSERT INTO entity_versions VALUES(3349,586,'5','07/13/2004',' '); -INSERT INTO entity_versions VALUES(3350,586,'5.1','11/24/2005',' '); -INSERT INTO entity_versions VALUES(3351,586,'5.2','11/02/2006',' '); -INSERT INTO entity_versions VALUES(3352,586,'5.3','06/30/2009',' '); -INSERT INTO entity_versions VALUES(3353,586,'5.4','03/01/2012',' '); -INSERT INTO entity_versions VALUES(3354,586,'5.5','06/20/2013',' '); -INSERT INTO entity_versions VALUES(3355,586,'5.6','08/28/2014',' '); -INSERT INTO entity_versions VALUES(3356,586,'7','12/03/2015',' '); -INSERT INTO entity_versions VALUES(3357,586,'7.1','12/01/2016',' '); -INSERT INTO entity_versions VALUES(3358,586,'7.2','11/30/2017',' '); -INSERT INTO entity_versions VALUES(3359,586,'7.3','12/06/2018',' '); -INSERT INTO entity_versions VALUES(3360,586,'7.4','11/28/2019',' '); -INSERT INTO entity_versions VALUES(3361,586,'8','11/26/2020',' '); -INSERT INTO entity_versions VALUES(3362,311,'3','06/30/1997',' '); -INSERT INTO entity_versions VALUES(3363,311,'4','11/30/1998',' '); -INSERT INTO entity_versions VALUES(3364,311,'4.5','11/30/1999',' '); -INSERT INTO entity_versions VALUES(3365,311,'5','06/30/2001',' '); -INSERT INTO entity_versions VALUES(3366,311,'6','06/30/2002',' '); -INSERT INTO entity_versions VALUES(3367,311,'7','02/07/2005',' '); -INSERT INTO entity_versions VALUES(3368,311,'8','06/30/2007',' '); -INSERT INTO entity_versions VALUES(3369,311,'9','10/05/2009',' '); -INSERT INTO entity_versions VALUES(3370,311,'10',' ',' '); -INSERT INTO entity_versions VALUES(3371,311,'11','04/29/2014',' '); -INSERT INTO entity_versions VALUES(3372,311,'2016','02/16/2016',' '); -INSERT INTO entity_versions VALUES(3373,311,'2018','07/12/2018',' '); -INSERT INTO entity_versions VALUES(3374,311,'2021','11/11/2020',' '); -INSERT INTO entity_versions VALUES(3375,362,'1.0.0','12/08/2003',' '); -INSERT INTO entity_versions VALUES(3376,362,'1.1.0','02/19/2004',' '); -INSERT INTO entity_versions VALUES(3377,362,'1.1.1','03/23/2004',' '); -INSERT INTO entity_versions VALUES(3378,362,'1.2.0','06/09/2004',' '); -INSERT INTO entity_versions VALUES(3379,362,'1.3.0','09/16/2004',' '); -INSERT INTO entity_versions VALUES(3380,362,'1.4.0','06/20/2005',' '); -INSERT INTO entity_versions VALUES(3381,362,'2','03/12/2006',' '); -INSERT INTO entity_versions VALUES(3382,362,'2.1.0','03/17/2006',' '); -INSERT INTO entity_versions VALUES(3383,362,'2.1.8','08/23/2006',' '); -INSERT INTO entity_versions VALUES(3384,362,'2.3.0','11/23/2006',' '); -INSERT INTO entity_versions VALUES(3385,362,'2.4.0','03/09/2007',' '); -INSERT INTO entity_versions VALUES(3386,362,'2.5.0','05/02/2007',' '); -INSERT INTO entity_versions VALUES(3387,362,'2.6.0','07/27/2007',' '); -INSERT INTO entity_versions VALUES(3388,362,'2.7.0','02/07/2008',' '); -INSERT INTO entity_versions VALUES(3389,362,'2.8.0','07/14/2010',' '); -INSERT INTO entity_versions VALUES(3390,362,'2.9.0','05/12/2011',' '); -INSERT INTO entity_versions VALUES(3391,362,'2.1','01/04/2013',' '); -INSERT INTO entity_versions VALUES(3392,313,'1','12/31/1995',' '); -INSERT INTO entity_versions VALUES(3393,313,'2','12/31/1996',' '); -INSERT INTO entity_versions VALUES(3394,313,'3','12/31/1997',' '); -INSERT INTO entity_versions VALUES(3395,313,'4','12/31/1998',' '); -INSERT INTO entity_versions VALUES(3396,313,'5','12/31/1999',' '); -INSERT INTO entity_versions VALUES(3397,313,'6','12/31/2001',' '); -INSERT INTO entity_versions VALUES(3398,313,'7','08/31/2002',' '); -INSERT INTO entity_versions VALUES(3399,313,'8','12/31/2003',' '); -INSERT INTO entity_versions VALUES(3400,313,'2005','12/31/2005',' '); -INSERT INTO entity_versions VALUES(3401,313,'2006','12/31/2005',' '); -INSERT INTO entity_versions VALUES(3402,313,'Turbo','09/06/2006',' '); -INSERT INTO entity_versions VALUES(3403,313,'Transfer','02/08/2006',' '); -INSERT INTO entity_versions VALUES(3404,313,'2007','03/16/2007',' '); -INSERT INTO entity_versions VALUES(3405,313,'2009',' ',' '); -INSERT INTO entity_versions VALUES(3406,313,'2010','08/25/2009',' '); -INSERT INTO entity_versions VALUES(3407,313,'XE','08/30/2010',' '); -INSERT INTO entity_versions VALUES(3408,313,'XE1','01/27/2011',' '); -INSERT INTO entity_versions VALUES(3409,313,'XE2','09/01/2011',' '); -INSERT INTO entity_versions VALUES(3410,313,'XE3','09/01/2012',' '); -INSERT INTO entity_versions VALUES(3411,313,'XE4','04/22/2013',' '); -INSERT INTO entity_versions VALUES(3412,313,'XE5','09/12/2013',' '); -INSERT INTO entity_versions VALUES(3413,313,'XE6','04/15/2014',' '); -INSERT INTO entity_versions VALUES(3414,313,'XE7','09/02/2014',' '); -INSERT INTO entity_versions VALUES(3415,313,'XE8','04/07/2015',' '); -INSERT INTO entity_versions VALUES(3416,313,'10','08/31/2015',' '); -INSERT INTO entity_versions VALUES(3417,313,'10.1','04/20/2016',' '); -INSERT INTO entity_versions VALUES(3418,313,'10.1.1','09/30/2016',' '); -INSERT INTO entity_versions VALUES(3419,313,'10.1.2','12/31/2016',' '); -INSERT INTO entity_versions VALUES(3420,313,'10.2','03/22/2017',' '); -INSERT INTO entity_versions VALUES(3421,313,'10.2.1','08/30/2017',' '); -INSERT INTO entity_versions VALUES(3422,313,'10.2.2','12/31/2017',' '); -INSERT INTO entity_versions VALUES(3423,313,'10.2.3','03/31/2018',' '); -INSERT INTO entity_versions VALUES(3424,313,'10.3','11/21/2018',' '); -INSERT INTO entity_versions VALUES(3425,313,'10.3.1','02/28/2019',' '); -INSERT INTO entity_versions VALUES(3426,313,'10.3.2','07/31/2019',' '); -INSERT INTO entity_versions VALUES(3427,313,'10.3.3','11/30/2019',' '); -INSERT INTO entity_versions VALUES(3428,313,'10.4','05/26/2020',' '); -INSERT INTO entity_versions VALUES(3429,313,'10.4.1','09/30/2020',' '); -INSERT INTO entity_versions VALUES(3430,313,'10.4.2','02/24/2021',' '); -INSERT INTO entity_versions VALUES(3431,313,'11','09/09/2021',' '); -INSERT INTO entity_versions VALUES(3432,594,'60','05/29/1959',' '); -INSERT INTO entity_versions VALUES(3433,594,'65','12/31/1965',' '); -INSERT INTO entity_versions VALUES(3434,594,'74','12/31/1974',' '); -INSERT INTO entity_versions VALUES(3435,594,'85','12/31/1985',' '); -INSERT INTO entity_versions VALUES(3436,594,'2002',' ',' '); -INSERT INTO entity_versions VALUES(3437,594,'2014',' ',' '); -INSERT INTO entity_versions VALUES(3438,580,'1.01','11/20/1985','12/31/2001'); -INSERT INTO entity_versions VALUES(3439,580,'1.02','05/14/1986','12/31/2001'); -INSERT INTO entity_versions VALUES(3440,580,'1.03','08/21/1986','12/31/2001'); -INSERT INTO entity_versions VALUES(3441,580,'1.04','04/10/1987','12/31/2001'); -INSERT INTO entity_versions VALUES(3442,580,'2.01','12/09/1987','12/31/2001'); -INSERT INTO entity_versions VALUES(3443,580,'2.03','12/09/1987','12/31/2001'); -INSERT INTO entity_versions VALUES(3444,580,'2.1','05/27/1988','12/31/2001'); -INSERT INTO entity_versions VALUES(3445,580,'2.11','03/13/1989','12/31/2001'); -INSERT INTO entity_versions VALUES(3446,580,'3','05/22/1990','12/31/2001'); -INSERT INTO entity_versions VALUES(3447,580,'3.1','04/06/1992','12/31/2001'); -INSERT INTO entity_versions VALUES(3448,580,' NT 3.1','07/27/1993','12/31/2001'); -INSERT INTO entity_versions VALUES(3449,580,'3.11','11/08/1993','12/31/2001'); -INSERT INTO entity_versions VALUES(3450,580,'3.2','11/22/1993','12/31/2001'); -INSERT INTO entity_versions VALUES(3451,580,'NT 3.5','09/21/1994','12/31/2001'); -INSERT INTO entity_versions VALUES(3452,580,'NT 3.51','08/24/1995','12/31/2001'); -INSERT INTO entity_versions VALUES(3453,580,'95','08/24/1996','12/31/2001'); -INSERT INTO entity_versions VALUES(3454,580,'NT 4.0','06/25/1998','06/30/2004'); -INSERT INTO entity_versions VALUES(3455,580,'98','05/05/1999','07/11/2006'); -INSERT INTO entity_versions VALUES(3456,580,'2000','02/17/2000','07/13/2010'); -INSERT INTO entity_versions VALUES(3457,580,'Me','09/14/2000','07/11/2006'); -INSERT INTO entity_versions VALUES(3458,580,'XP','10/25/2001','04/08/2014'); -INSERT INTO entity_versions VALUES(3459,580,'Vista','01/30/2007','04/11/2017'); -INSERT INTO entity_versions VALUES(3460,580,'7','10/22/2009','01/14/2020'); -INSERT INTO entity_versions VALUES(3461,580,'8','10/26/2012','01/12/2016'); -INSERT INTO entity_versions VALUES(3462,580,'8.1','10/17/2013','01/10/2023'); -INSERT INTO entity_versions VALUES(3463,580,'10','07/29/2015','10/14/2025'); -INSERT INTO entity_versions VALUES(3464,580,'11','10/05/2021','10/10/2023'); -INSERT INTO entity_versions VALUES(3465,697,'3.8.5','03/05/2022',''); -INSERT INTO entity_versions VALUES(3466,697,'3.8.4','11/12/2021','03/05/2022'); -INSERT INTO entity_versions VALUES(3467,697,'3.8.3','09/27/2021','11/12/2021'); -INSERT INTO entity_versions VALUES(3468,697,'3.8.1','04/04/2021','09/27/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1, 497, '1', '01/15/2002', '07/14/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2, 497, '1.1', '04/09/2003', '10/08/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3, 497, '2', '10/27/2005', '07/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (4, 497, '3', '11/06/2006', '07/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (5, 497, '3.5', '11/19/2007', '10/10/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (6, 497, '4', '04/12/2010', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (7, 497, '4.5', '08/15/2012', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (8, 497, '4.5.1', '10/17/2013', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (9, 497, '4.5.2', '05/05/2014', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (10, 497, '4.6', '07/20/2015', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (11, 497, '4.6.1', '11/30/2015', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (12, 497, '4.6.2', '08/02/2016', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (13, 497, '4.7', '04/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (14, 497, '4.7.1', '10/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (15, 497, '4.7.2', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (16, 497, '4.8', '09/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (17, 498, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (18, 592, '1', '12/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (19, 592, '2', '09/01/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (20, 592, '3', '11/01/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (21, 500, ' ', '01/01/1996', '08/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (22, 501, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (23, 501, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (24, 501, '8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (25, 501, '9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (26, 501, '10.0.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (27, 502, '5.6', '06/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (28, 502, '5.5', '12/01/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (29, 502, '5.4', '06/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (30, 502, '5.3', '12/01/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (31, 502, '5.2', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (32, 502, '5.1', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (33, 502, '4.2', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (34, 502, '4.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (35, 502, '3.2', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (36, 502, '3.1', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (37, 502, '2.2', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (38, 502, '2.1', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (39, 503, '20.10.8', '08/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (40, 503, '20.10.7', '06/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (41, 503, '20.10.6', '04/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (42, 503, '20.10.5', '03/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (43, 503, '20.10.4', '04/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (44, 503, '20.10.3', '02/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (45, 503, '20.10.2', '01/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (46, 503, '20.10.1', '12/14/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (47, 503, '20.10.0', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (48, 504, '2', '12/31/1997', '12/31/1998'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (49, 504, '3', '12/31/1997', '12/31/1998'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (50, 504, '7.0.14.0', '12/31/1997', '12/31/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (51, 504, '9.0.289.0', '12/31/1998', '12/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (52, 504, '10.3.183.90', '12/31/1999', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (53, 504, '11.1.102.55', '12/31/1999', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (54, 504, '32.0.0.465', '12/31/2001', '12/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (55, 504, '5.0.41.0', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (56, 504, '32.0.0.465', '12/31/2014', '12/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (57, 504, '29.0.0.171', '12/31/2013', '12/31/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (58, 504, '22.0.0.209', '12/31/2009', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (59, 504, '10.3.183.90', '12/31/2007', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (60, 504, '10.1.102.64', '12/31/2005', '12/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (61, 504, '9.0.289.0', '12/31/2001', '12/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (62, 504, '7.0.14.0', '12/31/1997', '12/31/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (63, 504, '3', '12/31/1997', '12/31/1998'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (64, 504, '4.0r12', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (65, 504, '32.0.0.465', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (66, 504, '4.0r12', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (67, 504, '4.0r12', '12/31/2004', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (68, 504, '11.2.202.223', '12/31/2004', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (69, 504, '10.3.183.90', '12/31/2004', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (70, 505, '1', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (71, 505, '2.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (72, 506, 'JDK Beta', '01/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (73, 506, '1.0', '01/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (74, 506, '1.1', '02/01/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (75, 506, '1.2', '12/01/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (76, 506, '1.3', '05/01/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (77, 506, '1.4', '02/01/2002', '08/31/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (78, 506, '5.0', '09/01/2004', '11/30/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (79, 506, '6', '12/01/2006', '04/30/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (80, 506, '7', '07/01/2011', '04/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (81, 506, '8', '03/01/2014', '12/31/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (82, 506, '9', '09/01/2017', '03/31/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (83, 506, '10', '03/01/2018', '09/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (84, 506, '11', '09/01/2018', '12/31/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (85, 506, '12', '03/31/2019', '09/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (86, 506, '13', '09/01/2019', '03/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (87, 506, '14', '03/01/2020', '09/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (88, 506, '15', '09/01/2020', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (89, 506, '16', '03/01/2021', '09/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (90, 506, '17', '09/30/2021', '12/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (91, 506, '18', '03/01/2022', '09/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (92, 506, '19', '09/01/2022', '03/31/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (93, 506, '20', '03/01/2023', '09/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (94, 506, '21', '09/01/2023', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (95, 507, '0.10', '03/01/2013', '10/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (96, 507, '0.12', '02/06/2015', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (97, 507, '4', '09/08/2015', '04/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (98, 507, '5', '10/29/2015', '06/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (99, 507, '6', '04/26/2016', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (100, 507, '7', '10/25/2016', '06/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (101, 507, '8', '05/30/2017', '12/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (102, 507, '9', '10/01/2017', '06/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (103, 507, '10', '04/24/2018', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (104, 507, '11', '10/23/2018', '06/01/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (105, 507, '12', '04/23/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (106, 507, '13', '10/22/2019', '06/01/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (107, 507, '14', '04/21/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (108, 507, '15', '10/20/2020', '06/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (109, 507, '16', '04/20/2021', '04/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (110, 507, '17', '10/19/2021', '06/01/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (111, 507, '18', '04/19/2022', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (112, 508, '1', '12/13/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (113, 508, '1.2', '01/19/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (114, 508, '2', '12/07/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (115, 508, '2.1', '06/01/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (116, 508, '2.2', '11/21/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (117, 508, '2.3', '03/16/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (118, 508, '3', '08/29/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (119, 508, '3.1', '08/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (120, 508, '3.2', '01/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (121, 508, '4', '06/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (122, 508, '4.1', '04/08/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (123, 508, '4.2', '12/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (124, 508, '5', '06/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (125, 508, '5.1', '05/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (126, 508, '5.2', '04/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (127, 508, '6', '08/16/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (128, 508, '6.1', '12/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (129, 508, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (130, 509, '53.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (131, 263, '1', '12/16/2001', '12/30/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (132, 264, '1.1', '03/10/2002', '01/29/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (133, 264, '1.2', '11/09/2003', '08/06/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (134, 264, '1.3', '06/29/2006', '03/14/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (135, 264, '1.4', '02/26/2010', '02/08/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (136, 264, '1.5', '06/19/2014', '01/10/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (137, 264, '1.6', '10/13/2015', '12/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (138, 264, '1.7', '11/25/2016', '12/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (139, 264, '1.8', '11/26/2017', '12/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (140, 264, '1.9', '12/19/2018', '06/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (141, 264, '2', '06/16/2019', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (142, 264, '2.1', '11/25/2019', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (143, 264, '2.2', '07/07/2020', '06/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (144, 264, '2.3', '11/05/2020', '03/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (145, 264, '2.4', '05/14/2021', '06/30/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (146, 264, '2.5', '11/01/2021', '03/31/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (147, 259, '1.3', '06/06/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (148, 259, '2', '04/06/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (149, 259, '2.2', '12/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (150, 259, '2.4', '02/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (151, 609, '1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (152, 609, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (153, 609, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (154, 609, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (155, 609, '5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (156, 609, '5.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (157, 609, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (158, 609, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (159, 609, '7.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (160, 609, '8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (161, 609, '8.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (162, 609, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (163, 274, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (164, 260, '3.3', '03/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (165, 260, '4.1', '06/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (166, 260, '5.5', '10/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (167, 260, '6.0', '04/07/2017', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (168, 260, '7.0', '04/26/2021', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (169, 260, '8.0', '07/05/2018', '06/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (170, 260, '8.5', '09/13/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (171, 260, '9.0', '09/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (172, 260, '10.0', '09/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (173, 260, '10.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (174, 285, '8.5', '06/15/2012', '06/24/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (175, 280, '0.5', '10/07/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (176, 280, '0.6', '02/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (177, 280, '0.7', '07/16/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (178, 280, '0.8', '12/19/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (179, 280, '0.9', '07/23/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (180, 280, '1.0', '08/05/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (181, 280, '1.1', '11/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (182, 280, '1.2', '04/17/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (183, 280, '1.3', '04/17/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (184, 280, '1.4', '07/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (185, 280, '1.5', '11/09/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (186, 280, '1.6', '11/07/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (187, 280, '2.0', '11/14/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (188, 280, '2.1', '06/26/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (189, 280, '2.2', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (190, 280, '2.3', '09/09/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (191, 280, '2.4', '05/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (192, 280, '3.0', '01/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (193, 280, '3.1', '01/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (194, 278, '3.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (195, 278, '4.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (196, 265, '6.0.1', '04/15/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (197, 265, '6.0.2', '07/29/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (198, 265, '6.1.0', '07/21/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (199, 265, '7.0.0', '03/15/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (200, 265, '8.0.0', '06/17/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (201, 265, '8.5.0', '06/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (202, 265, '9.0.0', '03/11/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (203, 269, '2.6', '02/09/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (204, 269, '2.9.1', '04/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (205, 286, '4.1', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (206, 286, '5', '07/01/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (207, 286, '6', '04/01/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (208, 286, '6.1', '03/01/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (209, 286, '6.1.5', '11/01/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (210, 286, '7', '09/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (211, 286, '8', '05/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (212, 286, '8.5', '06/01/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (213, 286, '9', '12/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (214, 286, '9.5', '07/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (215, 284, '9', '03/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (216, 284, '8.5.5', '02/15/2021', '06/24/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (217, 284, '8.5', '06/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (218, 284, '8', '06/17/2011', '04/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (219, 284, '7', '08/17/2008', '04/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (220, 284, '6.1', '06/30/2006', '09/30/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (221, 284, '6', '12/31/2004', '09/30/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (222, 284, '5.1', '01/16/2004', '09/30/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (223, 284, '5', '01/03/2003', '09/30/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (224, 284, '4', '08/15/2001', '04/30/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (225, 284, '3.5', '08/31/2000', '11/30/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (226, 268, '7.1.1', '03/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (227, 268, '7.1.0', '02/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (228, 268, '7.0.2', '09/22/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (229, 268, '7.0.1', '08/17/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (230, 268, '7.0.0', '07/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (231, 268, '6.1.0', '08/16/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (232, 268, '6.0.0', '12/22/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (233, 268, '5.1.0', '05/23/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (234, 268, '5.0.0', '12/05/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (235, 268, '4.2.3', '07/18/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (236, 268, '4.2.2', '10/22/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (237, 268, '4.2.1', '07/16/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (238, 268, '4.2.0', '05/11/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (239, 268, '4.0.5', '10/18/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (240, 268, '4.0.4', '05/15/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (241, 268, '4.0.3', '10/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (242, 268, '4.0.2', '05/02/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (243, 268, '4.0.1', '02/16/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (244, 268, '4.0.0', '09/20/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (245, 268, '3.2.8', '03/02/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (246, 268, '3.2.7', '01/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (247, 268, '3.2.6', '10/14/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (248, 268, '3.2.5', '06/25/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (249, 268, '3.2.4', '06/04/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (250, 268, '3.2.3', '11/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (251, 268, '3.2.2', '10/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (252, 268, '3.2.1', '06/02/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (253, 268, '3.0.8', '06/06/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (254, 268, '3.0.7', '04/08/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (255, 268, '3.0.6', '01/26/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (256, 268, '3.0.5', '01/13/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (257, 268, '3.0.4', '11/02/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (258, 268, '3.0.3', '09/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (259, 268, '3.0.2', '08/26/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (260, 268, '3.0.1', '08/05/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (261, 268, '3.0.0', '05/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (262, 493, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (263, 271, '4.5', '01/29/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (264, 271, '5', '04/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (265, 137, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (266, 137, '2.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (267, 137, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (268, 137, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (269, 137, '4.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (270, 137, '5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (271, 137, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (272, 137, '6i', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (273, 137, '9i', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (274, 137, '10g', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (275, 137, '10gR2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (276, 137, '11g', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (277, 137, '11gR2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (278, 137, '12c', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (279, 46, '3', '06/21/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (280, 46, '3.1', '06/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (281, 46, '3.2', '06/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (282, 46, '3.3', '06/29/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (283, 46, '3.4', '06/25/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (284, 46, '3.5', '06/24/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (285, 46, '3.6', '06/23/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (286, 46, '3.7', '06/22/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (287, 46, '3.8', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (288, 46, '4.2', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (289, 46, '4.3', '06/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (290, 46, '4.4', '06/25/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (291, 46, '4.5', '06/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (292, 46, '4.6', '06/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (293, 46, '4.7', '06/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (294, 46, '4.8', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (295, 46, '4.9', '09/19/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (296, 46, '4.1', '12/19/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (297, 46, '4.11', '03/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (298, 46, '4.12', '06/19/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (299, 46, '4.13', '09/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (300, 46, '4.14', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (301, 46, '4.15', '03/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (302, 46, '4.16', '06/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (303, 46, '4.17', '09/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (304, 46, '4.18', '12/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (305, 46, '4.19', '03/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (306, 46, '4.2', '06/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (307, 46, '4.21', '09/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (308, 46, '4.22', '12/08/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (309, 176, '7.6', '12/31/2006', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (310, 176, '7.7', '12/31/2008', '12/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (311, 176, '7.8', '12/31/2010', '12/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (312, 176, '7.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (313, 70, '7.6.1.2', '07/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (314, 70, '7.6.0.10', '12/14/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (315, 70, '7.5.0.11', '10/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (316, 70, '7.1.1.13', '06/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (317, 70, '6.2.8', '06/10/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (318, 70, '6.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (319, 70, '5.2.9.1', '07/03/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (320, 70, '4.1.1 ', '06/28/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (321, 135, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (322, 141, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (323, 134, '2.3', '12/31/1979', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (324, 134, '3.1.3', '12/31/1983', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (325, 134, '4.1.4.0', '12/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (326, 134, '5.0.22', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (327, 134, '6.0.17', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (328, 134, '6.2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (329, 134, '7.0.12', '06/30/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (330, 134, '7.1.0', '05/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (331, 134, '7.2.0', '05/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (332, 134, '7.3.0', '02/28/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (333, 134, '8.0.3', '06/30/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (334, 134, '8.1.5.0', '12/31/1998', '08/31/2000'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (335, 134, '9.0.1.0', '12/31/2001', '12/31/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (336, 134, '9.2.0.1', '12/31/2002', '04/30/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (337, 134, '10.1.0.2', '12/31/2003', '02/28/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (338, 134, '10.2.0.1', '07/31/2005', '04/30/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (339, 134, '11.1.0.6', '09/30/2007', '09/30/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (340, 134, '11.2.0.1', '09/30/2009', '08/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (341, 134, '12.1.0.1', '07/31/2013', '07/31/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (342, 134, '12.2.0.1', '09/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (343, 134, '12.2.0.2', '02/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (344, 134, '12.2.0.3', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (345, 134, '21.1', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (346, 182, '1', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (347, 182, '2', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (348, 182, '3', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (349, 182, '98', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (350, 182, '99', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (351, 182, '6', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (352, 182, '7', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (353, 182, '7.5', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (354, 182, '7.7', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (355, 182, '7.8', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (356, 182, '8', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (357, 182, '8.1', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (358, 182, '8.2', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (359, 182, '15', '05/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (360, 182, '16', '04/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (361, 182, '17', '07/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (362, 182, '18', '01/23/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (363, 182, '19', '01/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (364, 182, '20', '01/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (365, 126, '1', '08/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (366, 126, '1.1', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (367, 126, '1.2', '02/28/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (368, 126, '2', '08/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (369, 126, '2.1', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (370, 126, '2.2', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (371, 126, '2.3', '06/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (372, 126, '2.4', '10/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (373, 126, '2.5', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (374, 77, '1.1', '08/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (375, 77, '2.1', '04/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (376, 77, '2.2', '05/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (377, 77, '3.1', '07/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (378, 77, '3.2', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (379, 77, '4.1', '01/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (380, 77, '4.2', '02/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (381, 77, '5.1', '01/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (382, 77, '6.1', '10/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (383, 77, '6.2', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (384, 77, '6.3', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (385, 23, '10.7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (386, 45, '8.3', '04/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (387, 45, '8.2', '10/05/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (388, 45, '8.1', '04/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (389, 45, '8', '11/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (390, 45, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (391, 45, '6', '02/13/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (392, 45, '5', '01/15/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (393, 45, '4', '06/15/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (394, 45, '3', '09/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (395, 45, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (396, 45, '1', '01/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (397, 220, '4.4', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (398, 220, '4.5.1', '09/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (399, 220, '4.6', '07/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (400, 220, '5', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (401, 220, '5.1', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (402, 90, '2.285', '03/23/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (403, 90, '2.286', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (404, 90, '2.287', '04/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (405, 90, '2.288', '04/11/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (406, 90, '2.289', '04/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (407, 90, '2.29', '04/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (408, 90, '2.291', '05/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (409, 90, '2.292', '05/11/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (410, 90, '2.293', '05/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (411, 90, '2.294', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (412, 90, '2.295', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (413, 90, '2.296', '06/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (414, 90, '2.297', '06/08/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (415, 90, '2.298', '06/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (416, 90, '2.299', '06/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (417, 90, '2.3', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (418, 90, '2.301', '07/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (419, 90, '2.302', '07/13/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (420, 90, '2.303', '07/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (421, 90, '2.304', '07/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (422, 90, '2.305', '08/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (423, 90, '2.306', '08/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (424, 90, '2.307', '08/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (425, 90, '2.308', '08/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (426, 90, '2.309', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (427, 90, '2.31', '09/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (428, 90, '2.311', '09/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (429, 90, '2.312', '09/14/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (430, 90, '2.313', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (431, 90, '2.314', '09/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (432, 97, '10', '05/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (433, 97, '9', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (434, 97, '8', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (435, 97, '7', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (436, 97, '6', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (437, 97, '5', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (438, 97, '4.2', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (439, 97, '4.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (440, 97, '4', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (441, 97, '3.2', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (442, 97, '3.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (443, 97, '3', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (444, 97, '2', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (445, 97, '1', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (446, 98, '1.6.12', '09/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (447, 98, '1.6.11', '09/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (448, 98, '1.6.10', '07/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (449, 98, '1.6.9', '11/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (450, 98, '1.6.8', '10/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (451, 98, '1.6.7', '09/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (452, 98, '1.6.6', '05/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (453, 98, '1.6.5', '04/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (454, 98, '1.6.4', '04/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (455, 98, '1.6.3', '03/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (456, 98, '1.6.2', '03/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (457, 98, '1.6.1', '03/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (458, 98, '1.6.0', '03/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (459, 98, '1.5.22', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (460, 98, '1.5.21', '01/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (461, 98, '1.5.20', '11/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (462, 98, '1.5.19', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (463, 98, '1.5.18', '09/17/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (464, 98, '1.5.17', '08/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (465, 98, '1.5.16', '05/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (466, 98, '1.5.15', '05/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (467, 98, '1.5.14', '04/27/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (468, 98, '1.5.13', '04/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (469, 98, '1.5.12', '11/03/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (470, 98, '1.5.11', '10/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (471, 98, '1.5.10', '08/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (472, 98, '1.5.9', '07/07/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (473, 98, '1.5.8', '05/25/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (474, 98, '1.5.7', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (475, 98, '1.5.6', '02/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (476, 98, '1.5.5', '02/12/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (477, 98, '1.5.4', '12/20/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (478, 98, '1.5.3', '11/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (479, 98, '1.5.2', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (480, 98, '1.5.1', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (481, 98, '1.5.0', '07/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (482, 98, '1.4.39', '07/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (483, 98, '1.4.38', '06/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (484, 98, '1.4.37', '06/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (485, 98, '1.4.36', '03/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (486, 98, '1.4.35', '02/26/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (487, 98, '1.4.34', '01/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (488, 98, '1.4.33', '10/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (489, 98, '1.4.32', '10/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (490, 98, '1.4.31', '08/19/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (491, 98, '1.4.30', '08/11/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (492, 98, '1.4.29', '07/13/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (493, 98, '1.4.28', '07/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (494, 98, '1.4.27', '06/24/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (495, 98, '1.4.26', '06/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (496, 98, '1.4.25', '11/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (497, 98, '1.4.24', '04/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (498, 98, '1.4.23', '04/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (499, 98, '1.4.22', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (500, 98, '1.4.21', '10/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (501, 98, '1.4.20', '05/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (502, 98, '1.4.19', '05/01/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (503, 98, '1.4.18', '04/17/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (504, 98, '1.4.17', '12/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (505, 98, '1.4.16', '12/09/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (506, 98, '1.4.15', '09/03/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (507, 98, '1.4.14', '07/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (508, 98, '1.4.13', '02/02/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (509, 98, '1.4.12', '02/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (510, 98, '1.4.11', '01/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (511, 98, '1.4.10', '11/09/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (512, 98, '1.4.9', '10/18/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (513, 98, '1.4.8', '10/04/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (514, 98, '1.4.7', '08/16/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (515, 98, '1.4.6', '07/15/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (516, 98, '1.4.5', '04/03/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (517, 98, '1.4.4', '11/26/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (518, 98, '1.4.3', '11/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (519, 98, '1.4.2', '10/11/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (520, 98, '1.4.1', '08/29/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (521, 98, '1.4.0', '07/09/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (522, 581, '1', '12/31/1989', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (523, 581, '1.1', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (524, 581, '4.2A', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (525, 581, '4.2B', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (526, 581, '4.21', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (527, 581, '6', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (528, 581, '6.5', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (529, 581, '7', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (530, 581, '8', '12/31/2000', '04/08/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (531, 581, '9', '01/14/2006', '04/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (532, 581, '10', '11/06/2008', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (533, 581, '10.25', '07/02/1905', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (534, 581, '10.5', '07/20/2010', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (535, 581, '11', '05/20/2012', '07/11/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (536, 581, '12', '06/05/2014', '07/09/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (537, 581, '13', '06/01/2016', '07/13/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (538, 581, '14', '09/29/2017', '10/11/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (539, 581, '15', '11/04/2019', '01/07/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (540, 116, '4.4', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (541, 116, '4.2', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (542, 116, '4', '12/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (543, 116, '3.6', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (544, 116, '3.4', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (545, 116, '3.2', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (546, 116, '3', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (547, 116, '2.6', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (548, 122, '3.19', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (549, 122, '3.2', '01/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (550, 122, '3.21', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (551, 122, '3.22', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (552, 122, '3.23', '06/30/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (553, 122, '4', '08/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (554, 122, '4.1', '06/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (555, 122, '5', '03/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (556, 122, '5.1', '11/27/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (557, 122, '5.5', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (558, 122, '6', '05/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (559, 122, '5.6', '02/28/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (560, 122, '5.7', '10/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (561, 122, '8', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (562, 123, '4.3.5', '09/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (563, 123, '4.3.4', '09/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (564, 123, '4.3.3', '08/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (565, 123, '4.3.2', '07/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (566, 123, '4.3.1', '06/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (567, 123, '4.2.11', '09/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (568, 123, '4.2.10', '08/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (569, 123, '4.2.9', '07/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (570, 123, '4.2.8', '06/18/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (571, 123, '4.2.7', '05/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (572, 123, '4.2.6', '05/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (573, 245, '0.7', '05/27/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (574, 245, '1', '01/03/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (575, 245, '1.2', '05/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (576, 245, '1.5', '02/17/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (577, 245, '2', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (578, 245, '2.1', '01/22/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (579, 245, '2.2', '05/16/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (580, 245, '2.3', '09/24/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (581, 245, '2.5', '03/29/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (582, 245, '2.6', '07/15/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (583, 245, '2.7', '12/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (584, 245, '2.8', '06/10/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (585, 245, '2.9', '12/19/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (586, 245, '3', '06/17/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (587, 245, '3.1', '02/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (588, 245, '3.2', '07/04/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (589, 245, '3.3', '12/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (590, 245, '3.4', '06/13/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (591, 245, '3.5', '12/11/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (592, 245, '3.6', '08/01/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (593, 245, '3.7', '10/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (594, 245, '3.8', '12/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (595, 245, '3.9', '04/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (596, 245, '4', '09/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (597, 245, '4.1', '12/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (598, 245, '4.2', '04/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (599, 245, '4.3', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (600, 245, '4.4', '12/08/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (601, 245, '4.5', '04/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (602, 245, '4.6', '08/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (603, 245, '4.7', '12/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (604, 245, '4.8', '06/08/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (605, 245, '4.9', '11/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (606, 245, '5', '12/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (607, 245, '5.1', '02/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (608, 245, '5.2', '05/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (609, 245, '5.3', '11/12/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (610, 245, '5.4', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (611, 245, '5.5', '08/11/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (612, 245, '5.6', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (613, 245, '5.7', '03/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (614, 245, '5.8', '07/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (615, 258, '3.37.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (616, 258, '3.36.0', '06/18/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (617, 258, '3.35.5', '04/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (618, 258, '3.35.4', '04/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (619, 258, '3.35.3', '03/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (620, 258, '3.35.2', '03/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (621, 258, '3.35.1', '03/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (622, 258, '3.35.0', '03/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (623, 258, '3.34.1', '01/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (624, 258, '3.34.0', '12/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (625, 258, '3.33.0', '08/14/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (626, 258, '3.32.3', '06/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (627, 258, '3.32.2', '06/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (628, 258, '3.32.1', '05/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (629, 258, '3.32.0', '05/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (630, 258, '3.31.1', '01/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (631, 258, '3.31.0', '01/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (632, 258, '3.30.1', '10/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (633, 258, '3.30.0', '10/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (634, 258, '3.29.0', '07/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (635, 258, '3.28.0', '04/16/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (636, 258, '3.27.2', '02/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (637, 258, '3.27.1', '02/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (638, 258, '3.27.0', '02/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (639, 258, '3.26.0', '12/01/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (640, 258, '3.25.3', '11/05/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (641, 258, '3.25.2', '09/25/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (642, 258, '3.25.1', '09/18/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (643, 258, '3.25.0', '09/15/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (644, 258, '3.24.0', '06/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (645, 258, '3.23.1', '04/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (646, 258, '3.23.0', '04/02/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (647, 258, '3.22.0', '01/22/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (648, 258, '3.21.0', '10/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (649, 258, '3.20.1', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (650, 258, '3.20.0', '08/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (651, 258, '3.18.2', '06/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (652, 258, '3.18.1', '06/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (653, 258, '3.19.3', '06/08/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (654, 258, '3.19.2', '05/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (655, 258, '3.19.1', '05/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (656, 258, '3.19.0', '05/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (657, 258, '3.18.0', '03/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (658, 258, '3.17.0', '02/13/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (659, 258, '3.16.2', '01/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (660, 258, '3.16.1', '01/03/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (661, 258, '3.16.0', '01/02/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (662, 258, '3.15.2', '11/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (663, 258, '3.15.1', '11/04/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (664, 258, '3.15.0', '10/14/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (665, 258, '3.14.2', '09/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (666, 258, '3.14.1', '08/11/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (667, 258, '3.14', '08/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (668, 258, '3.13.0', '05/18/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (669, 258, '3.12.2', '04/18/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (670, 258, '3.12.1', '04/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (671, 258, '3.9.3', '03/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (672, 258, '3.12.0', '03/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (673, 258, '3.11.1', '03/03/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (674, 258, '3.11.0', '02/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (675, 258, '3.10.2', '01/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (676, 258, '3.10.1', '01/14/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (677, 258, '3.10.0', '01/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (678, 258, '3.9.2', '11/02/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (679, 258, '3.9.1', '10/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (680, 258, '3.9.0', '10/14/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (681, 258, '3.8.11.1', '07/29/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (682, 258, '3.8.11', '07/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (683, 258, '3.8.10.2', '05/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (684, 258, '3.8.10.1', '05/09/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (685, 258, '3.8.10', '05/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (686, 258, '3.8.9', '04/08/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (687, 258, '3.8.8.3', '02/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (688, 258, '3.8.8.2', '01/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (689, 258, '3.8.8.1', '01/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (690, 258, '3.8.8', '01/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (691, 258, '3.8.7.4', '12/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (692, 258, '3.8.7.3', '12/05/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (693, 258, '3.8.7.2', '11/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (694, 258, '3.8.7.1', '10/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (695, 258, '3.8.6.1', '10/22/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (696, 258, '3.8.7', '10/17/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (697, 258, '3.8.6', '08/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (698, 258, '3.8.5', '06/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (699, 258, '3.8.4.3', '04/03/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (700, 258, '3.8.4.2', '03/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (701, 258, '3.8.4.1', '03/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (702, 258, '3.8.4', '03/10/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (703, 258, '3.8.3.1', '02/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (704, 258, '3.8.3', '02/03/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (705, 258, '3.8.2', '12/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (706, 258, '3.8.1', '10/17/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (707, 258, '3.8.0.2', '09/03/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (708, 258, '3.8.0.1', '08/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (709, 258, '3.8.0', '08/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (710, 258, '3.7.17', '05/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (711, 258, '3.7.16.2', '04/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (712, 258, '3.7.16.1', '03/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (713, 258, '3.7.16', '03/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (714, 258, '3.7.15.2', '01/09/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (715, 258, '3.7.15.1', '12/19/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (716, 258, '3.7.15', '12/12/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (717, 258, '3.7.14.1', '10/04/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (718, 258, '3.7.14', '09/03/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (719, 258, '3.7.13', '06/11/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (720, 258, '3.7.12.1', '05/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (721, 258, '3.7.12', '05/14/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (722, 258, '3.7.12', '05/14/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (723, 258, '3.7.12', '05/14/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (724, 258, '3.7.11', '03/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (725, 258, '3.7.10', '01/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (726, 258, '3.7.9', '11/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (727, 258, '3.7.8', '09/19/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (728, 258, '3.7.7.1', '06/28/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (729, 258, '3.7.7', '06/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (730, 258, '3.7.6.3', '05/19/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (731, 258, '3.7.6.2', '04/17/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (732, 258, '3.7.6.1', '04/13/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (733, 258, '3.7.6', '04/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (734, 258, '3.7.5', '02/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (735, 258, '3.7.4', '12/07/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (736, 258, '3.7.3', '10/08/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (737, 258, '3.7.2', '08/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (738, 258, '3.7.1', '08/23/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (739, 258, '3.7.0.1', '08/04/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (740, 258, '3.7.0', '07/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (741, 258, '3.6.23.1', '03/26/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (742, 258, '3.6.23', '03/09/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (743, 258, '3.6.22', '01/06/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (744, 258, '3.6.21', '12/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (745, 258, '3.6.20', '11/04/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (746, 258, '3.6.16.1', '10/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (747, 258, '3.6.19', '10/14/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (748, 258, '3.6.18', '09/11/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (749, 258, '3.6.17', '08/10/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (750, 258, '3.6.16', '06/27/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (751, 258, '3.6.15', '06/15/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (752, 258, '3.6.14.2', '05/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (753, 258, '3.6.14.1', '05/19/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (754, 258, '3.6.14', '05/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (755, 258, '3.6.13', '04/13/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (756, 258, '3.6.12', '03/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (757, 258, '3.6.11', '02/18/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (758, 258, '3.6.10', '01/15/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (759, 258, '3.6.9', '01/14/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (760, 258, '3.6.8', '01/12/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (761, 258, '3.6.7', '12/16/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (762, 258, '3.6.6.2', '11/26/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (763, 258, '3.6.6.1', '11/22/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (764, 258, '3.6.6', '11/19/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (765, 258, '3.6.5', '11/12/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (766, 258, '3.6.4', '10/15/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (767, 258, '3.6.3', '09/22/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (768, 258, '3.6.2', '08/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (769, 258, '3.6.1', '08/06/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (770, 258, '3.6.0', '07/16/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (771, 258, '3.5.9', '05/14/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (772, 258, '3.5.8', '04/16/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (773, 258, '3.5.7', '03/17/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (774, 258, '3.5.6', '02/06/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (775, 258, '3.5.5', '01/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (776, 258, '3.5.4', '12/14/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (777, 258, '3.5.3', '11/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (778, 258, '3.5.2', '11/05/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (779, 258, '3.5.1', '10/04/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (780, 258, '3.5.0', '09/04/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (781, 258, '3.4.2', '08/13/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (782, 258, '3.4.1', '07/20/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (783, 258, '3.4.0', '06/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (784, 258, '3.3.17', '04/25/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (785, 258, '3.3.16', '04/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (786, 258, '3.3.15', '04/09/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (787, 258, '3.3.14', '04/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (788, 258, '3.3.13', '02/13/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (789, 258, '3.3.12', '01/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (790, 258, '3.3.11', '01/22/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (791, 258, '3.3.10', '01/10/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (792, 258, '3.3.9', '01/04/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (793, 258, '3.3.8', '10/09/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (794, 258, '3.3.7', '08/12/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (795, 258, '3.3.6', '06/06/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (796, 258, '3.3.5', '04/05/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (797, 258, '3.3.4', '02/11/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (798, 258, '3.3.3', '01/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (799, 258, '3.3.2', '01/24/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (800, 258, '3.3.1', '01/16/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (801, 258, '3.3.0', '01/11/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (802, 258, '2.8.17', '12/19/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (803, 258, '3.2.8', '12/19/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (804, 258, '3.2.7', '09/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (805, 258, '3.2.6', '09/17/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (806, 258, '3.2.5', '08/27/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (807, 258, '3.2.4', '08/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (808, 258, '3.2.3', '08/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (809, 258, '3.2.2', '06/12/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (810, 258, '3.2.1', '03/29/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (811, 258, '3.2.0', '03/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (812, 258, '3.1.6', '03/17/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (813, 258, '3.1.5', '03/11/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (814, 258, '3.1.4', '03/11/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (815, 258, '3.1.3.1', '02/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (816, 258, '3.1.3', '02/20/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (817, 258, '3.1.2', '02/15/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (818, 258, '2.8.16', '02/15/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (819, 258, '3.1.1', '02/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (820, 258, '3.1.0', '01/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (821, 258, '3.0.8', '10/12/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (822, 258, '3.0.7', '09/18/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (823, 258, '3.0.6', '09/02/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (824, 258, '3.0.5', '08/29/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (825, 258, '3.0.4', '08/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (826, 258, '3.0.3', '07/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (827, 258, '2.8.15', '07/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (828, 258, '3.0.2', '06/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (829, 258, '3.0.1', '06/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (830, 258, '3.0.0', '06/18/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (831, 258, '2.8.14', '06/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (832, 258, '2.8.13', '03/08/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (833, 258, '2.8.12', '02/08/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (834, 258, '2.8.11', '01/14/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (835, 258, '2.8.10', '01/14/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (836, 258, '2.8.9', '01/06/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (837, 258, '2.8.8', '12/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (838, 258, '2.8.7', '12/04/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (839, 258, '2.8.6', '08/22/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (840, 258, '2.8.5', '07/22/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (841, 258, '2.8.4', '06/29/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (842, 258, '2.8.3', '06/04/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (843, 258, '2.8.2', '05/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (844, 258, '2.8.1', '05/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (845, 258, '2.8.0', '02/16/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (846, 258, '2.7.6', '01/25/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (847, 258, '2.7.5', '12/28/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (848, 258, '2.7.4', '12/17/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (849, 258, '2.7.3', '10/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (850, 258, '2.7.2', '09/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (851, 258, '2.7.1', '08/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (852, 258, '2.7.0', '08/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (853, 258, '2.6.3', '08/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (854, 258, '2.6.2', '07/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (855, 258, '2.6.1', '07/19/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (856, 258, '2.6.0', '07/18/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (857, 258, '2.5.6', '07/07/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (858, 258, '2.5.5', '07/06/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (859, 258, '2.5.4', '07/01/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (860, 258, '2.5.3', '06/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (861, 258, '2.5.2', '06/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (862, 258, '2.5.1', '06/19/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (863, 258, '2.5.0', '06/17/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (864, 258, '2.4.12', '05/10/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (865, 258, '2.4.11', '05/08/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (866, 258, '2.4.10', '05/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (867, 258, '2.4.9', '04/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (868, 258, '2.4.8', '04/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (869, 258, '2.4.7', '04/12/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (870, 258, '2.4.6', '04/02/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (871, 258, '2.4.5', '04/02/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (872, 258, '2.4.4', '03/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (873, 258, '2.4.3', '03/23/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (874, 258, '2.4.2', '03/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (875, 258, '2.4.1', '03/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (876, 258, '2.4.1', '03/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (877, 258, '2.4.0', '03/11/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (878, 258, '2.3.3', '02/19/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (879, 258, '2.3.2', '02/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (880, 258, '2.3.1', '02/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (881, 258, '2.3.0', '02/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (882, 258, '2.2.5', '01/28/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (883, 258, '2.2.4', '01/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (884, 258, '2.2.3', '01/16/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (885, 258, '2.2.2', '01/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (886, 258, '2.2.1', '01/09/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (887, 258, '2.2.0', '12/22/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (888, 258, '2.1.7', '12/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (889, 258, '2.1.6', '12/14/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (890, 258, '2.1.5', '12/06/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (891, 258, '2.1.4', '12/05/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (892, 258, '2.1.3', '11/24/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (893, 258, '2.1.2', '11/23/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (894, 258, '2.1.1', '11/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (895, 258, '2.1.0', '11/12/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (896, 258, '2.0.8', '11/04/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (897, 258, '2.0.7', '10/22/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (898, 258, '2.0.6', '10/19/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (899, 258, '2.0.5', '10/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (900, 258, '2.0.4', '10/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (901, 258, '2.0.3', '10/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (902, 258, '2.0.2', '10/09/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (903, 258, '2.0.1', '10/02/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (904, 258, '2.0.0', '09/28/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (905, 258, '1.0.32', '07/23/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (906, 258, '1.0.31', '04/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (907, 258, '1.0.30', '04/06/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (908, 258, '1.0.29', '04/05/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (909, 258, '1.0.28', '04/04/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (910, 258, '1.0.27', '03/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (911, 258, '1.0.26', '03/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (912, 258, '1.0.25', '03/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (913, 258, '1.0.24', '03/14/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (914, 258, '1.0.23', '02/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (915, 258, '1.0.22', '02/19/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (916, 258, '1.0.21', '02/19/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (917, 258, '1.0.20', '02/11/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (918, 258, '1.0.19', '02/06/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (919, 258, '1.0.18', '01/04/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (920, 258, '1.0.17', '12/10/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (921, 258, '1.0.16', '11/28/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (922, 258, '1.0.15', '10/23/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (923, 258, '1.0.14', '10/19/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (924, 258, '1.0.13', '10/19/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (925, 258, '1.0.12', '10/17/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (926, 258, '1.0.10', '10/11/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (927, 258, '1.0.9', '10/09/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (928, 258, '1.0.8', '09/30/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (929, 258, '1.0.5', '09/14/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (930, 258, '1.0.4', '08/28/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (931, 258, '1.0.3', '08/22/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (932, 258, '1.0.1', '08/18/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (933, 258, '1', '08/17/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (934, 14, '18', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (935, 14, '17', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (936, 14, '16', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (937, 14, '13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (938, 14, '1.2', '11/21/2005', '11/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (939, 14, '1.4', '12/23/2006', '04/21/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (940, 14, '1.6.0', '10/01/2008', '10/01/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (941, 14, '1.6.1', '04/27/2009', '04/27/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (942, 14, '1.6.2', '12/18/2009', '04/21/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (943, 14, '1.8', '10/21/2010', '10/21/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (944, 14, '10', '12/15/2011', '12/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (945, 14, '11', '10/25/2012', '10/25/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (946, 14, '12', '12/20/2013', '12/20/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (947, 14, '13', '10/24/2014', '10/24/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (948, 14, '14', '10/01/2015', '10/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (949, 14, '15', '10/01/2016', '10/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (950, 5, '1', '02/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (951, 5, '4.6.0', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (952, 319, '1', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (953, 319, '3', '06/08/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (954, 131, '21.1', '05/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (955, 131, '20.2', '10/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (956, 131, '20.1', '04/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (957, 131, '19.2', '11/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (958, 131, '19.1', '03/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (959, 131, '18.2', '09/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (960, 131, '18.1', '05/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (961, 131, '5.1.4', '12/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (962, 131, '5.1', '12/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (963, 19, '9.1.04', '12/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (964, 19, '9.1.03', '06/09/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (965, 19, '9.1.02', '12/05/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (966, 19, '9.1.01', '06/23/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (967, 19, '9.1.00', '12/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (968, 170, '1.1', '02/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (969, 170, '1.4', '07/10/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (970, 170, '2', '09/02/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (971, 170, '2.1', '04/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (972, 170, '2.2', '11/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (973, 170, '2.2.5', '04/26/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (974, 8, '2.3.8', '01/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (975, 8, '2.3.7', '04/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (976, 8, '3.1.2', '08/26/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (977, 8, '2.3.6', '08/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (978, 8, '2.3.5', '05/14/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (979, 8, '2.3.4', '11/07/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (980, 8, '3.1.1', '11/01/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (981, 8, '3.1.0', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (982, 8, '3.0.0', '05/21/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (983, 8, '2.3.3', '04/03/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (984, 8, '2.3.2', '11/18/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (985, 8, '2.3.1', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (986, 8, '2.2.0', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (987, 8, '2.3.0', '07/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (988, 8, '1.2.2', '04/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (989, 8, '2.1.1', '12/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (990, 8, '2.1.0', '06/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (991, 8, '2.0.1', '05/25/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (992, 8, '2.0.0', '02/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (993, 8, '1.2.1', '06/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (994, 8, '1.1.1', '05/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (995, 8, '1.0.1', '05/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (996, 8, '0.14.0', '11/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (997, 8, '0.13.0', '04/21/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (998, 8, '0.12.0', '10/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (999, 8, '0.11.0', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1000, 8, '0.10.0', '01/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1001, 175, '1', '07/02/1905', '06/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1002, 175, '2', '06/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1003, 180, '2.1.0', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1004, 180, '2.0.1', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1005, 180, '1.8.0', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1006, 180, '1.7.1', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1007, 180, '1.7.0', '10/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1008, 180, '1.6.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1009, 180, '1.5.1', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1010, 180, '1.4.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1011, 180, '1.3.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1012, 180, '1.2.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1013, 186, '9.1', '07/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1014, 186, '9', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1015, 186, '8.9', '05/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1016, 168, '6.2.4', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1017, 168, '6.0.20', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1018, 168, '6.0.12', '01/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1019, 168, '6.0.8', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1020, 168, '6', '05/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1021, 168, '5.6.0', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1022, 168, '5.5', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1023, 168, '5.4.14', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1024, 168, '5.4.10', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1025, 168, '5.4.6', '07/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1026, 168, '5.4.4', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1027, 168, '5.4.2', '04/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1028, 168, '5.4', '12/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1029, 168, '5.2.2', '08/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1030, 168, '5.2', '07/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1031, 168, '5.0.2', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1032, 168, '5', '03/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1033, 168, '4.5', '05/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1034, 168, '4.4', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1035, 168, '4.3', '08/02/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1036, 168, '4.2.1', '10/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1037, 168, '4', '06/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1038, 165, '3.9.7', '09/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1039, 165, '3.8.23', '09/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1040, 165, '3.9.6', '09/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1041, 165, '3.9.5', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1042, 165, '3.8.22', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1043, 165, '3.9.4', '08/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1044, 165, '3.9.3', '08/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1045, 165, '3.8.21', '08/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1046, 165, '3.9.2', '08/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1047, 165, '3.8.20', '08/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1048, 165, '3.9.1', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1049, 165, '3.9.0', '07/23/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1050, 165, '3.8.19', '07/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1051, 165, '3.8.18', '06/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1052, 165, '3.8.17', '06/08/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1053, 165, '3.8.16', '05/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1054, 165, '3.8.15', '05/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1055, 165, '3.8.14', '03/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1056, 165, '3.8.13', '02/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1057, 165, '3.8.12', '02/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1058, 165, '3.8.11', '01/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1059, 165, '3.8.10', '01/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1060, 165, '3.8.9', '09/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1061, 165, '3.8.8', '09/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1062, 165, '3.8.7', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1063, 165, '3.7.28', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1064, 165, '3.8.6', '08/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1065, 165, '3.7.27', '07/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1066, 165, '3.8.5', '06/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1067, 165, '3.8.4', '05/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1068, 165, '3.7.26', '05/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1069, 165, '3.7.25', '04/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1070, 165, '3.8.3', '03/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1071, 165, '3.7.24', '02/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1072, 165, '3.7.23', '12/05/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1073, 165, '3.8.2', '12/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1074, 165, '3.7.22', '11/27/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1075, 165, '3.8.1', '10/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1076, 165, '3.7.21', '10/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1077, 165, '3.7.20', '10/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1078, 165, '3.7.19', '10/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1079, 165, '3.8.0', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1080, 165, '3.7.18', '09/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1081, 165, '3.7.17', '07/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1082, 165, '3.7.16', '07/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1083, 165, '3.7.15', '05/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1084, 165, '3.7.14', '03/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1085, 165, '3.7.13', '03/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1086, 165, '3.7.12', '02/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1087, 165, '3.7.11', '01/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1088, 165, '3.7.10', '01/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1089, 165, '3.7.9', '11/16/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1090, 165, '3.7.8', '09/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1091, 165, '3.7.7', '07/05/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1092, 165, '3.7.6', '06/13/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1093, 165, '3.6.16', '06/13/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1094, 165, '3.7.5', '05/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1095, 165, '3.7.4', '03/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1096, 165, '3.7.3', '01/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1097, 165, '3.6.15', '01/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1098, 165, '3.7.2', '12/23/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1099, 165, '3.7.1', '12/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1100, 165, '3.7.0', '11/29/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1101, 165, '3.6.14', '11/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1102, 165, '3.6.13', '11/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1103, 165, '3.6.12', '09/11/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1104, 165, '3.6.11', '08/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1105, 165, '3.6.10', '05/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1106, 165, '3.6.9', '03/29/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1107, 165, '3.6.8', '03/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1108, 165, '3.6.7', '03/15/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1109, 165, '3.6.6', '11/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1110, 165, '3.5.8', '11/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1111, 165, '3.6.5', '08/05/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1112, 165, '3.6.4', '07/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1113, 165, '3.6.3', '07/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1114, 165, '3.6.2', '05/19/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1115, 165, '3.6.1', '03/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1116, 165, '3.6.0', '12/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1117, 165, '3.5.7', '12/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1118, 165, '3.5.6', '10/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1119, 165, '3.5.5', '09/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1120, 165, '3.5.4', '07/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1121, 165, '3.5.3', '05/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1122, 165, '3.5.2', '05/12/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1123, 165, '3.5.1', '04/03/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1124, 165, '3.5.0', '03/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1125, 165, '3.4.4', '02/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1126, 165, '3.4.3', '01/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1127, 165, '3.4.2', '11/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1128, 165, '3.4.1', '10/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1129, 165, '3.4.0', '10/21/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1130, 165, '3.3.5', '08/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1131, 165, '3.3.4', '06/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1132, 165, '3.3.3', '06/17/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1133, 165, '3.3.2', '06/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1134, 165, '3.3.1', '04/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1135, 165, '3.3.0', '04/02/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1136, 165, '3.2.4', '03/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1137, 165, '3.2.3', '01/23/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1138, 165, '3.2.2', '12/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1139, 165, '3.2.1', '11/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1140, 165, '3.2.0', '10/23/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1141, 165, '3.1.5', '08/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1142, 165, '3.1.4', '08/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1143, 165, '3.1.3', '06/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1144, 165, '3.1.2', '06/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1145, 165, '3.1.1', '05/21/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1146, 165, '3.1.0', '05/01/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1147, 165, '3.0.4', '03/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1148, 165, '3.0.3', '03/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1149, 165, '3.0.2', '01/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1150, 165, '3.0.1', '12/11/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1151, 165, '3.0.0', '11/19/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1152, 165, '2.8.7', '09/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1153, 165, '2.8.6', '08/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1154, 165, '2.8.5', '08/02/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1155, 165, '2.8.4', '06/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1156, 165, '2.8.3', '06/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1157, 165, '2.8.2', '04/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1158, 165, '2.8.1', '03/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1159, 165, '2.8.0', '03/19/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1160, 165, '2.7.1', '12/20/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1161, 165, '2.7.0', '11/09/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1162, 165, '2.6.1', '09/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1163, 165, '2.6.0', '08/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1164, 165, '2.5.1', '06/27/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1165, 165, '2.5.0', '06/14/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1166, 165, '2.4.1', '04/07/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1167, 165, '2.4.0', '03/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1168, 165, '2.3.1', '02/03/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1169, 165, '2.3.0', '02/02/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1170, 165, '2.2.0', '11/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1171, 165, '2.1.1', '10/20/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1172, 165, '2.1.0', '09/15/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1173, 165, '2.0.0', '08/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1174, 165, '1.8.1', '07/15/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1175, 165, '1.8.0', '06/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1176, 165, '1.7.2', '02/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1177, 165, '1.7.1', '01/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1178, 165, '1.7.0', '10/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1179, 165, '1.6.0', '06/17/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1180, 165, '1.5.5', '05/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1181, 165, '1.5.4', '04/06/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1182, 165, '1.5.3', '02/24/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1183, 165, '1.5.1', '01/21/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1184, 165, '1.5.0', '12/18/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1185, 165, '1.4.0', '07/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1186, 165, '1.3.0', '04/01/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1187, 165, '1.2.0', '09/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1188, 165, '1.1.1', '08/29/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1189, 165, '1.1.0', '08/01/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1190, 165, '1.0.0', '02/08/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1191, 9, '3.0.0', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1192, 9, '2.8.1', '09/18/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1193, 9, '2.8.0', '04/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1194, 9, '2.7.1', '05/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1195, 9, '2.7.0', '12/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1196, 9, '2.6.2', '04/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1197, 9, '2.6.1', '01/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1198, 9, '2.6.0', '08/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1199, 9, '2.5.1', '08/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1200, 9, '2.5.0', '04/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1201, 9, '2.4.1', '03/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1202, 9, '2.4.0', '12/16/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1203, 9, '2.3.1', '08/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1204, 9, '2.3.0', '06/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1205, 9, '2.2.2', '12/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1206, 9, '2.2.1', '06/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1207, 9, '2.2.0', '03/22/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1208, 9, '2.1.1', '02/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1209, 9, '2.1.0', '11/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1210, 9, '2.0.1', '11/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1211, 9, '2.0.0', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1212, 9, '1.1.1', '07/19/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1213, 9, '1.1.0', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1214, 9, '1.0.2', '07/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1215, 9, '1.0.1', '03/05/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1216, 9, '1.0.0', '11/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1217, 9, '0.11.0', '06/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1218, 9, '0.10.0', '05/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1219, 9, '0.9.0', '11/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1220, 9, '0.8.0', '03/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1221, 9, '0.7.0', '01/04/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1222, 157, '6', '01/29/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1223, 157, '6.1', '06/08/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1224, 157, '6.2', '10/02/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1225, 157, '6.3', '03/01/1998', '03/01/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1226, 157, '6.4', '10/30/1998', '10/30/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1227, 157, '6.5', '06/09/1999', '06/09/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1228, 157, '7', '05/08/2000', '05/08/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1229, 157, '7.1', '04/13/2001', '04/13/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1230, 157, '7.2', '02/04/2002', '02/04/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1231, 157, '7.3', '11/27/2002', '11/27/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1232, 157, '7.4', '11/17/2003', '10/01/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1233, 157, '8', '01/19/2005', '10/01/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1234, 157, '8.1', '11/08/2005', '11/08/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1235, 157, '8.2', '12/05/2006', '12/05/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1236, 157, '8.3', '02/04/2008', '02/07/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1237, 157, '8.4', '07/01/2009', '07/24/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1238, 157, '9', '09/20/2010', '10/08/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1239, 157, '9.1', '09/12/2011', '10/27/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1240, 157, '9.2', '09/10/2012', '11/09/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1241, 157, '9.3', '09/09/2013', '11/08/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1242, 157, '9.4', '12/18/2014', '02/13/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1243, 157, '9.5', '01/07/2016', '02/11/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1244, 157, '9.6', '09/29/2016', '11/11/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1245, 157, '10', '10/05/2017', '11/10/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1246, 157, '11', '10/18/2018', '11/09/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1247, 157, '12', '10/03/2019', '11/14/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1248, 157, '13', '09/24/2020', '11/13/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1249, 157, '14', '09/30/2021', '11/12/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1250, 21, '1.0', '03/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1251, 21, '1', '06/06/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1252, 21, '1.0.1', '07/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1253, 21, '2', '01/23/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1254, 21, '2.0.1', '02/22/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1255, 21, '2.1', '06/28/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1256, 21, '2.0.2', '08/04/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1257, 21, '2.1.1', '09/26/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1258, 21, '2.1.2', '02/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1259, 21, '2.1.3', '07/05/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1260, 21, '2.2', '06/28/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1261, 21, '2.2.1', '10/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1262, 21, '2.2.1.1', '11/01/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1263, 21, '2.2.2', '02/27/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1264, 21, '2.3', '06/25/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1265, 21, '2.3.1', '09/24/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1266, 21, '2.3.2', '02/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1267, 21, '2.5', '06/24/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1268, 21, '2.5.1', '09/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1269, 21, '2.5.2', '02/28/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1270, 21, '2.6', '06/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1271, 21, '2.6.1', '09/17/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1272, 21, '2.6.2', '02/25/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1273, 21, '3.7', '06/22/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1274, 21, '3.7.1', '09/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1275, 21, '3.7.2', '02/24/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1276, 21, '4.2.0', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1277, 21, '4.2.1', '09/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1278, 21, '4.2.2', '02/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1279, 21, '4.3', '06/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1280, 21, '4.3.1', '09/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1281, 21, '4.3.2', '02/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1282, 21, '4.4.0', '06/25/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1283, 21, '4.4.1', '09/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1284, 21, '4.4.2', '02/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1285, 21, '4.5.0', '06/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1286, 21, '4.6.0', '06/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1287, 21, '4.7.0', '06/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1288, 21, '4.8.0', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1289, 21, '4.9.0', '06/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1290, 55, '94', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1291, 55, '93', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1292, 55, '92', '06/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1293, 55, '91', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1294, 55, '90', '04/14/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1295, 55, '89', '03/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1296, 55, '88', '01/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1297, 55, '87', '11/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1298, 55, '86', '10/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1299, 55, '85', '08/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1300, 55, '84', '07/14/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1301, 55, '83', '05/19/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1302, 55, '81', '04/07/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1303, 55, '80', '02/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1304, 55, '79', '12/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1305, 55, '78', '10/22/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1306, 55, '77', '09/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1307, 55, '76', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1308, 55, '75', '06/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1309, 55, '74', '04/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1310, 55, '73', '03/12/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1311, 55, '72', '01/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1312, 55, '71', '12/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1313, 55, '70', '10/16/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1314, 55, '69', '09/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1315, 55, '68', '07/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1316, 55, '67', '05/29/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1317, 55, '66', '04/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1318, 55, '65', '03/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1319, 55, '64', '01/23/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1320, 55, '63', '12/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1321, 55, '62', '10/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1322, 55, '61', '09/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1323, 55, '60', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1324, 55, '59', '05/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1325, 55, '58', '04/18/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1326, 55, '57', '03/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1327, 150, '9.3', '12/31/2022', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1328, 150, '9.2', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1329, 150, '9.1', '10/31/2020', '08/01/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1330, 150, '9.0', '02/28/2020', '10/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1331, 150, '8.3', '07/31/2019', '07/01/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1332, 150, '8.2', '11/30/2018', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1333, 150, '8.1', '05/31/2018', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1334, 150, '8.0', '11/30/2017', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1335, 150, '7.1', '04/30/2017', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1336, 27, '20210923171324', '09/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1337, 27, '20210907035717', '10/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1338, 27, '20210824134201', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1339, 27, '20210813114337', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1340, 27, '20210727104144', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1341, 27, '20210720135142', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1342, 27, '20210713164523', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1343, 27, '20210629161835', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1344, 27, '20210616033549', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1345, 27, '20210601124849', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1346, 27, '20210526024943', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1347, 27, '20210518074441', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1348, 27, '20210504084406', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1349, 27, '20210420090302', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1350, 27, '20210406040048', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1351, 27, '20210324172345', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1352, 27, '20210309093358', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1353, 27, '20210219171521', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1354, 27, '20210129162733', '02/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1355, 27, '20210125155346', '01/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1356, 27, '20210112001354', '01/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1357, 27, '20201230192246', '01/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1358, 27, '20201127104018', '12/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1359, 27, '20201106153948', '11/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1360, 27, '20201020140427', '11/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1361, 27, '20201012185603', '10/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1362, 27, '20201005173827', '10/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1363, 27, '20200922182722', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1364, 27, '20200908235050', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1365, 27, '20200831163517', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1366, 27, '20200816214709', '08/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1367, 27, '20200811175306', '08/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1368, 27, '20200807155122', '08/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1369, 27, '20200728181447', '07/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1370, 27, '20200707173044', '07/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1371, 27, '20200701215317', '07/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1372, 27, '20200617215626', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1373, 27, '20200610173731', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1374, 27, '20200603114954', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1375, 27, '20200529133631', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1376, 27, '20200520145933', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1377, 27, '20200513205422', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1378, 27, '20200506172513', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1379, 27, '20200429153636', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1380, 27, '20200420162758', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1381, 27, '20200416222158', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1382, 27, '20200408145843', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1383, 27, '20200325163209', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1384, 27, '20200316122114', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1385, 27, '20200310163217', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1386, 27, '20200303183409', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1387, 27, '20200220011437', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1388, 27, '20200131232134', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1389, 27, '20200127203438', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1390, 27, '20200123225613', '01/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1391, 27, '20200115001116', '01/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1392, 27, '20191211163405', '12/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1393, 27, '20191129172405', '12/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1394, 27, '20191104205453', '11/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1395, 27, '20191030224959', '11/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1396, 27, '20191024135531', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1397, 27, '20191015190829', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1398, 27, '20191007115919', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1399, 27, '20191001203421', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1400, 27, '20190904132002', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1401, 27, '20190827222442', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1402, 27, '20190820163418', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1403, 27, '20190813170406', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1404, 27, '20190806202030', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1405, 27, '20190729085402', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1406, 27, '20190722200451', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1407, 27, '20190717161024', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1408, 27, '20190711110747', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1409, 27, '20190628200755', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1410, 27, '20190617144820', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1411, 27, '20190610211245', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1412, 27, '20190605190944', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1413, 27, '20190513175357', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1414, 27, '20190506101326', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1415, 27, '20190501153509', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1416, 27, '20190422213145', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1417, 27, '20190415203801', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1418, 27, '20190410001346', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1419, 27, '20190325233053', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1420, 27, '20190304193624', '03/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1421, 27, '20190225235742', '03/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1422, 27, '20190207004055', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1423, 27, '20190131011635', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1424, 27, '20190124232144', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1425, 27, '20190116225739', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1426, 27, '20181212095204', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1427, 27, '20181203095916', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1428, 27, '20181126154627', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1429, 27, '20181118185209', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1430, 27, '20181112131523', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1431, 27, '20181029174254', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1432, 27, '20181020020209', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1433, 27, '20181015112149', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1434, 27, '20181011135231', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1435, 27, '20181001090525', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1436, 27, '20180920223835', '09/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1437, 27, '20180912124609', '09/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1438, 27, '20180831173550', '09/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1439, 27, '20180827132056', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1440, 27, '20180817182829', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1441, 27, '20180810152540', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1442, 27, '20180807052402', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1443, 27, '20180806202947', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1444, 27, '20180803154514', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1445, 27, '20180802181335', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1446, 27, '20180728222031', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1447, 27, '20180720170058', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1448, 27, '20180717131009', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1449, 27, '20180714142423', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1450, 27, '20180706210448', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1451, 27, '20180629132035', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1452, 27, '20180621090851', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1453, 27, '20180615105327', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1454, 27, '20180608102534', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1455, 27, '20180604124326', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1456, 27, '20180519154949', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1457, 27, '20180514204156', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1458, 27, '20180504185246', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1459, 27, '20180501212258', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1460, 27, '20180430173459', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1461, 27, '20180424200344', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1462, 27, '20180424150704', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1463, 27, '20180420141712', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1464, 27, '20180416135645', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1465, 27, '20180406143035', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1466, 27, '20180403044658', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1467, 27, '20180326145220', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1468, 27, '20180322085330', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1469, 27, '20180319150121', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1470, 249, '5', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1471, 249, '4.5', '03/07/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1472, 249, '4', '05/05/2015', '05/08/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1473, 249, '3.5', '05/27/2014', '09/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1474, 249, '3.1', '12/19/2013', '06/10/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1475, 249, '3', '07/17/2013', '06/10/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1476, 249, '2', '12/16/2012', '06/10/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1477, 308, '5', '06/12/1905', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1478, 308, '5.01', '04/15/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1479, 308, '5.2', '02/15/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1480, 308, '5.2a', '03/15/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1481, 308, '5.2b', '06/25/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1482, 308, '5.2c', '08/06/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1483, 308, '5.2d', '03/25/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1484, 308, '5.2e', '02/07/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1485, 308, '5.3', '06/26/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1486, 308, '5.3a', '05/20/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1487, 308, '5.3b', '05/20/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1488, 230, '10', '06/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1489, 230, '10.1', '03/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1490, 230, '10.2', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1491, 230, '10.3', '08/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1492, 230, '11', '04/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1493, 230, '11.1', '05/07/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1494, 230, '11.2', '08/29/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1495, 230, '11.3', '06/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1496, 246, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1497, 3, '6', '05/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1498, 178, '3', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1499, 178, '4', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1500, 178, '5', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1501, 178, '6', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1502, 178, '6.0.2', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1503, 178, '7', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1504, 178, '8', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1505, 178, '9', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1506, 178, '10', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1507, 178, '11', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1508, 178, '12', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1509, 178, '16', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1510, 178, '17', '12/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1511, 232, '8.2.04', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1512, 10, '5', '02/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1513, 10, '6', '05/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1514, 10, '7', '05/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1515, 365, '8.1', '04/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1516, 365, '8.2', '08/18/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1517, 365, '8.3', '02/10/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1518, 365, '8.4', '09/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1519, 365, '8.5', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1520, 365, '8.6', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1521, 365, '7.6', '10/16/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1522, 365, '7.5', '04/21/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1523, 365, '7.4', '07/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1524, 145, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1525, 7, '2.3.4', '01/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1526, 7, '2.4.2', '03/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1527, 7, '1.4.13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1528, 7, '1.6.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1529, 7, '1.7.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1530, 7, '2.2.7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1531, 7, '2.3.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1532, 7, '2.4.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1533, 7, '3.0.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1534, 60, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1535, 12, '1.14.1', '02/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1536, 12, '1.10.7', '02/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1537, 12, '1.14.0', '05/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1538, 12, '1.13.0', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1539, 12, '1.12.2', '07/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1540, 12, '1.10.6', '07/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1541, 12, '1.9.12', '07/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1542, 12, '1.12.0', '04/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1543, 12, '1.11.1', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1544, 12, '1.10.4', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1545, 12, '1.9.10', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1546, 12, '1.11.0', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1547, 12, '1.10.3', '10/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1548, 12, '1.10.2', '07/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1549, 12, '1.9.9', '07/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1550, 12, '1.10.0', '04/12/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1551, 12, '1.9.7', '08/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1552, 12, '1.8.19', '08/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1553, 12, '1.8.18', '07/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1554, 12, '1.9.6', '07/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1555, 12, '1.9.5', '11/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1556, 12, '1.8.17', '11/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1557, 12, '1.9.4', '04/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1558, 12, '1.8.16', '04/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1559, 12, '1.9.3', '09/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1560, 12, '1.8.15', '09/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1561, 12, '1.9.2', '09/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1562, 12, '1.9.1', '09/02/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1563, 12, '1.7.22', '08/14/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1564, 12, '1.9.0', '08/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1565, 12, '1.8.14', '08/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1566, 12, '1.7.21', '08/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1567, 12, '1.8.13', '03/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1568, 12, '1.7.20', '03/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1569, 12, '1.8.11', '12/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1570, 12, '1.7.19', '12/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1571, 12, '1.8.10', '08/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1572, 12, '1.7.18', '08/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1573, 12, '1.7.17', '05/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1574, 12, '1.8.9', '05/14/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1575, 12, '1.7.16', '02/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1576, 12, '1.8.8', '02/20/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1577, 12, '1.8.5', '11/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1578, 12, '1.7.14', '11/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1579, 12, '1.8.4', '10/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1580, 12, '1.8.3', '08/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1581, 12, '1.7.13', '08/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1582, 12, '1.8.1', '07/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1583, 12, '1.7.11', '07/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1584, 12, '1.8.0', '06/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1585, 12, '1.7.10', '05/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1586, 12, '1.6.23', '05/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1587, 12, '1.7.9', '04/04/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1588, 12, '1.6.21', '04/04/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1589, 12, '1.6.20', '01/08/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1590, 12, '1.7.8', '12/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1591, 12, '1.7.7', '10/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1592, 12, '1.6.19', '09/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1593, 12, '1.7.6', '08/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1594, 12, '1.7.5', '05/17/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1595, 12, '1.7.4', '03/08/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1596, 12, '1.7.3', '02/13/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1597, 12, '1.7.2', '12/05/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1598, 12, '1.7.1', '10/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1599, 12, '1.7.0', '10/11/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1600, 12, '1.6.18', '04/12/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1601, 12, '1.6.17', '06/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1602, 12, '1.6.16', '03/03/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1603, 12, '1.5.9', '12/22/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1604, 12, '1.6.15', '11/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1605, 12, '1.6.13', '10/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1606, 12, '1.6.12', '06/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1607, 12, '1.6.11', '04/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1608, 12, '1.6.9', '01/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1609, 12, '1.6.6', '10/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1610, 12, '1.6.5', '08/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1611, 12, '1.6.4', '08/06/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1612, 12, '1.6.3', '06/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1613, 12, '1.6.2', '05/11/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1614, 12, '1.6.1', '04/09/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1615, 12, '1.6.0', '03/20/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1616, 12, '1.5.7', '08/06/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1617, 12, '1.5.6', '02/26/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1618, 12, '1.5.5', '12/22/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1619, 12, '1.5.4', '10/24/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1620, 12, '1.5.3', '10/10/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1621, 12, '1.5.2', '08/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1622, 12, '1.5.1', '07/26/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1623, 12, '1.5.0', '06/19/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1624, 12, '1.4.6', '12/20/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1625, 12, '1.4.5', '08/28/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1626, 12, '1.4.4', '06/08/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1627, 12, '1.4.3', '01/25/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1628, 12, '1.4.2', '11/07/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1629, 12, '1.4.0', '09/10/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1630, 12, '1.3.2', '05/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1631, 12, '1.3.1', '04/03/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1632, 12, '1.3.0', '01/03/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1633, 12, '1.2.3', '08/25/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1634, 12, '1.2.1', '07/05/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1635, 12, '1.2.0', '05/23/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1636, 12, '1.1.4', '04/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1637, 12, '1.1.3', '01/14/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1638, 12, '1.1.2', '12/20/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1639, 12, '1.1.1', '10/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1640, 12, '1.0.9', '10/13/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1641, 12, '1.1.0', '09/29/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1642, 12, '1.0.8', '09/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1643, 12, '1.0.7', '09/17/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1644, 12, '1.0.6', '07/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1645, 12, '1.0.5', '06/10/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1646, 12, '1.0.4', '05/21/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1647, 12, '1.0.3', '05/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1648, 12, '1.0.2', '04/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1649, 12, '1.0.1', '03/12/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1650, 12, '1.0.0', '02/23/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1651, 12, '0.37', '01/25/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1652, 12, '0.36', '01/13/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1653, 12, '0.35.1', '12/20/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1654, 12, '0.35', '12/19/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1655, 12, '0.34', '12/03/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1656, 12, '0.33.1', '11/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1657, 12, '0.33', '11/13/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1658, 12, '0.32.1', '10/23/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1659, 12, '0.31', '10/07/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1660, 12, '0.30', '09/24/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1661, 12, '0.29', '09/05/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1662, 12, '0.28.2', '09/02/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1663, 12, '0.28.1', '08/28/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1664, 12, '0.28', '08/27/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1665, 12, '0.27', '08/10/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1666, 12, '0.26', '07/23/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1667, 12, '0.25', '07/10/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1668, 12, '0.24.2', '06/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1669, 12, '0.24.1', '06/16/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1670, 12, '0.24', '06/15/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1671, 12, '0.23', '05/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1672, 12, '0.22.2', '05/13/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1673, 12, '0.22.1', '05/09/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1674, 12, '0.22', '05/07/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1675, 12, '0.21', '04/15/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1676, 12, '0.20.1', '03/26/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1677, 12, '0.20', '03/20/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1678, 12, '0.19.1', '03/12/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1679, 12, '0.19', '03/10/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1680, 12, '0.18.1', '02/26/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1681, 12, '0.18', '02/19/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1682, 12, '0.17.1', '01/22/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1683, 12, '0.17', '01/20/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1684, 12, '0.16.1', '01/06/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1685, 12, '0.16', '12/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1686, 12, '0.15', '11/07/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1687, 12, '0.14.5', '10/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1688, 12, '0.14.4', '10/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1689, 12, '0.14.3', '09/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1690, 12, '0.14.2', '08/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1691, 12, '0.14.1', '08/09/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1692, 12, '0.13.2', '06/28/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1693, 12, '0.13.1', '06/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1694, 12, '0.13.0', '06/10/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1695, 12, '0.12', '05/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1696, 12, '0.11', '04/12/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1697, 12, '0.10', '03/08/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1698, 12, '0.9', '02/18/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1699, 12, '0.8', '01/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1700, 12, '0.7', '12/03/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1701, 422, '9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1702, 422, '8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1703, 422, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1704, 422, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1705, 422, '5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1706, 422, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1707, 422, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1708, 422, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1709, 43, '11.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1710, 43, '11.1', ' ', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1711, 43, '10.5', ' ', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1712, 43, '10.1', ' ', '09/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1713, 43, '9.8', ' ', '04/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1714, 43, '9.7', ' ', '09/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1715, 43, '9.5', ' ', '04/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1716, 43, '9.1', ' ', '04/30/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1717, 43, '8.1', ' ', '04/30/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1718, 68, '10', '03/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1719, 68, '9', '06/28/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1720, 330, '12.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1721, 330, '14.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1722, 81, '9.2', '07/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1723, 81, '9.1', '07/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1724, 81, 'IBM MQ on IBM Cloud', '03/13/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1725, 81, 'IBM MQ for HPE Nonstop 8.0', '06/23/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1726, 81, '9.0', '06/02/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1727, 81, '8.0', '05/23/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1728, 81, '7.5', '06/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1729, 81, '7.1', '11/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1730, 81, '7.0', '06/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1731, 81, '7.0', '05/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1732, 81, '6.0', '06/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1733, 81, 'WebSphere MQ 6.0 (Distributed, iSeries)', '05/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1734, 81, '5.3', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1735, 81, 'WebSphere MQ 5.3 (Distributed, iSeries)', '11/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1736, 81, 'MQSeries 5.2 (Distributed)', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1737, 81, '5.2', '11/30/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1738, 81, '5.1', '08/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1739, 81, '2.1', '02/28/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1740, 81, '5.1', '06/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1741, 81, '4.2', '02/28/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1742, 81, '5.0', '10/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1743, 81, '1.2', '08/29/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1744, 81, '1.1.4,', '06/30/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1745, 81, '2.2', '07/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1746, 81, '2.0', '06/30/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1747, 81, '2.2', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1748, 81, '1.1.3', '05/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1749, 81, '2.0', '02/28/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1750, 81, '3', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1751, 81, '3.0', '07/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1752, 81, '1.1.2', '06/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1753, 81, '2.3', '04/30/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1754, 81, '1.1.1', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1755, 127, '9.5.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1756, 169, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1757, 36, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1758, 225, '3', '12/31/1986', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1759, 225, '4', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1760, 225, '5', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1761, 225, '6', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1762, 225, '7', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1763, 225, '8', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1764, 225, '9', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1765, 225, '9.4', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1766, 225, '9.5', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1767, 225, '9.6', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1768, 225, '9.7', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1769, 225, '10', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1770, 225, '10.4', '12/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1771, 219, '8.5.0', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1772, 128, '2.5.0', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1773, 128, '2.5.1', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1774, 128, '2.5.2', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1775, 128, '2.5.3', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1776, 128, '2.4.0', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1777, 128, '2.4.1', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1778, 128, '2.4.2', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1779, 128, '2.4.3', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1780, 128, '2.4.4', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1781, 128, '2.4.5', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1782, 128, '2.4.6', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1783, 128, '2.4.7', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1784, 128, '2.4.8', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1785, 128, '2.4.9', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1786, 128, '2.4.10', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1787, 128, '2.4.11', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1788, 128, '2.3.0', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1789, 128, '2.3.1', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1790, 128, '2.3.2', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1791, 128, '2.3.3', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1792, 128, '2.3.4', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1793, 128, '2.3.5', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1794, 128, '2.3.6', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1795, 128, '2.3.7', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1796, 128, '2.3.8', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1797, 128, '2.3.9', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1798, 128, '2.3.10', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1799, 128, '2.3.11', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1800, 128, '2.3.12', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1801, 128, '2.3.13', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1802, 128, '2.3.14', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1803, 128, '2.3.15', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1804, 128, '2.3.16', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1805, 128, '2.3.17', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1806, 128, '2.3.18', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1807, 128, '2.2.0', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1808, 128, '2.2.1', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1809, 128, '2.2.2', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1810, 128, '2.2.3', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1811, 128, '2.1.0', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1812, 128, '2.1.1', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1813, 128, '2.1.2', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1814, 128, '2.1.3', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1815, 128, '2.1.4', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1816, 215, '15', '03/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1817, 215, '16', '11/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1818, 117, '1', '11/09/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1819, 117, '1.5', '11/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1820, 117, '2', '10/24/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1821, 117, '3', '06/17/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1822, 117, '3.5', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1823, 117, '3.6', '01/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1824, 117, '4', '10/13/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1825, 146, '1', '03/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1826, 146, '1.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1827, 146, '1.2.1', '08/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1828, 146, '1.5', '04/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1829, 146, '1.5.1', '06/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1830, 146, '1.5.3', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1831, 146, '1.5.4', '03/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1832, 146, '1.5.5', '07/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1833, 146, '2.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1834, 146, '3', '03/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1835, 146, '3.1', '02/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1836, 146, '3.2', '08/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1837, 146, '4', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1838, 146, '4.0.1', '02/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1839, 146, '4.0.2', '05/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1840, 146, '4.0.3', '09/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1841, 146, '4.1.1', '06/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1842, 146, '4.1.2', '10/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1843, 146, '4.1.3', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1844, 146, '4.1.5', '09/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1845, 146, '4.2.0', '04/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1846, 146, '17.2', '07/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1847, 146, '17.4', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1848, 146, '18.1', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1849, 146, '18.2', '07/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1850, 146, '18.3', '10/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1851, 146, '18.4', '01/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1852, 146, '19.1', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1853, 146, '19.2', '08/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1854, 146, '19.4', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1855, 146, '20.2', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1856, 146, '20.4', '01/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1857, 146, '20.4.1', '02/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1858, 146, '21.2', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1859, 241, '2.16.0', '11/23/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1860, 241, '2.15.2', '01/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1861, 241, '2.14.0', '02/02/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1862, 241, '2.13.20', '10/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1863, 241, '2.12.0', '03/05/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1864, 241, '2.11.1', '07/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1865, 241, '2.9.1', '04/23/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1866, 241, '2.8', '03/04/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1867, 241, '2.7.1', '11/16/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1868, 241, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1869, 115, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1870, 86, ' ', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1871, 4, '1', '06/15/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1872, 4, '2', '09/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1873, 4, '3', '11/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1874, 4, '4', '04/01/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1875, 4, '5', '05/01/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1876, 4, '6', '07/01/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1877, 4, '7', '12/28/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1878, 4, '8', '11/03/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1879, 4, '9', '06/02/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1880, 4, '10', '11/15/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1881, 4, '11', '10/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1882, 4, '2015', '04/06/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1883, 4, '2017', '06/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1884, 4, '2020', '06/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1885, 101, '1.5', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1886, 101, '2012', '09/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1887, 101, '7 ', '02/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1888, 101, '7.0.4.17', '05/27/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1889, 88, '2.8', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1890, 88, '2.81', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1891, 125, '20.03', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1892, 125, '21.05', '05/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1893, 234, '8.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1894, 234, '8.5.1', '05/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1895, 231, '7.0.0', '04/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1896, 231, '6.7', '04/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1897, 231, '6.5', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1898, 231, '6', '03/12/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1899, 231, '5.5', '09/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1900, 231, '5', '08/24/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1901, 56, '5', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1902, 56, '6', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1903, 57, '1', '04/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1904, 57, '2.7.7', '05/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1905, 57, '2.8.5', '09/15/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1906, 57, '2.9.2', '11/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1907, 57, '2.10.1', '09/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1908, 57, '3.1.4', '08/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1909, 57, '3.2.2', '01/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1910, 57, '3.3.1', '06/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1911, 124, '3.29.1', '12/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1912, 124, '3.29', '12/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1913, 124, '3.28.1', '10/19/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1914, 124, '3.28', '10/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1915, 124, '3.27', '09/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1916, 124, '3.26.1', '08/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1917, 124, '3.26', '08/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1918, 124, '3.25.1', '07/29/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1919, 124, '3.25', '07/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1920, 124, '3.24', '06/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1921, 124, '3.23', '05/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1922, 124, '3.22.1', '04/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1923, 124, '3.22.0', '03/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1924, 124, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1925, 188, '6', '10/01/2013', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1926, 188, '6.1', '05/06/2014', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1927, 188, '6.2', '10/07/2014', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1928, 188, '6.3', '09/22/2015', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1929, 188, '6.4', '04/05/2016', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1930, 188, '6.5', '09/27/2016', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1931, 188, '6.6', '05/02/2017', '01/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1932, 188, '7', '09/26/2017', '01/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1933, 188, '7.1', '04/24/2018', '10/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1934, 188, '7.2', '10/02/2018', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1935, 188, '7.3', '06/04/2019', '10/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1936, 188, '8', '10/22/2019', '10/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1937, 188, '8.1', '10/19/2020', '10/19/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1938, 188, '8.2', '05/12/2021', '05/12/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1939, 151, '7', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1940, 151, '7.5', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1941, 151, '9', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1942, 151, '9.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1943, 151, '9.2', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1944, 84, '12.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1945, 84, '13.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1946, 84, '14.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1947, 84, '15.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1948, 84, '15.2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1949, 603, '2013', '08/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1950, 603, '2016', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1951, 603, '2019', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1952, 193, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1953, 6, '5.16.3', '08/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1954, 6, '5.16.2', '04/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1955, 6, '5.16.1', '01/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1956, 6, '5.16.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1957, 6, '5.15.15', '04/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1958, 6, '5.15.14', '12/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1959, 6, '5.15.13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1960, 6, '5.15.12', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1961, 6, '5.15.11', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1962, 6, '5.15.10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1963, 6, '5.15.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1964, 6, '5.15.8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1965, 6, '5.15.7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1966, 6, '5.15.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1967, 6, '5.15.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1968, 6, '5.15.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1969, 6, '5.15.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1970, 6, '5.15.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1971, 6, '5.15.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1972, 6, '5.15.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1973, 6, '5.14.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1974, 6, '5.14.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1975, 6, '5.14.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1976, 6, '5.14.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1977, 6, '5.14.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1978, 6, '5.14.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1979, 6, '5.13.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1980, 6, '5.13.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1981, 6, '5.13.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1982, 6, '5.13.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1983, 6, '5.13.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1984, 6, '5.12.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1985, 6, '5.12.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1986, 6, '5.12.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1987, 6, '5.11.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1988, 6, '5.11.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1989, 6, '5.11.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1990, 6, '5.11.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1991, 6, '5.10.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1992, 6, '5.10.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1993, 6, '5.10.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1994, 6, '5.9.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1995, 6, '5.9.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1996, 6, '5.8.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1997, 6, '5.7.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1998, 6, '5.6.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1999, 6, '5.5.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2000, 6, '5.5.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2001, 6, '5.4.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2002, 6, '5.4.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2003, 6, '5.4.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2004, 6, '5.4.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2005, 6, '5.3.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2006, 6, '5.3.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2007, 6, '5.3.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2008, 6, '5.2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2009, 6, '5.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2010, 6, '5.0.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2011, 240, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2012, 240, '9.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2013, 248, '0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2014, 248, '1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2015, 248, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2016, 248, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2017, 248, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2018, 79, '9.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2019, 79, '9.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2020, 79, '8.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2021, 83, '8.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2022, 83, '8.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2023, 83, '9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2024, 83, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2025, 157, '14', '09/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2026, 157, '13', '09/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2027, 157, '12', '10/03/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2028, 157, '11', '10/18/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2029, 157, '10', '10/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2030, 157, '9.6', '09/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2031, 157, '9.5', '01/07/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2032, 157, '9.4', '12/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2033, 157, '9.3', '09/09/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2034, 157, '9.2', '09/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2035, 157, '9.1', '09/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2036, 157, '9', '09/20/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2037, 157, '8.4', '07/01/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2038, 157, '8.3', '02/04/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2039, 157, '8.2', '12/05/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2040, 157, '8.1', '11/08/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2041, 157, '8', '01/19/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2042, 157, '7.4', '11/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2043, 157, '7.3', '11/27/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2044, 157, '7.2', '02/04/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2045, 157, '7.1', '04/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2046, 157, '7', '05/08/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2047, 157, '6.5', '06/09/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2048, 157, '6.4', '10/30/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2049, 157, '6.3', '03/01/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2050, 11, '1', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2051, 11, '1.3', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2052, 11, '1.4', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2053, 11, '4', '10/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2054, 11, '5', '10/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2055, 11, '6', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2056, 11, '7', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2057, 11, '8', '03/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2058, 73, '08.10.05', '12/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2059, 73, '08.10.02', '06/19/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2060, 73, '08.10.00', '12/07/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2061, 73, '08.09.02', '03/23/2018', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2062, 73, '08.09.01', '11/10/2017', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2063, 73, '08.09.00', '03/03/2017', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2064, 73, '08.08.01', '07/19/2016', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2065, 73, '08.08.00', '11/27/2015', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2066, 73, '08.07.01', '05/15/2015', '04/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2067, 73, '08.07.00', '12/05/2014', '04/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2068, 73, '08.06.00', '06/06/2014', '09/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2069, 73, '08.05.01', '11/29/2013', '09/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2070, 73, '08.05.00', '06/07/2013', '09/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2071, 73, '08.00.01', '12/30/2012', '09/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2072, 73, '08.00.00', '06/08/2012', '09/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2073, 73, '07.05.00', '11/18/2011', '04/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2074, 73, '07.01.00', '10/15/2010', '09/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2075, 176, '7.6', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2076, 176, '7.7', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2077, 176, '7.8', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2078, 176, '7.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2079, 581, '1.0', '12/31/1989', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2080, 581, '1.1', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2081, 581, '4.2A', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2082, 581, '4.2B', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2083, 581, '4.21', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2084, 581, '6', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2085, 581, '6.5', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2086, 581, '7', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2087, 581, '8', '12/31/2000', '04/08/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2088, 581, '9', '01/14/2006', '04/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2089, 581, '10', '11/06/2008', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2090, 581, '10.25', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2091, 581, '10.5', '07/20/2010', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2092, 581, '11', '05/20/2012', '07/11/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2093, 581, '12', '06/05/2014', '07/09/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2094, 581, '13', '06/01/2016', '07/13/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2095, 581, '14', '09/29/2017', '10/11/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2096, 581, '15', '11/04/2019', '01/07/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2097, 121, '1.0', '10/26/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2098, 121, '2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2099, 121, '3.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2100, 121, '3.1', '02/19/2007', '04/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2101, 121, '3.5', '02/19/2008', '04/10/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2102, 121, '4.0', '04/13/2011', '07/13/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2103, 31, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2104, 190, '3', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2105, 190, '4', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2106, 190, '4.2', '12/31/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2107, 190, '4.8', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2108, 190, '4.9', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2109, 190, '4.9.1', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2110, 190, '4.9.2', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2111, 190, '11', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2112, 190, '11.5', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2113, 190, '11.9', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2114, 190, '11.9.2', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2115, 190, '12', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2116, 190, '12.5', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2117, 190, '12.5.0.1', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2118, 190, '12.5.0.3', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2119, 190, '12.5.2', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2120, 190, '12.5.3', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2121, 190, '12.5.4', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2122, 190, '15', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2123, 190, '15.0.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2124, 190, '15.0.2', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2125, 190, '15.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2126, 190, '16', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2127, 436, '12.04.5', '07/08/2014', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2128, 436, '12.04.5', '07/08/2014', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2129, 436, '12.04.5', '07/08/2014', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2130, 436, '14.04.6', '03/07/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2131, 436, '14.04.6', '03/07/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2132, 436, '14.04.6', '03/07/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2133, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2134, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2135, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2136, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2137, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2138, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2139, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2140, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2141, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2142, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2143, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2144, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2145, 436, '20.10', '10/22/2020', '07/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2146, 436, '20.10', '10/22/2020', '07/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2147, 436, '4.1', '10/26/2004', '04/30/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2148, 436, '5.04', '04/08/2005', '10/31/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2149, 436, '5.1', '10/12/2005', '04/13/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2150, 436, '6.06.0', '06/01/2006', '07/14/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2151, 436, '6.06.1', '08/10/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2152, 436, '6.06.2', '01/21/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2153, 436, '6.1', '10/26/2006', '04/26/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2154, 436, '7.04', '04/19/2007', '10/19/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2155, 436, '7.1', '10/18/2007', '04/18/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2156, 436, '8.04.0', '04/24/2008', '05/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2157, 436, '8.04.1', '07/03/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2158, 436, '8.04.2', '01/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2159, 436, '8.04.3', '07/16/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2160, 436, '8.04.4', '01/28/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2161, 436, '8.1', '10/30/2008', '04/30/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2162, 436, '9.04', '04/23/2009', '10/23/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2163, 436, '9.1', '08/23/2013', '04/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2164, 436, '10.04.0', '10/21/2015', '05/09/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2165, 436, '10.04.1', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2166, 436, '10.04.2', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2167, 436, '10.04.3', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2168, 436, '10.04.4', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2169, 436, '10.1', '08/23/2013', '04/10/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2170, 436, '11.04', '08/23/2013', '10/28/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2171, 436, '11.1', '08/23/2013', '05/09/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2172, 436, '12.04.0', '04/27/2018', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2173, 436, '12.04.1', '04/27/2018', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2174, 436, '12.04.2', '04/27/2018', '08/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2175, 436, '12.04.3', '04/27/2018', '08/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2176, 436, '12.04.4', '04/27/2018', '08/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2177, 436, '12.1', '04/22/2016', '05/16/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2178, 436, '13.04', '04/22/2016', '01/27/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2179, 436, '13.1', '04/22/2016', '07/17/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2180, 436, '14.04.0', '03/07/2019', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2181, 436, '14.04.1', '03/07/2019', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2182, 436, '14.04.2', '03/07/2019', '08/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2183, 436, '14.04.3', '03/07/2019', '08/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2184, 436, '14.04.4', '03/07/2019', '08/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2185, 436, '14.04.5', '03/07/2019', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2186, 436, '14.1', '04/22/2016', '07/23/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2187, 436, '15.04', '04/28/2016', '02/04/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2188, 436, '15.1', '08/04/2016', '07/28/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2189, 436, '16.04.0', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2190, 436, '16.04.1', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2191, 436, '16.04.2', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2192, 436, '16.04.3', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2193, 436, '16.04.4', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2194, 436, '16.04.5', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2195, 436, '16.1', '07/21/2017', '07/20/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2196, 436, '17.04', '02/07/2018', '01/13/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2197, 436, '17.1', '08/02/2018', '07/19/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2198, 436, '18.04.0', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2199, 436, '18.04.1', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2200, 436, '18.04.2', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2201, 436, '18.04.3', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2202, 436, '18.04.4', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2203, 436, '18.1', '08/08/2019', '07/18/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2204, 436, '19.04', '08/18/2020', '04/18/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2205, 436, '19.1', '08/21/2020', '10/17/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2206, 436, '20.04.0', '02/11/2021', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2207, 436, '20.04.1', '02/11/2021', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2208, 436, '20.04', '02/11/2021', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2209, 436, '20.1', '10/22/2020', '01/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2210, 434, '8.3', '11/03/2020', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2211, 434, '8.2', '04/28/2020', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2212, 434, '8.1', '11/05/2019', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2213, 434, '8', '05/07/2019', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2214, 434, '7.9', '09/29/2020', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2215, 434, '7.8', '03/31/2020', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2216, 434, '7.7', '08/06/2019', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2217, 434, '7.6', '10/30/2018', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2218, 434, '7.5', '04/10/2018', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2219, 434, '7.4', '07/31/2017', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2220, 434, '7.3', '11/03/2016', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2221, 434, '7.2', '11/19/2015', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2222, 434, '7.1', '03/05/2015', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2223, 434, '7.0', '06/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2224, 434, '7.0', '12/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2225, 434, '6.10', '06/19/2018', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2226, 434, '6.9', '03/21/2017', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2227, 434, '6.8', '05/10/2016', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2228, 434, '6.7', '07/22/2015', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2229, 434, '6.6', '10/14/2014', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2230, 434, '6.5', '11/21/2013', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2231, 434, '6.4', '02/21/2013', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2232, 434, '6.3', '06/20/2012', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2233, 434, '6.2', '12/06/2011', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2234, 434, '6.1', '05/19/2011', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2235, 434, '6.0', '11/09/2010', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2236, 434, '5.11', '09/16/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2237, 434, '5.10', '10/01/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2238, 434, '5.9', '01/07/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2239, 434, '5.8', '02/20/2012', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2240, 434, '5.7', '07/21/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2241, 434, '5.6', '01/13/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2242, 434, '5.5', '03/30/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2243, 434, '5.4', '09/02/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2244, 434, '5.3', '01/20/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2245, 434, '5.2', '05/21/2008', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2246, 434, '5.1', '11/07/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2247, 434, '5.0', '03/15/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2248, 434, '4.9', '02/16/2011', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2249, 434, '4.8', '05/19/2009', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2250, 434, '4.7', '07/29/2008', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2251, 434, '4.6', '11/15/2007', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2252, 434, '4.5', '05/01/2007', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2253, 434, '4.4', '08/10/2006', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2254, 434, '4.3', '03/12/2006', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2255, 434, '4.2', '10/05/2005', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2256, 434, '4.1', '06/08/2005', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2257, 434, '4', '02/15/2005', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2258, 434, '3.9', '06/20/2007', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2259, 434, '3.8', '07/20/2006', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2260, 434, '3.7', '03/17/2006', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2261, 434, '3.6', '09/28/2005', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2262, 434, '3.5', '05/18/2005', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2263, 434, '3.4', '12/12/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2264, 434, '3.3', '09/03/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2265, 434, '3.2', '05/12/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2266, 434, '3.1', '01/16/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2267, 434, '3', '10/22/2003', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2268, 434, '2.1.7', '04/28/2005', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2269, 434, '2.1.6', '12/13/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2270, 434, '2.1.5', '08/18/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2271, 434, '2.1.4', '04/21/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2272, 434, '2.1.3', '12/19/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2273, 434, '2.1.2', '03/29/2003', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2274, 434, '2.1.1', '02/14/2003', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2275, 434, '2.1', '03/23/2002', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2276, 429, '0.9', '08/01/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2277, 429, '0.91', '01/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2278, 429, '0.93R5', '03/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2279, 429, '0.93R6', '11/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2280, 429, '1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2281, 429, '1.1', '06/17/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2282, 429, '1.2', '12/12/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2283, 429, '1.3', '06/05/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2284, 429, '2.0', '07/24/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2285, 429, '2.1', '03/09/1999', '09/30/2000'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2286, 429, '2.2', '08/15/2000', '06/30/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2287, 429, '3.0', '07/19/2002', '06/30/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2288, 429, '3.1', '06/06/2005', '03/31/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2289, 429, '4.0', '04/08/2007', '02/15/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2290, 429, '5.0', '02/14/2009', '02/06/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2291, 429, '6.0', '02/06/2011', '05/31/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2292, 429, '7', '05/04/2013', '04/26/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2293, 429, '8', '04/26/2015', '06/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2294, 429, '9', '06/17/2017', '01/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2295, 429, '10', '07/06/2019', '01/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2296, 429, '11', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2297, 429, '12', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2298, 429, '13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2299, 427, '2.1', '08/19/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2300, 427, '3.1', '07/31/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2301, 427, '3.3', '03/17/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2302, 427, '3.4', '03/01/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2303, 427, '3.5', '07/28/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2304, 427, '3.6', '04/04/2006', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2305, 427, '3.7', '05/06/2006', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2306, 427, '3.8', '04/20/2012', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2307, 427, '3.9', '04/20/2012', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2308, 427, '4', '06/23/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2309, 427, '4.0', '09/15/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2310, 427, '4.1', '10/19/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2311, 427, '4.2', '11/04/2006', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2312, 427, '4.2.0', '10/23/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2313, 427, '4.3', '08/27/2006', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2314, 427, '4.4', '11/01/2006', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2315, 427, '4.5', '12/08/2007', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2316, 427, '4.6', '09/18/2008', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2317, 427, '4.7', '02/14/2010', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2318, 427, '4.8', '04/20/2012', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2319, 427, '4.9', '04/20/2012', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2320, 427, '5', '04/11/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2321, 427, '5.1', '11/27/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2322, 427, '5.2', '06/18/2008', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2323, 427, '5.3', '02/14/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2324, 427, '5.4', '06/25/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2325, 427, '5.5', '05/14/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2326, 427, '5.6', '08/12/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2327, 427, '5.7', '09/13/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2328, 427, '5.8', '02/27/2012', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2329, 427, '5.9', '01/12/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2330, 427, '5.1', '10/07/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2331, 427, '5.11', '09/27/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2332, 427, '6', '12/19/2011', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2333, 427, '6.1', '12/08/2011', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2334, 427, '6.2', '12/19/2011', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2335, 427, '6.3', '07/09/2012', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2336, 427, '6.4', '06/20/2013', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2337, 427, '6.5', '12/21/2013', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2338, 427, '6.6', '07/31/2015', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2339, 427, '6.7', '01/21/2016', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2340, 427, '6.8', '05/24/2016', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2341, 427, '6.9', '04/04/2017', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2342, 427, '6.1', '07/02/2018', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2343, 427, '7.0.1406', '04/07/2015', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2344, 427, '7.1.1503', '11/13/2015', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2345, 427, '7.2.1511', '05/18/2016', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2346, 427, '7.3.1611', '02/20/2017', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2347, 427, '7.4.1708', '02/26/2018', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2348, 427, '7.5.1804', '05/09/2018', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2349, 427, '7.6.1810', '12/02/2018', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2350, 427, '7.7.1908', '09/15/2019', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2351, 427, '7.8.2003', '06/17/2020', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2352, 427, '7.9.2009', '01/18/2021', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2353, 427, '8.0', '03/10/2021', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2354, 427, '8.0.1905', '09/09/2020', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2355, 427, '8.1.1911', '10/21/2020', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2356, 427, '8.2.2004', '01/15/2021', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2357, 427, '8.3.2011', '02/22/2021', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2358, 453, '1', '11/05/2003', '09/20/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2359, 453, '2', '05/18/2004', '04/11/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2360, 453, '3', '11/08/2004', '01/16/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2361, 453, '4', '06/13/2005', '08/07/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2362, 453, '5', '03/20/2006', '07/02/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2363, 453, '6', '10/24/2006', '12/07/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2364, 453, '7', '05/31/2007', '06/13/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2365, 453, '8', '11/08/2007', '01/07/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2366, 453, '9', '05/13/2008', '07/10/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2367, 453, '10', '11/25/2008', '12/17/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2368, 453, '11', '06/09/2009', '06/25/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2369, 453, '12', '11/17/2009', '12/02/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2370, 453, '13', '05/25/2010', '06/24/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2371, 453, '14', '11/02/2010', '12/09/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2372, 453, '15', '05/24/2011', '06/26/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2373, 453, '16', '11/08/2011', '02/12/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2374, 453, '17', '05/29/2012', '07/30/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2375, 453, '18', '01/15/2013', '01/14/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2376, 453, '19', '07/02/2013', '01/06/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2377, 453, '20', '12/17/2013', '06/23/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2378, 453, '21', '12/09/2014', '01/12/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2379, 453, '22', '05/26/2015', '07/19/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2380, 453, '23', '11/03/2015', '12/20/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2381, 453, '24', '06/21/2016', '08/08/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2382, 453, '25', '11/22/2016', '12/12/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2383, 453, '26', '07/11/2017', '05/29/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2384, 453, '27', '11/14/2017', '11/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2385, 453, '28', '05/01/2018', '05/28/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2386, 453, '29', '10/30/2018', '11/26/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2387, 453, '30', '05/07/2019', '05/26/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2388, 453, '31', '10/29/2019', '11/24/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2389, 453, '32', '04/28/2020', '05/25/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2390, 453, '33', '10/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2391, 453, '34', '04/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2392, 453, '35', '10/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2393, 432, '4.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2394, 432, '4.6', '12/10/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2395, 432, '4.7', '08/05/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2396, 432, '4.8', '05/26/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2397, 432, '4.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2398, 432, '5', '06/26/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2399, 432, '5.1', '11/26/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2400, 432, '5.2', '06/02/2008', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2401, 432, '5.3', '01/28/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2402, 432, '5.4', '09/09/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2403, 432, '5.5', '04/07/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2404, 432, '5.6', '01/22/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2405, 432, '5.7', '08/16/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2406, 432, '5.8', '03/02/2012', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2407, 432, '5.9', '01/16/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2408, 432, '5.1', '10/08/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2409, 432, '5.11', '09/23/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2410, 432, '6', '02/11/2011', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2411, 432, '6.1', '06/01/2011', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2412, 432, '6.2', '12/15/2011', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2413, 432, '6.3', '06/28/2012', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2414, 432, '6.4', '02/28/2013', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2415, 432, '6.5', '11/27/2013', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2416, 432, '6.6', '10/21/2014', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2417, 432, '6.7', '07/31/2015', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2418, 432, ' ', '03/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2419, 432, '6.8', '05/16/2016', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2420, 432, '6.9', '03/28/2017', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2421, 432, '6.1', '07/02/2018', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2422, 432, '7', '07/23/2014', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2423, 432, '7.1', '03/12/2015', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2424, 432, '7.2', '11/25/2015', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2425, 432, '7.3', '11/10/2016', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2426, 432, '7.4', '08/08/2017', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2427, 432, '7.5', '04/17/2018', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2428, 432, '7.6', '11/07/2018', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2429, 432, '7.7', '08/15/2019', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2430, 432, '7.8', '04/08/2020', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2431, 432, '7.9', '10/07/2020', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2432, 432, '8', '07/18/2019', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2433, 432, '8.1', '11/15/2019', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2434, 432, '8.2', '05/06/2020', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2435, 432, '8.3', '11/13/2020', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2436, 454, '2011.09', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2437, 454, '2012.03.3', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2438, 454, '2012.09.1', '02/19/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2439, 454, '2013.03', '05/13/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2440, 454, '2013.03.1', '05/13/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2441, 454, '2013.09.1', '11/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2442, 454, '2013.09.2', '12/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2443, 454, '2014.03.1', '04/14/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2444, 454, '2014.03.2', '06/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2445, 454, '2014.09.1', '10/14/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2446, 454, '2014.09.2', '01/29/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2447, 454, '2015.03.1', '08/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2448, 454, '2015.09.2', '02/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2449, 454, '2016.03.1', '05/04/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2450, 454, '2016.03.2', '06/09/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2451, 454, '2016.03.3', '06/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2452, 454, '2016.09.1', '12/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2453, 454, '2017.03', '06/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2454, 454, '2017.09', '11/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2455, 454, '2018.03', '05/14/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2456, 431, '10.2', '12/07/2006', '11/30/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2457, 431, '10.3', '10/04/2007', '10/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2458, 431, '11', '06/19/2008', '07/26/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2459, 431, '11.1', '12/18/2008', '01/14/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2460, 431, '11.2', '11/12/2009', '05/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2461, 431, '11.3', '07/15/2010', '01/20/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2462, 431, '11.4', '03/10/2011', '11/05/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2463, 431, '12.1', '11/16/2011', '05/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2464, 431, '12.2', '09/05/2012', '01/15/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2465, 431, '12.3', '03/13/2013', '01/29/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2466, 431, '13.1', '11/19/2013', '02/03/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2467, 431, '13.2', '11/04/2014', '01/17/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2468, 431, '42.1', '11/04/2015', '05/17/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2469, 431, '42.2', '11/16/2016', '01/26/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2470, 431, '42.3', '07/26/2017', '07/01/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2471, 431, '15', '05/25/2018', '12/03/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2472, 431, '15.1', '05/22/2019', '02/02/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2473, 431, '15.2', '07/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2474, 431, '15.3', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2475, 435, 'SuSE Linux Enterprise Server S/390', '10/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2476, 435, 'Sparc', '04/01/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2477, 435, 'IAs32', '04/01/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2478, 435, '7', '10/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2479, 435, '8', '10/01/2002', '12/20/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2480, 435, '8 SP1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2481, 435, '8 SP2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2482, 435, '8 SP2a', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2483, 435, '8 SP3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2484, 435, '8 SP4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2485, 435, '9', '08/03/2004', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2486, 435, '9 SP1', '01/19/2005', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2487, 435, '9 SP2', '07/07/2005', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2488, 435, '9 SP3', '12/22/2005', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2489, 435, '9 SP4', '12/12/2007', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2490, 435, '10', '06/17/2006', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2491, 435, '10 SP1', '06/18/2007', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2492, 435, '10 SP2', '05/19/2008', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2493, 435, '10 SP3', '10/12/2009', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2494, 435, '10 SP4', '04/12/2011', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2495, 435, '11', '03/24/2009', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2496, 435, '11 SP1', '06/02/2010', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2497, 435, '11 SP2', '02/15/2012', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2498, 435, '11 SP3', '07/01/2013', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2499, 435, '11 SP4', '07/16/2015', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2500, 435, '12', '10/27/2014', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2501, 435, '12 SP1', '01/12/2016', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2502, 435, '12 SP2', '11/11/2016', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2503, 435, '12 SP3', '09/07/2017', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2504, 435, '12 SP4', '12/11/2018', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2505, 435, '12 SP5', '12/09/2019', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2506, 435, '15', '07/16/2018', '07/31/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2507, 435, '15 SP1', '06/24/2019', '07/31/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2508, 435, '15 SP2', '07/21/2020', '07/31/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2509, 430, '20.4', '12/25/2020', '06/25/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2510, 430, '20.3', '09/29/2020', '03/29/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2511, 430, '20.2', '06/30/2020', '12/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2512, 430, '20.1', '03/27/2020', '09/27/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2513, 430, '19.4', '12/26/2019', '06/26/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2514, 430, '19.3', '09/26/2019', '03/26/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2515, 430, '19.2', '06/26/2019', '12/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2516, 430, '19.1', '03/27/2019', '09/27/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2517, 430, '18.4', '12/22/2018', '06/22/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2518, 430, '18.3', '09/26/2018', '03/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2519, 430, '18.2', '06/29/2018', '12/29/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2520, 430, '18.1', '03/28/2018', '09/28/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2521, 430, '17.4', '12/21/2017', '06/21/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2522, 430, '17.3', '08/25/2017', '02/25/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2523, 430, '17.2', '06/06/2017', '12/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2524, 430, '17.1', '03/03/2017', '09/03/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2525, 430, '16.2', '11/29/2016', '05/29/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2526, 430, '16.1', '07/28/2016', '01/28/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2527, 430, '15.1X53', '06/05/2015', '12/05/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2528, 430, '15.1X49', '06/30/2015', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2529, 430, '15.1', '06/05/2015', '12/05/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2530, 430, '14.2', '11/05/2014', '05/05/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2531, 430, '14.1X53', '09/26/2014', '06/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2532, 430, '14.1', '06/13/2014', '06/13/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2533, 430, '13.3', '01/22/2014', '07/22/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2534, 430, '13.2X52', '07/06/2014', '06/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2535, 430, '13.2X51', '11/22/2013', '06/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2536, 430, '13.2X50', '06/28/2013', '12/28/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2537, 430, '13.2', '08/29/2013', '02/29/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2538, 430, '13.1X50', '07/25/2013', '12/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2539, 430, '13.1', '03/15/2013', '09/15/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2540, 430, '12.3X54', '07/18/2014', '07/18/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2541, 430, '12.3X52', '08/23/2013', '02/23/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2542, 430, '12.3X51', '03/15/2013', '09/15/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2543, 430, '12.3X50', '12/08/2012', '07/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2544, 430, '12.3X48', '03/06/2015', '06/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2545, 430, '12.3', '01/31/2013', '07/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2546, 430, '12.2X50', '07/05/2012', '07/31/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2547, 430, '12.2', '09/05/2012', '03/05/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2548, 430, '12.1X49', '04/19/2012', '10/19/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2549, 430, '12.1X48', '01/28/2013', '06/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2550, 430, '12.1X47', '08/18/2014', '02/18/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2551, 430, '12.1X46', '12/30/2013', '06/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2552, 430, '12.1X45', '07/17/2013', '01/17/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2553, 430, '12.1X44', '01/18/2013', '07/18/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2554, 430, '12.1', '03/28/2012', '09/28/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2555, 430, '11.4', '12/21/2011', '06/21/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2556, 430, '11.3', '08/15/2011', '03/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2557, 430, '11.2', '08/03/2011', '02/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2558, 430, '11.1', '03/29/2011', '05/15/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2559, 430, '10.41', '12/08/2010', '06/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2560, 430, '10.3', '08/15/2010', '12/21/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2561, 430, '10.2', '05/28/2010', '11/15/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2562, 430, '10.1', '02/15/2010', '05/15/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2563, 430, '10.0', '11/04/2009', '05/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2564, 430, '9.6', '08/06/2009', '11/06/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2565, 430, '9.5', '04/14/2009', '08/15/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2566, 430, '9.4', '02/11/2009', '05/11/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2567, 430, '9.3', '11/14/2008', '05/15/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2568, 430, '9.2', '08/12/2008', '11/12/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2569, 430, '9.1', '04/28/2008', '07/28/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2570, 430, '9.0', '02/15/2008', '05/15/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2571, 430, '8.5', '11/16/2007', '05/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2572, 430, '8.4', '08/09/2007', '11/09/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2573, 430, '8.3', '04/18/2007', '07/18/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2574, 430, '8.2', '02/15/2007', '05/15/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2575, 430, '8.11', '11/06/2006', '05/06/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2576, 430, '8.0', '08/15/2006', '11/15/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2577, 430, '7.6', '05/15/2006', '08/15/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2578, 430, '7.5', '02/08/2006', '05/08/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2579, 430, '7.4', '11/15/2005', '02/15/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2580, 430, '7.3', '08/16/2005', '11/16/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2581, 430, '7.2', '05/14/2005', '08/14/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2582, 430, '7.1', '02/14/2005', '05/14/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2583, 430, '7.0', '11/15/2004', '02/15/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2584, 430, '6.4', '08/12/2004', '11/12/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2585, 430, '6.3', '05/15/2004', '08/15/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2586, 430, '6.2', '02/15/2004', '05/15/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2587, 430, '6.1', '11/15/2003', '02/15/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2588, 430, '6.0', '08/15/2003', '11/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2589, 430, '5.7', '05/15/2003', '08/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2590, 430, '5.6', '02/15/2003', '05/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2591, 430, '5.5', '11/15/2002', '02/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2592, 430, '5.4', '08/12/2002', '11/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2593, 430, '5.3', '05/12/2002', '08/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2594, 430, '5.2', '02/12/2002', '05/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2595, 430, '5.1', '11/07/2001', '02/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2596, 430, '5.0', '08/17/2001', '11/15/2002'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2597, 430, '4.4', '04/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2598, 430, '4.3', '01/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2599, 430, '4.2', '10/16/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2600, 430, '4.1', '08/15/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2601, 430, '4.0', '03/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2602, 433, '1', '06/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2603, 433, '2', '10/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2604, 433, '3', '02/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2605, 433, '4', '03/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2606, 322, '1', '10/01/1956', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2607, 322, '2', '12/31/1958', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2608, 322, '3', '12/31/1958', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2609, 322, '4', '12/31/1961', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2610, 322, '5.0', '12/31/1968', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2611, 322, '5.1', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2612, 322, '6', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2613, 322, '66', '12/31/1966', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2614, 322, '77', '12/31/1978', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2615, 322, '90', '12/31/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2616, 322, '95', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2617, 322, '2003', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2618, 322, '2008', '09/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2619, 322, '2018', '11/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2620, 589, 'ES1', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2621, 589, 'ES2', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2622, 589, 'ES3', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2623, 589, 'ES4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2624, 589, 'ES5', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2625, 589, 'ES6', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2626, 343, '1', '12/31/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2627, 343, '2', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2628, 599, 'pascal', '12/31/2070', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2629, 599, 'Object pascal', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2630, 599, 'extended pascal', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2631, 599, 'Free pascal', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2632, 599, 'smalltalk80', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2633, 363, 'ANSI smalltalk', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2634, 363, 'Ambrai smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2635, 363, 'Dolphin smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2636, 363, 'GNU smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2637, 363, 'LSWsvision smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2638, 363, 'Little smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2639, 363, 'Resilient embedded smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2640, 363, 'Object studio smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2641, 363, 'Pocket smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2642, 363, 'Public Domain smalltalk (PDST)', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2643, 363, 'Slate smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2644, 363, 'Smalltalk Express', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2645, 363, 'smalltalk MT', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2646, 363, 'smalltalk X', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2647, 363, 'Squat smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2648, 363, 'Squeak smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2649, 363, 'Strong smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2650, 363, 'Susie smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2651, 363, 'Talks2 smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2652, 363, 'VisualWorks smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2653, 363, 'VisualAge smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2654, 363, 'Vmx Quicknet smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2655, 363, 'Zoku smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2656, 324, '0.1.1', '07/02/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2657, 324, '0.2.0', '07/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2658, 324, '0.3.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2659, 324, '0.4.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2660, 324, '0.5.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2661, 324, '0.6.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2662, 324, '0.7.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2663, 324, '0.8.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2664, 324, '0.9.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2665, 324, '0.10.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2666, 324, '0.11.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2667, 324, '0.12.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2668, 324, '0.13.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2669, 324, '14', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2670, 324, '14.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2671, 324, '14.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2672, 324, '14.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2673, 324, '14.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2674, 324, '14.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2675, 324, '15', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2676, 360, '72', '01/31/1972', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2677, 360, '76', '07/31/1976', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2678, 360, '79.5', '04/30/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2679, 360, '82.4', '01/31/1983', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2680, 360, '4.06', '03/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2681, 360, '5.03', '07/31/1986', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2682, 360, '6.01', '01/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2683, 360, '6.03', '03/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2684, 360, '6.06', '03/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2685, 360, '6.07', '04/30/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2686, 360, '6.08', '03/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2687, 360, '6.09', '10/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2688, 360, '6.1', '10/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2689, 360, '6.11', '10/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2690, 360, '6.12', '11/30/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2691, 360, '7', '10/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2692, 360, '8', '11/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2693, 360, '8.1', '07/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2694, 360, '8.2', '03/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2695, 360, '9', '10/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2696, 360, '9.1', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2697, 360, '9.1.3', '08/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2698, 360, '9.2', '03/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2699, 360, '9.2M2', '04/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2700, 360, '9.3', '07/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2701, 360, '9.3M2', '08/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2702, 360, '9.4', '07/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2703, 360, '9.4M1', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2704, 360, '9.4M2', '08/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2705, 360, '9.4M3', '07/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2706, 360, '9.4M4', '11/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2707, 360, '9.4M5', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2708, 360, '9.4M6', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2709, 360, '9.4M7', '08/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2710, 367, '0.8', '10/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2711, 367, '0.9', '06/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2712, 367, '1', '04/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2713, 367, '1.1', '10/06/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2714, 367, '1.3', '11/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2715, 367, '1.4', '01/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2716, 367, '1.5', '07/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2717, 367, '1.6', '09/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2718, 367, '1.7', '11/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2719, 367, '1.8', '02/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2720, 367, '2', '09/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2721, 367, '2.1', '11/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2722, 367, '2.2', '02/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2723, 367, '2.3', '04/27/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2724, 367, '2.4', '06/27/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2725, 367, '2.5', '08/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2726, 367, '2.6', '10/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2727, 367, '2.7', '01/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2728, 367, '2.8', '03/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2729, 367, '2.9', '05/14/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2730, 367, '3', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2731, 367, '3.1', '09/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2732, 367, '3.2', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2733, 367, '3.3', '01/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2734, 367, '3.4', '03/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2735, 367, '3.5', '05/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2736, 367, '3.6', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2737, 367, '3.7', '11/05/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2738, 367, '3.8', '02/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2739, 367, '3.9', '05/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2740, 367, '4', '08/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2741, 367, '4.1', '11/19/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2742, 367, '4.2', '02/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2743, 367, '4.3', '05/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2744, 367, '4.4', '08/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2745, 584, 'JDK Beta', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2746, 584, '1.0', '01/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2747, 584, '1.1', '02/01/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2748, 584, '1.2', '12/01/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2749, 584, '1.3', '05/01/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2750, 584, '1.4', '02/01/2002', '10/01/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2751, 584, '5.0', '09/01/2004', '11/01/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2752, 584, '6', '12/01/2006', '04/01/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2753, 584, '7', '07/01/2011', '04/01/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2754, 584, '8', '03/01/2014', '12/01/1930'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2755, 584, '9', '09/01/2017', '03/01/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2756, 584, '10', '03/01/2018', '09/01/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2757, 584, '11', '09/01/2018', '10/01/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2758, 584, '12', '03/01/2019', '09/01/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2759, 584, '13', '09/01/2019', '03/01/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2760, 584, '14', '03/01/2020', '09/01/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2761, 584, '15', '09/01/2020', '03/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2762, 584, '16', '03/01/2021', '09/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2763, 584, '17', '09/01/2021', '09/01/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2764, 584, '18', '03/01/2022', '09/01/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2765, 584, '19', '09/01/2022', '03/01/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2766, 584, '20', '03/01/2023', '01/09/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2767, 584, '21', '09/01/2023', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2768, 585, '1', '12/18/1987', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2769, 585, '4', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2770, 585, '5', '10/17/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2771, 585, '5.001', '03/13/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2772, 585, '5.002', '02/29/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2773, 585, '5.003', '06/25/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2774, 585, '5.004', '05/15/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2775, 585, '5.005', '07/22/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2776, 585, '5.6', '03/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2777, 585, '5.8', '07/18/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2778, 585, '5.10.0', '12/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2779, 585, '5.11', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2780, 585, '5.12', '04/12/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2781, 585, '5.12.3', '01/21/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2782, 585, '5.12.4', '06/20/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2783, 585, '5.12.5', '11/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2784, 585, '5.14', '05/14/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2785, 585, '5.16', '05/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2786, 585, '5.18', '05/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2787, 585, '5.20.0', '05/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2788, 368, '7.0', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2789, 368, '7.1', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2790, 368, '8.0', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2791, 368, '9.0', '11/19/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2792, 368, '10.0', '04/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2793, 368, '11.0', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2794, 368, '12.0', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2795, 368, '14.0', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2796, 368, '15.0', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2797, 368, '16.0', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2798, 315, '1', '09/01/1987', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2799, 315, '2', '04/01/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2800, 315, '3', '10/01/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2801, 315, '4', '01/01/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2802, 315, '5', '03/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2803, 315, '5.45.5', '02/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2804, 364, '1.0', '09/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2805, 364, '1.1', '10/22/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2806, 364, '1.2', '04/08/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2807, 364, '2.0', '09/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2808, 364, '2.1', '10/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2809, 364, '2.2', '03/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2810, 364, '2.2.1', '05/03/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2811, 364, '3.0', '09/13/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2812, 364, '3.0.1', '10/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2813, 364, '3.0.2', '12/13/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2814, 364, '3.1', '03/27/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2815, 364, '3.1.1', '04/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2816, 364, '4.0', '09/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2817, 364, '4.0.2', '11/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2818, 364, '4.0.3', '12/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2819, 364, '4.1', '03/29/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2820, 364, '4.1.1', '05/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2821, 364, '4.1.2', '05/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2822, 364, '4.1.3', '07/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2823, 364, '4.2', '09/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2824, 364, '4.2.1', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2825, 364, '4.2.2', '02/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2826, 364, '4.2.3', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2827, 364, '4.2.4', '03/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2828, 364, '5.0', '03/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2829, 364, '5.0.1', '04/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2830, 364, '5.0.2', '07/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2831, 364, '5.0.3', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2832, 364, '5.1', '09/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2833, 364, '5.1.1', '10/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2834, 364, '5.1.2', '11/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2835, 364, '5.1.3', '12/13/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2836, 364, '5.1.4', '01/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2837, 364, '5.1.5', '03/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2838, 364, '5.2', '03/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2839, 364, '5.2.1', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2840, 364, '5.2.2', '04/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2841, 364, '5.2.3', '04/29/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2842, 364, '5.2.4', '05/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2843, 364, '5.2.5', '08/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2844, 364, '5.3', '09/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2845, 364, '5.3.1', '11/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2846, 364, '5.3.2', '12/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2847, 364, '5.3.3', '01/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2848, 364, '5.4', '04/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2849, 364, '5.4.1', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2850, 364, '5.4.2', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2851, 364, '5.4.3', '09/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2852, 364, '5.5', '09/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2853, 341, 'ACL2', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2854, 341, 'Arc', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2855, 341, 'AutoLISP', '12/31/1986', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2856, 341, 'BBN LISP', '12/31/2066', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2857, 341, 'Chez Scheme', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2858, 341, 'Chicken', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2859, 341, 'Clojure', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2860, 341, 'ANSI Common Lisp', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2861, 341, 'Common Lisp', '12/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2862, 341, 'Dylan', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2863, 341, 'Emacs Lisp', '12/31/1976', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2864, 341, 'EuLisp', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2865, 341, 'Franz Lisp', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2866, 341, 'Game Oriented Assembly Lisp (GOAL)', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2867, 341, 'Hy', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2868, 341, 'Ikarus', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2869, 341, 'Interlisp', '12/31/2067', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2870, 341, 'ISLISP', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2871, 341, 'Le Lisp', '12/31/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2872, 341, 'Lisp Flavored Erlang (LFE)', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2873, 341, 'Lisp Machine Lisp', '12/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2874, 341, 'Maclisp', '12/31/2066', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2875, 341, 'MultiLisp', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2876, 341, 'NIL', '12/31/2070', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2877, 341, 'OpenLisp', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2878, 341, 'Owl Lisp', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2879, 341, 'PicoLisp', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2880, 341, 'Portable Standard Lisp', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2881, 341, 'Racket', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2882, 341, 'Scheme', '12/31/2070', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2883, 341, 'Scheme In One Defun (SIOD)', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2884, 341, 'SKILL', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2885, 341, 'TXR Lisp', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2886, 587, '3.10.0', '10/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2887, 587, '3.9.7', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2888, 587, '3.9.6', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2889, 587, '3.9.5', '05/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2890, 587, '3.9.4', '04/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2891, 587, '3.9.3', '04/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2892, 587, '3.9.2', '02/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2893, 587, '3.9.1', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2894, 587, '3.9.0', '10/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2895, 587, '3.8.12', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2896, 587, '3.8.11', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2897, 587, '3.8.10', '05/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2898, 587, '3.8.9', '04/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2899, 587, '3.8.8', '02/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2900, 587, '3.8.7', '12/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2901, 587, '3.8.6', '09/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2902, 587, '3.8.5', '07/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2903, 587, '3.8.4', '07/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2904, 587, '3.8.3', '05/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2905, 587, '3.8.2', '02/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2906, 587, '3.8.1', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2907, 587, '3.8.0', '10/14/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2908, 587, '3.7.12', '09/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2909, 587, '3.7.11', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2910, 587, '3.7.10', '02/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2911, 587, '3.7.9', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2912, 587, '3.7.8', '06/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2913, 587, '3.7.7', '03/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2914, 587, '3.7.6', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2915, 587, '3.7.5', '10/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2916, 587, '3.7.4', '07/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2917, 587, '3.7.3', '03/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2918, 587, '3.7.2', '12/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2919, 587, '3.7.1', '10/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2920, 587, '3.7.0', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2921, 587, '3.6.15', '09/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2922, 587, '3.6.14', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2923, 587, '3.6.13', '02/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2924, 587, '3.6.12', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2925, 587, '3.6.11', '06/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2926, 587, '3.6.10', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2927, 587, '3.6.9', '07/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2928, 587, '3.6.8', '12/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2929, 587, '3.6.7', '10/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2930, 587, '3.6.6', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2931, 587, '3.6.5', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2932, 587, '3.6.4', '12/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2933, 587, '3.6.3', '10/03/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2934, 587, '3.6.2', '07/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2935, 587, '3.6.1', '03/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2936, 587, '3.6.0', '12/23/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2937, 587, '3.5.10', '09/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2938, 587, '3.5.8', '11/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2939, 587, '3.5.7', '03/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2940, 587, '3.5.6', '08/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2941, 587, '3.5.5', '02/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2942, 587, '3.5.4', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2943, 587, '3.5.3', '01/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2944, 587, '3.5.2', '06/27/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2945, 587, '3.5.1', '12/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2946, 587, '3.5.0', '09/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2947, 587, '3.4.10', '03/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2948, 587, '3.4.9', '08/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2949, 587, '3.4.8', '02/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2950, 587, '3.4.7', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2951, 587, '3.4.6', '01/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2952, 587, '3.4.5', '06/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2953, 587, '3.4.4', '12/06/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2954, 587, '3.4.3', '02/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2955, 587, '3.4.2', '10/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2956, 587, '3.4.1', '05/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2957, 587, '3.4.0', '03/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2958, 587, '3.3.7', '09/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2959, 587, '3.3.6', '10/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2960, 587, '3.3.5', '03/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2961, 587, '3.3.4', '02/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2962, 587, '3.3.3', '11/17/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2963, 587, '3.3.2', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2964, 587, '3.3.1', '04/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2965, 587, '3.3.0', '09/29/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2966, 587, '3.2.6', '10/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2967, 587, '3.2.5', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2968, 587, '3.2.4', '04/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2969, 587, '3.2.3', '04/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2970, 587, '3.2.2', '09/04/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2971, 587, '3.2.1', '07/10/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2972, 587, '3.2', '02/20/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2973, 587, '3.1.5', '04/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2974, 587, '3.1.4', '06/11/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2975, 587, '3.1.3', '11/27/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2976, 587, '3.1.2', '03/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2977, 587, '3.1.1', '08/17/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2978, 587, '3.1', '06/27/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2979, 587, '3.0.1', '02/13/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2980, 587, '3', '12/03/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2981, 587, '2.7.18', '04/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2982, 587, '2.7.17', '10/19/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2983, 587, '2.7.16', '03/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2984, 587, '2.7.15', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2985, 587, '2.7.14', '09/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2986, 587, '2.7.13', '12/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2987, 587, '2.7.12', '06/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2988, 587, '2.7.11', '12/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2989, 587, '2.7.10', '05/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2990, 587, '2.7.9', '12/10/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2991, 587, '2.7.8', '07/01/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2992, 587, '2.7.7', '05/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2993, 587, '2.7.6', '11/10/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2994, 587, '2.7.5', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2995, 587, '2.7.4', '04/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2996, 587, '2.7.3', '04/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2997, 587, '2.7.2', '06/11/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2998, 587, '2.7.1', '11/27/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2999, 587, '2.7', '07/04/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3000, 587, '2.6.9', '10/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3001, 587, '2.6.8', '04/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3002, 587, '2.6.7', '06/03/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3003, 587, '2.6.6', '08/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3004, 587, '2.6.5', '03/19/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3005, 587, '2.6.4', '10/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3006, 587, '2.6.3', '10/02/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3007, 587, '2.6.2', '04/14/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3008, 587, '2.6.1', '12/04/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3009, 587, '2.6', '10/01/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3010, 587, '2.5.4', '12/23/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3011, 587, '2.5.3', '12/19/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3012, 587, '2.5.2', '02/21/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3013, 587, '2.5.1', '04/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3014, 587, '2.5', '09/19/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3015, 587, '2.4.4', '10/18/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3016, 587, '2.4.3', '03/29/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3017, 587, '2.4.2', '09/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3018, 587, '2.4.1', '03/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3019, 587, '2.4', '11/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3020, 587, '2.3.5', '02/08/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3021, 587, '2.3.4', '05/27/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3022, 587, '2.3.3', '12/19/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3023, 587, '2.3.2', '10/03/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3024, 587, '2.3.1', '09/23/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3025, 587, '2.3', '07/29/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3026, 587, '2.2.3', '05/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3027, 587, '2.2.2', '10/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3028, 587, '2.2.1', '04/10/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3029, 587, '2.2.0', '03/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3030, 587, '2.2', '12/21/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3031, 587, '2.1.3', '04/08/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3032, 587, '2.1.2', '01/16/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3033, 587, '2.1.1', '07/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3034, 587, '2.1', '04/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3035, 587, '2.0.1', '06/22/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3036, 587, '2', '10/16/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3037, 587, '1.6', '09/05/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3038, 587, '1.5.2p2', '03/22/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3039, 587, '1.5.2p1', '07/06/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3040, 587, '1.5.2', '04/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3041, 587, '1.5.1p1', '08/06/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3042, 587, '1.5.1', '04/14/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3043, 587, '1.5', '02/17/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3044, 587, '1.4', '10/25/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3045, 587, '1', '01/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3046, 355, '4.1.1', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3047, 355, '4.1.0', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3048, 355, '4.0.5', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3049, 355, '4.0.4', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3050, 355, '4.0.3', '10/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3051, 355, '4.0.2', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3052, 355, '4.0.1', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3053, 355, '4.0.0', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3054, 355, '3.6.3', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3055, 355, '3.6.2', '12/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3056, 355, '3.6.1', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3057, 355, '3.6.0', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3058, 355, '3.5.3', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3059, 355, '3.5.2', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3060, 355, '3.5.1', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3061, 355, '3.5.0', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3062, 355, '3.4.4', '03/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3063, 355, '3.4.3', '11/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3064, 355, '3.4.2', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3065, 355, '3.4.1', '06/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3066, 355, '3.4.0', '04/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3067, 355, '3.3.3', '03/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3068, 355, '3.3.2', '10/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3069, 355, '3.3.1', '06/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3070, 355, '3.3.0', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3071, 355, '3.2.5', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3072, 355, '3.2.4', '03/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3073, 355, '3.2.3', '12/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3074, 355, '3.2.2', '08/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3075, 355, '3.2.1', '06/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3076, 355, '3.2.0', '04/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3077, 355, '3.1.3', '03/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3078, 355, '3.1.2', '10/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3079, 355, '3.1.1', '07/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3080, 355, '3.1.0', '04/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3081, 355, '3.0.3', '03/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3082, 355, '3.0.2', '09/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3083, 355, '3.0.1', '05/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3084, 355, '3.0.0', '04/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3085, 355, '2.15.3', '03/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3086, 355, '2.15.2', '10/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3087, 355, '2.15.1', '06/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3088, 355, '2.15.0', '03/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3089, 355, '2.14.2', '02/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3090, 355, '2.14.1', '12/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3091, 355, '2.14.0', '11/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3092, 355, '2.13.2', '09/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3093, 355, '2.13.1', '07/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3094, 355, '2.13.0', '04/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3095, 355, '2.12.2', '02/28/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3096, 355, '2.12.1', '12/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3097, 355, '2.12.0', '10/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3098, 355, '2.11.1', '05/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3099, 355, '2.11.0', '04/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3100, 355, '2.10.1', '12/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3101, 355, '2.10.0', '10/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3102, 355, '2.9.2', '08/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3103, 355, '2.9.1', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3104, 355, '2.9.0', '04/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3105, 355, '2.8.1', '12/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3106, 355, '2.8.0', '10/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3107, 355, '2.7.2', '08/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3108, 355, '2.7.1', '06/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3109, 355, '2.7.0', '04/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3110, 355, '2.6.2', '02/28/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3111, 355, '2.6.1', '11/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3112, 355, '2.6.0', '10/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3113, 355, '2.5.1', '07/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3114, 355, '2.5.0', '04/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3115, 355, '2.4.1', '12/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3116, 355, '2.4.0', '10/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3117, 355, '2.3.1', '06/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3118, 355, '2.3.0', '04/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3119, 355, '2.2.1', '12/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3120, 355, '2.2.0', '10/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3121, 355, '2.1.1', '06/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3122, 355, '2.1.0', '04/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3123, 355, '2.0.1', '11/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3124, 355, '2.0.0', '10/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3125, 355, '1.9.1', '06/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3126, 355, '1.8.1', '11/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3127, 355, '1.7.1', '06/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3128, 355, '1.6.2', '01/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3129, 355, '1.5.1', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3130, 355, '1.4.1', '01/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3131, 355, '1.3.1', '09/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3132, 355, '1.2.2', '03/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3133, 355, '1.0.0', '02/28/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3134, 588, '3.0.2', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3135, 588, '2.7.4', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3136, 588, '2.6.8', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3137, 588, '3.0.1', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3138, 588, '2.7.3', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3139, 588, '2.6.7', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3140, 588, '2.5.9', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3141, 588, '3.0.0', '12/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3142, 588, '3.0.0src1', '12/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3143, 588, '3.0.0spreview2', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3144, 588, '2.7.2', '10/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3145, 588, '3.0.0spreview1', '09/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3146, 588, '2.7.1', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3147, 588, '2.6.6', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3148, 588, '2.5.8', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3149, 588, '2.4.10', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3150, 588, '2.7.0', '12/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3151, 588, '2.7.0src2', '12/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3152, 588, '2.7.0src1', '12/17/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3153, 588, '2.7.0spreview3', '11/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3154, 588, '2.7.0spreview2', '10/22/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3155, 588, '2.4.9', '10/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3156, 588, '2.6.5', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3157, 588, '2.5.7', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3158, 588, '2.4.8', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3159, 588, '2.6.4', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3160, 588, '2.5.6', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3161, 588, '2.4.7', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3162, 588, '2.7.0spreview1', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3163, 588, '2.6.3', '04/17/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3164, 588, '2.4.6', '04/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3165, 588, '2.5.5', '03/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3166, 588, '2.6.2', '03/13/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3167, 588, '2.5.4', '03/13/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3168, 588, '2.6.1', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3169, 588, '2.6.0', '12/25/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3170, 588, '2.6.0src2', '12/15/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3171, 588, '2.6.0src1', '12/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3172, 588, '2.6.0spreview3', '11/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3173, 588, '2.5.3', '10/18/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3174, 588, '2.5.2', '10/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3175, 588, '2.4.5', '10/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3176, 588, '2.3.8', '10/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3177, 588, '2.6.0spreview2', '05/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3178, 588, '2.5.1', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3179, 588, '2.4.4', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3180, 588, '2.3.7', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3181, 588, '2.2.10', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3182, 588, '2.6.0spreview1', '02/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3183, 588, '2.5.0', '12/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3184, 588, '2.5.0src1', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3185, 588, '2.4.3', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3186, 588, '2.3.6', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3187, 588, '2.2.9', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3188, 588, '2.5.0spreview1', '10/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3189, 588, '2.4.2', '09/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3190, 588, '2.3.5', '09/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3191, 588, '2.2.8', '09/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3192, 588, '2.3.4', '03/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3193, 588, '2.2.7', '03/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3194, 588, '2.4.1', '03/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3195, 588, '2.4.0', '12/25/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3196, 588, '2.4.0src1', '12/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3197, 588, '2.3.3', '11/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3198, 588, '2.3.2', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3199, 588, '2.2.6', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3200, 588, '2.4.0spreview3', '11/09/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3201, 588, '2.4.0spreview2', '09/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3202, 588, '2.4.0spreview1', '06/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3203, 588, '2.3.1', '04/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3204, 588, '2.2.5', '04/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3205, 588, '2.1.10', '04/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3206, 588, '2.1.9', '03/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3207, 588, '2.3.0', '12/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3208, 588, '2.2.4', '12/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3209, 588, '2.1.8', '12/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3210, 588, '2.0.0sp648', '12/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3211, 588, '2.3.0spreview2', '12/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3212, 588, '2.3.0spreview1', '11/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3213, 588, '2.2.3', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3214, 588, '2.1.7', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3215, 588, '2.0.0sp647', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3216, 588, '2.2.2', '04/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3217, 588, '2.1.6', '04/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3218, 588, '2.0.0sp645', '04/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3219, 588, '2.2.1', '03/03/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3220, 588, '2.0.0sp643', '02/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3221, 588, '2.2.0', '12/25/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3222, 588, '2.2.0src1', '12/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3223, 588, '2.2.0spreview2', '11/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3224, 588, '2.1.5', '11/13/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3225, 588, '2.0.0sp598', '11/13/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3226, 588, '1.9.3sp551', '11/13/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3227, 588, '2.1.4', '10/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3228, 588, '2.0.0sp594', '10/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3229, 588, '1.9.3sp550', '10/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3230, 588, '2.1.3', '09/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3231, 588, '2.0.0sp576', '09/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3232, 588, '2.2.0spreview1', '09/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3233, 588, '1.9.2sp330', '08/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3234, 588, '1.9.3sp547', '05/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3235, 588, '2.1.2', '05/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3236, 588, '2.0.0sp481', '05/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3237, 588, '2.1.1', '02/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3238, 588, '2.0.0sp451', '02/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3239, 588, '1.9.3sp545', '02/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3240, 588, '2.1.0', '12/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3241, 588, '2.1.0src1', '12/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3242, 588, '2.1.0spreview2', '11/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3243, 588, '2.0.0sp353', '11/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3244, 588, '1.9.3sp484', '11/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3245, 588, '2.1.0spreview1', '09/23/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3246, 588, '2.0.0sp247', '06/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3247, 588, '1.9.3sp448', '06/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3248, 588, '1.8.7sp374', '06/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3249, 588, '2.0.0sp195', '05/14/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3250, 588, '1.9.3sp429', '05/14/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3251, 588, '2.0.0', '02/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3252, 588, '1.9.3sp392', '02/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3253, 588, '2.0.0src2', '02/08/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3254, 588, '1.9.3sp385', '02/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3255, 588, '1.9.3sp374', '01/17/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3256, 588, '1.9.3sp362', '12/25/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3257, 588, '1.9.3sp327', '11/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3258, 588, '1.9.3sp286', '10/12/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3259, 588, '1.8.7sp370', '06/29/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3260, 588, '1.9.2sp320', '04/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3261, 588, '1.9.3sp194', '04/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3262, 588, '1.9.3sp125', '02/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3263, 588, '1.9.3', '10/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3264, 588, '1.9.3src1', '09/24/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3265, 588, '1.9.3spreview1', '08/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3266, 588, '1.9.2sp290', '07/15/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3267, 588, '1.8.7sp352', '07/02/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3268, 588, '1.9.2sp136', '12/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3269, 588, '1.8.7sp330', '12/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3270, 588, '1.9.2', '08/18/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3271, 588, '1.9.1sp430', '08/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3272, 588, '1.8.7sp302', '08/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3273, 588, '1.9.2src2', '07/11/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3274, 588, '1.9.2src1', '07/02/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3275, 588, '1.9.1sp429', '07/02/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3276, 588, '1.8.7sp299', '06/23/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3277, 588, '1.8.7sp248', '12/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3278, 588, '1.9.1sp376', '12/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3279, 588, '1.9.2spreview1', '07/20/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3280, 588, '1.9.1sp243', '07/20/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3281, 588, '1.9.1sp129', '05/12/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3282, 588, '1.8.7sp160', '04/18/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3283, 588, '1.8.6sp368', '04/18/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3284, 588, '1.9.1', '01/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3285, 588, '1.9.1spreview1', '10/28/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3286, 588, '1.8.7sp72', '08/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3287, 588, '1.8.6sp287', '08/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3288, 588, '1.8.7', '05/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3289, 588, '1.9.0', '12/25/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3290, 588, '1.8.6', '03/12/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3291, 588, '1.8.5', '08/29/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3292, 588, '1.8.4', '12/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3293, 588, '1.8.4spreview2', '12/14/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3294, 588, '1.8.3', '09/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3295, 588, '1.8.2', '12/26/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3296, 588, '1.8.2spreview4', '12/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3297, 588, '1.8.2spreview3', '11/08/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3298, 588, '1.8.2spreview2', '07/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3299, 588, '1.8.2spreview1', '07/21/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3300, 588, '1.8.0', '08/04/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3301, 588, '1.6.7', '03/01/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3302, 323, '1', '03/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3303, 323, '1.1', '05/13/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3304, 323, '1.2', '12/01/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3305, 323, '1.3', '06/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3306, 323, '1.4', '12/10/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3307, 323, '1.5', '08/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3308, 323, '1.6', '02/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3309, 323, '1.7', '08/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3310, 323, '1.8', '02/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3311, 323, '1.9', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3312, 323, '1.10', '02/16/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3313, 323, '1.11', '08/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3314, 323, '1.12.1', '02/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3315, 323, '1.13.1', '09/03/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3316, 323, '1.14', '02/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3317, 323, '1.15', '08/11/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3318, 323, '1.16', '02/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3319, 323, '1.17', '08/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3320, 325, '1', '01/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3321, 325, '1.2', '12/07/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3322, 325, '1.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3323, 325, '2', '07/02/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3324, 325, '3', '02/07/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3325, 325, '4.0', '09/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3326, 333, '1.2', '12/12/1999', '05/22/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3327, 333, '1.3', '09/24/2001', '06/28/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3328, 333, '1.4', '11/11/2003', '08/29/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3329, 333, '5', '05/11/2006', '08/11/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3330, 333, '6', '12/10/2009', '12/19/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3331, 333, '7', '05/28/2013', '04/30/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3332, 333, '8', '08/31/2017', '06/23/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3333, 333, '9', '11/22/2020', '12/10/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3334, 333, '9.1', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3335, 583, '98', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3336, 583, '03', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3337, 583, '11', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3338, 583, '14', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3339, 583, '17', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3340, 583, '20', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3341, 344, 'progress 4gl', '12/31/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3342, 344, '10.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3343, 586, '3.0.0', '08/20/2020', '08/20/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3344, 586, '4', '05/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3345, 586, '4.1', '12/10/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3346, 586, '4.2', '04/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3347, 586, '4.3', '12/27/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3348, 586, '4.4', '07/11/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3349, 586, '5', '07/13/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3350, 586, '5.1', '11/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3351, 586, '5.2', '11/02/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3352, 586, '5.3', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3353, 586, '5.4', '03/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3354, 586, '5.5', '06/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3355, 586, '5.6', '08/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3356, 586, '7', '12/03/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3357, 586, '7.1', '12/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3358, 586, '7.2', '11/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3359, 586, '7.3', '12/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3360, 586, '7.4', '11/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3361, 586, '8', '11/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3362, 311, '3', '06/30/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3363, 311, '4', '11/30/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3364, 311, '4.5', '11/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3365, 311, '5', '06/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3366, 311, '6', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3367, 311, '7', '02/07/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3368, 311, '8', '06/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3369, 311, '9', '10/05/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3370, 311, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3371, 311, '11', '04/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3372, 311, '2016', '02/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3373, 311, '2018', '07/12/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3374, 311, '2021', '11/11/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3375, 362, '1.0.0', '12/08/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3376, 362, '1.1.0', '02/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3377, 362, '1.1.1', '03/23/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3378, 362, '1.2.0', '06/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3379, 362, '1.3.0', '09/16/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3380, 362, '1.4.0', '06/20/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3381, 362, '2', '03/12/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3382, 362, '2.1.0', '03/17/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3383, 362, '2.1.8', '08/23/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3384, 362, '2.3.0', '11/23/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3385, 362, '2.4.0', '03/09/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3386, 362, '2.5.0', '05/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3387, 362, '2.6.0', '07/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3388, 362, '2.7.0', '02/07/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3389, 362, '2.8.0', '07/14/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3390, 362, '2.9.0', '05/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3391, 362, '2.1', '01/04/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3392, 313, '1', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3393, 313, '2', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3394, 313, '3', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3395, 313, '4', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3396, 313, '5', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3397, 313, '6', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3398, 313, '7', '08/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3399, 313, '8', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3400, 313, '2005', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3401, 313, '2006', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3402, 313, 'Turbo', '09/06/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3403, 313, 'Transfer', '02/08/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3404, 313, '2007', '03/16/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3405, 313, '2009', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3406, 313, '2010', '08/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3407, 313, 'XE', '08/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3408, 313, 'XE1', '01/27/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3409, 313, 'XE2', '09/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3410, 313, 'XE3', '09/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3411, 313, 'XE4', '04/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3412, 313, 'XE5', '09/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3413, 313, 'XE6', '04/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3414, 313, 'XE7', '09/02/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3415, 313, 'XE8', '04/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3416, 313, '10', '08/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3417, 313, '10.1', '04/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3418, 313, '10.1.1', '09/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3419, 313, '10.1.2', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3420, 313, '10.2', '03/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3421, 313, '10.2.1', '08/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3422, 313, '10.2.2', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3423, 313, '10.2.3', '03/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3424, 313, '10.3', '11/21/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3425, 313, '10.3.1', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3426, 313, '10.3.2', '07/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3427, 313, '10.3.3', '11/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3428, 313, '10.4', '05/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3429, 313, '10.4.1', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3430, 313, '10.4.2', '02/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3431, 313, '11', '09/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3432, 594, '60', '05/29/1959', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3433, 594, '65', '12/31/1965', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3434, 594, '74', '12/31/1974', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3435, 594, '85', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3436, 594, '2002', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3437, 594, '2014', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3438, 580, '1.01', '11/20/1985', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3439, 580, '1.02', '05/14/1986', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3440, 580, '1.03', '08/21/1986', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3441, 580, '1.04', '04/10/1987', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3442, 580, '2.01', '12/09/1987', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3443, 580, '2.03', '12/09/1987', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3444, 580, '2.1', '05/27/1988', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3445, 580, '2.11', '03/13/1989', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3446, 580, '3', '05/22/1990', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3447, 580, '3.1', '04/06/1992', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3448, 580, ' NT 3.1', '07/27/1993', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3449, 580, '3.11', '11/08/1993', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3450, 580, '3.2', '11/22/1993', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3451, 580, 'NT 3.5', '09/21/1994', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3452, 580, 'NT 3.51', '08/24/1995', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3453, 580, '95', '08/24/1996', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3454, 580, 'NT 4.0', '06/25/1998', '06/30/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3455, 580, '98', '05/05/1999', '07/11/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3456, 580, '2000', '02/17/2000', '07/13/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3457, 580, 'Me', '09/14/2000', '07/11/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3458, 580, 'XP', '10/25/2001', '04/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3459, 580, 'Vista', '01/30/2007', '04/11/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3460, 580, '7', '10/22/2009', '01/14/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3461, 580, '8', '10/26/2012', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3462, 580, '8.1', '10/17/2013', '01/10/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3463, 580, '10', '07/29/2015', '10/14/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3464, 580, '11', '10/05/2021', '10/10/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3465, 697, '3.8.5', '03/05/2022', ''); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3466, 697, '3.8.4', '11/12/2021', '03/05/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3467, 697, '3.8.3', '09/27/2021', '11/12/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3468, 697, '3.8.1', '04/04/2021', '09/27/2021'); + +-- Table: openshift_baseos_images CREATE TABLE openshift_baseos_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -12717,7 +12798,9 @@ CREATE TABLE openshift_baseos_images ( DockerImageType text, FOREIGN KEY (OS) REFERENCES entity_types (id) ); -INSERT INTO openshift_baseos_images VALUES(1,'Red Hat Enterprise Linux',434,'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af','','',''); +INSERT INTO openshift_baseos_images (id, container_name, OS, OpenShift_Correspondent_Image_URL, Notes, OpenShiftStatus, DockerImageType) VALUES (1, 'Red Hat Enterprise Linux', 434, 'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af', '', '', ''); + +-- Table: openshift_images CREATE TABLE openshift_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -12740,137 +12823,602 @@ CREATE TABLE openshift_images ( FOREIGN KEY (runlib) REFERENCES entity_types (id), FOREIGN KEY (runtime) REFERENCES entity_types (id) ); -INSERT INTO openshift_images VALUES(1,'IBM Maximo Asset Management',434,NULL,NULL,70,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ema-maximo-integration/5d79b41f3d73db51b9ba7ea7','App'); -INSERT INTO openshift_images VALUES(2,'OpenLDAP',434,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/netcool-openldap-16/5d1a1e94702c56364a5d4101','App'); -INSERT INTO openshift_images VALUES(3,'gcc',576,583,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-toolchain/5ea311fd5a13466876a077ca','Lang'); -INSERT INTO openshift_images VALUES(4,'golang_Linux',434,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/go-toolset/5b9c810add19c70b45cbd666','Lang(OS specific)'); -INSERT INTO openshift_images VALUES(5,'haproxy',434,NULL,NULL,NULL,264,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-haproxy-router/5cd9b367bed8bd5717d4fdaa','App Server'); -INSERT INTO openshift_images VALUES(6,'httpd',434,NULL,NULL,NULL,259,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/httpd-24-rhel7/57ea8d049c624c035f96f42e','App Server'); -INSERT INTO openshift_images VALUES(7,'jenkins',434,NULL,NULL,90,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b','App'); -INSERT INTO openshift_images VALUES(8,'MarkLogic',434,NULL,NULL,97,NULL,NULL,NULL,NULL,'https://access.redhat.com/containers/#/docker.io/store/marklogicdb/marklogic-server','App'); -INSERT INTO openshift_images VALUES(9,'memcached',434,NULL,NULL,98,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhacm2/memcached-rhel8/5f523955ee8349144fa8634a','App'); -INSERT INTO openshift_images VALUES(10,'Java SE JRE_Linux',434,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4','Runtime(OS specific)'); -INSERT INTO openshift_images VALUES(11,'Microsoft SQL Server',434,NULL,NULL,581,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/mssql/rhel/server/5ba50865f5a0de06555a2ee7','App'); -INSERT INTO openshift_images VALUES(12,'Mongo_Linux',434,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rh-marketplace/mongodb-enterprise-advanced-ibm-bundle/5f84ce93ecb524508951386d','App(OS specific)'); -INSERT INTO openshift_images VALUES(13,'mysql',434,NULL,NULL,122,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/mysql-80/5ba0ad4cdd19c70b45cbf48c','App'); -INSERT INTO openshift_images VALUES(14,'nginx',434,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/nginx-118/5f521a46e05bbcd88f128b64','App Server'); -INSERT INTO openshift_images VALUES(15,'node',576,NULL,NULL,NULL,NULL,NULL,NULL,507,'https://catalog.redhat.com/software/containers/rhel8/nodejs-14/5ed76a59d70cc50e69c2f891','Runtime'); -INSERT INTO openshift_images VALUES(16,'php',576,586,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/php-74/5f521244e05bbcd88f128b63','Lang'); -INSERT INTO openshift_images VALUES(17,'Python_Linux',434,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/python-27-rhel7/57ea8d049c624c035f96f430','Lang(OS specific)'); -INSERT INTO openshift_images VALUES(18,'rabbitmq',576,NULL,NULL,165,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jfrog/xray-rabbitmq/5ec6ef9eecb5246c0903f401','App'); -INSERT INTO openshift_images VALUES(19,'redis_Linux',434,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/redis-5/5c401b0cbed8bd75a2c4c287','App(OS specific)'); -INSERT INTO openshift_images VALUES(20,'ruby',434,588,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/ruby-26/5d3ffc6a5a13461f5fb862e6','Lang'); -INSERT INTO openshift_images VALUES(21,'swift',434,364,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhosp-beta/openstack-swift-base/5cdcbbcbdd19c778293be49f','Lang'); -INSERT INTO openshift_images VALUES(22,'tomcat',434,584,NULL,NULL,260,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); -INSERT INTO openshift_images VALUES(23,'websphere-liberty',434,584,NULL,NULL,285,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/websphere-liberty/5d0298c9f5a0de52d547adf7','App Server'); -INSERT INTO openshift_images VALUES(24,'ansible',434,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift3/ose-ansible-service-broker/5989580dbed8bd284e93201e','App'); -INSERT INTO openshift_images VALUES(25,'hive',434,NULL,NULL,8,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hive/5d96f106d70cc50ebeaadb53','App'); -INSERT INTO openshift_images VALUES(26,'kafka',429,NULL,NULL,9,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/kafka2/5e8208a8ac3db903708fe0a5','App'); -INSERT INTO openshift_images VALUES(27,'postgresql',429,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/postgresql-12/5db133bd5a13461646df330b','App'); -INSERT INTO openshift_images VALUES(28,'spark',429,NULL,NULL,NULL,280,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/sdu-spark/5d695066d095e36f9d387421','App Server'); -INSERT INTO openshift_images VALUES(29,'vmware-tools',436,NULL,NULL,230,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel7/open-vm-tools/58ee4f6e4b339a32b5fb7bae','App'); -INSERT INTO openshift_images VALUES(30,'fabric-ca',576,NULL,NULL,422,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ca-base/5d09538bf5a0de52d548efd3','App'); -INSERT INTO openshift_images VALUES(31,'db2',576,NULL,NULL,43,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17','App'); -INSERT INTO openshift_images VALUES(32,'mq',576,NULL,NULL,81,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ibm-mqadvanced-server/5bacf2bf4841f1065681eb5f','App'); -INSERT INTO openshift_images VALUES(33,'websphere-traditional',434,584,NULL,NULL,284,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b','App Server'); -INSERT INTO openshift_images VALUES(34,'base',576,NULL,NULL,NULL,268,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); -INSERT INTO openshift_images VALUES(35,'wildfly',576,NULL,NULL,NULL,493,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); -INSERT INTO openshift_images VALUES(36,'nginx-proxy',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/anaconda/nginx-proxy/5ea3014becb5246c0903c5da','App Server'); -INSERT INTO openshift_images VALUES(37,'javascript-node.js',576,589,NULL,NULL,NULL,NULL,NULL,507,'https://catalog.redhat.com/software/containers/rhel8/nodejs-12/5d3fff06d70cc5521d0009c2','Runtime'); -INSERT INTO openshift_images VALUES(38,'objectivec-gcc',576,343,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-perftools/5ea31291dd19c778961bf8da','Lang'); -INSERT INTO openshift_images VALUES(39,'nginx-ingress',576,NULL,NULL,88,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/nginx/nginx-ingress-operator/5e7ce1b8ecb5246c09fe03c7','App'); -INSERT INTO openshift_images VALUES(40,'node-red-docker',576,NULL,NULL,236,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm-edge/node-red/5ecf8c35ecb5246c0903fb58','App'); -INSERT INTO openshift_images VALUES(41,'sas',576,360,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/sas-base/5e2b5c69ac3db9037062d878','Lang'); -INSERT INTO openshift_images VALUES(42,'activemq',576,NULL,NULL,6,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/tremolosecurity/activemq/5cbbc19e293738790b2fc3d2','App'); -INSERT INTO openshift_images VALUES(43,'hadoop-docker',576,NULL,NULL,57,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hadoop/5d963124bed8bd2245d85da3','App'); -INSERT INTO openshift_images VALUES(44,'nexus3',576,NULL,NULL,124,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/sonatype/nexus-repository-manager/594c281c1fbe9847af657690','App'); -INSERT INTO openshift_images VALUES(45,'splunk',576,NULL,NULL,188,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/layers/splunk/splunk/7.3-redhat/images/sha256-55050c2097d994abc0e6d1c9f7fd0f0c2fb5f4019a9b1e094ffdf33a70a/5e162fab69aea316427f7947','App'); -INSERT INTO openshift_images VALUES(46,'IBM Transformation Extender',576,NULL,NULL,83,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibmcom/ibm-itx-rs-operator/5f9c27ddac3db90370a213a4','App'); -INSERT INTO openshift_images VALUES(47,'openjdk_Linux',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4','Lang(OS specific)'); -INSERT INTO openshift_images VALUES(48,'perl',576,585,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/perl-526/5c83998abed8bd28d0e74c0f','Lang'); -INSERT INTO openshift_images VALUES(49,'postgres',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/postgresql-13-rhel7/60af640142119b927780b520','App'); -INSERT INTO openshift_images VALUES(50,'solr',576,NULL,NULL,11,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/cp/cpd/solr-ubi/5db082ea69aea35a1c141026','App'); -INSERT INTO openshift_images VALUES(51,'odm',576,NULL,NULL,73,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/odm-dbserver/5d80f766702c566f4cbf46e6','App'); -INSERT INTO openshift_images VALUES(52,'Apache Cassandra',434,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/datastax/cassandra/5ee857c969aea31642b67910','App'); -INSERT INTO openshift_images VALUES(53,'Ansible Tower',434,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ansible-tower-38/ansible-tower-rhel7/5fa1c5d968d8b9a71232b1f7','App'); -INSERT INTO openshift_images VALUES(54,'asterisk',576,NULL,NULL,14,NULL,NULL,NULL,NULL,'https://quay.io/repository/citybaseinc/asterisk','App'); -INSERT INTO openshift_images VALUES(55,'drupal',576,NULL,NULL,45,NULL,NULL,NULL,NULL,'https://quay.io/repository/official-images/drupal','App'); -INSERT INTO openshift_images VALUES(56,'elastic',576,NULL,NULL,47,NULL,NULL,NULL,NULL,'https://quay.io/repository/kmamgain/elastic','App'); -INSERT INTO openshift_images VALUES(57,'genymotion',576,NULL,NULL,54,NULL,NULL,NULL,NULL,'https://quay.io/repository/alaska/genymotion','App'); -INSERT INTO openshift_images VALUES(58,'hadoop',576,NULL,NULL,57,NULL,NULL,NULL,NULL,'https://quay.io/repository/iguazio/hadoop','App'); -INSERT INTO openshift_images VALUES(59,'neo4j',576,NULL,NULL,123,NULL,NULL,NULL,NULL,'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j','App'); -INSERT INTO openshift_images VALUES(60,'openldap',576,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap','App'); -INSERT INTO openshift_images VALUES(61,'openvpn',576,NULL,NULL,128,NULL,NULL,NULL,NULL,'https://quay.io/repository/kubermatic/openvpn','App'); -INSERT INTO openshift_images VALUES(62,'pentaho',576,NULL,NULL,150,NULL,NULL,NULL,NULL,'https://quay.io/repository/hasni/pentaho','App'); -INSERT INTO openshift_images VALUES(63,'redis',576,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://quay.io/repository/sameersbn/redis','App'); -INSERT INTO openshift_images VALUES(64,'remedy',576,NULL,NULL,169,NULL,NULL,NULL,NULL,'https://quay.io/repository/amosnl/remedy','App'); -INSERT INTO openshift_images VALUES(65,'riak',576,NULL,NULL,170,NULL,NULL,NULL,NULL,'https://quay.io/repository/dotabuff/riak','App'); -INSERT INTO openshift_images VALUES(66,'sentry',576,NULL,NULL,180,NULL,NULL,NULL,NULL,'https://quay.io/repository/app-sre/sentry','App'); -INSERT INTO openshift_images VALUES(67,'sonarqube',576,NULL,NULL,186,NULL,NULL,NULL,NULL,'https://quay.io/repository/gpte-devops-automation/sonarqube','App'); -INSERT INTO openshift_images VALUES(68,'whois',576,NULL,NULL,212,NULL,NULL,NULL,NULL,'https://quay.io/repository/westonsteimel/whois','App'); -INSERT INTO openshift_images VALUES(69,'tableau',576,NULL,NULL,213,NULL,NULL,NULL,NULL,'https://quay.io/repository/growthstack/tableau','App'); -INSERT INTO openshift_images VALUES(70,'wordpress',576,NULL,NULL,245,NULL,NULL,NULL,NULL,'https://quay.io/repository/redhattraining/wordpress','App'); -INSERT INTO openshift_images VALUES(71,'sqlite',576,NULL,NULL,258,NULL,NULL,NULL,NULL,'https://quay.io/repository/fale/sqlite','App'); -INSERT INTO openshift_images VALUES(72,'glassfish',576,NULL,NULL,NULL,263,NULL,NULL,NULL,'https://quay.io/repository/mohamedf0/glassfish','App_Server'); -INSERT INTO openshift_images VALUES(73,'lucee',576,NULL,NULL,NULL,271,NULL,NULL,NULL,'https://quay.io/repository/daemonite/lucee','App_Server'); -INSERT INTO openshift_images VALUES(74,'awk',576,300,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/shenglai/awk','Lang'); -INSERT INTO openshift_images VALUES(75,'basic',576,301,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/biocontainers/basic','Lang'); -INSERT INTO openshift_images VALUES(76,'expect',576,315,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/baseimage/expect','Lang'); -INSERT INTO openshift_images VALUES(77,'focus',576,321,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/biocontainers/focus','Lang'); -INSERT INTO openshift_images VALUES(78,'fortran',576,322,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/eriktrent/fortran','Lang'); -INSERT INTO openshift_images VALUES(79,'graphql',576,324,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/wasmoffload/graphql','Lang'); -INSERT INTO openshift_images VALUES(80,'groovy',576,325,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/official-images/groovy','Lang'); -INSERT INTO openshift_images VALUES(81,'jcl',576,338,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/jclaret/jcl','Lang'); -INSERT INTO openshift_images VALUES(82,'scala',576,362,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/azavea/scala','Lang'); -INSERT INTO openshift_images VALUES(83,'typescript',576,367,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/ellerbrock/typescript','Lang'); -INSERT INTO openshift_images VALUES(84,'log4j',576,NULL,394,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/crozzy/log4j','Lib'); -INSERT INTO openshift_images VALUES(85,'struts',576,NULL,402,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/arifulhuq/struts','Lib'); -INSERT INTO openshift_images VALUES(86,'angularjs',576,NULL,406,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/amaljose/angularjs','Lib'); -INSERT INTO openshift_images VALUES(87,'react',576,NULL,413,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/profects/react','Lib'); -INSERT INTO openshift_images VALUES(88,'android',418,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/bitriseio/android','OS'); -INSERT INTO openshift_images VALUES(89,'dart',421,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/biocontainers/dart','OS'); -INSERT INTO openshift_images VALUES(90,'centos',427,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/centos/centos','OS'); -INSERT INTO openshift_images VALUES(91,'debian',429,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/official-images/debian','OS'); -INSERT INTO openshift_images VALUES(92,'opensuse',431,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/wstein/opensuse','OS'); -INSERT INTO openshift_images VALUES(93,'ubuntu',436,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/libpod/ubuntu','OS'); -INSERT INTO openshift_images VALUES(94,'freebsd',447,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/uchida/freebsd','OS'); -INSERT INTO openshift_images VALUES(95,'fedora',453,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/fedora/fedora','OS'); -INSERT INTO openshift_images VALUES(96,'ado',576,NULL,NULL,NULL,NULL,NULL,488,NULL,'https://quay.io/repository/scottlezberg/ado','Runlib'); -INSERT INTO openshift_images VALUES(97,'flash',576,NULL,NULL,NULL,NULL,NULL,NULL,504,'https://quay.io/repository/biocontainers/flash','Runtime'); -INSERT INTO openshift_images VALUES(98,'windows',580,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/mhallin/windows','OS'); -INSERT INTO openshift_images VALUES(99,'java',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/tamr/java','Lang'); -INSERT INTO openshift_images VALUES(100,'python',576,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python','Lang'); -INSERT INTO openshift_images VALUES(101,'instana',576,NULL,NULL,NULL,NULL,NULL,NULL,611,'https://quay.io/repository/yaoyao/instana','Runtime'); -INSERT INTO openshift_images VALUES(102,'credstash',576,NULL,NULL,612,NULL,NULL,NULL,NULL,'https://quay.io/repository/safesoftware/credstash','App'); -INSERT INTO openshift_images VALUES(103,'snyk',576,NULL,NULL,613,NULL,NULL,NULL,NULL,'https://quay.io/repository/exd_infra_plts_cip/snyk','App'); -INSERT INTO openshift_images VALUES(104,'akka',576,NULL,NULL,614,NULL,NULL,NULL,NULL,'https://quay.io/repository/j0zi/akka','App'); -INSERT INTO openshift_images VALUES(105,'varnish',576,NULL,NULL,NULL,615,NULL,NULL,NULL,'https://quay.io/repository/api-platform/varnish','App_Server'); -INSERT INTO openshift_images VALUES(106,'datadog',576,NULL,NULL,NULL,NULL,NULL,NULL,616,'https://quay.io/repository/blondie/datadog','Runtime'); -INSERT INTO openshift_images VALUES(107,'hazelcast',576,NULL,NULL,NULL,NULL,NULL,NULL,618,'https://quay.io/repository/hazelcast_cloud/hazelcast','Runtime'); -INSERT INTO openshift_images VALUES(108,'infinispan',576,NULL,NULL,619,NULL,NULL,NULL,NULL,'https://quay.io/repository/operatorhubio/infinispan','App'); -INSERT INTO openshift_images VALUES(109,'nuxeo',576,NULL,NULL,NULL,NULL,NULL,NULL,620,'https://quay.io/repository/swsmirror/nuxeo','Runtime'); -INSERT INTO openshift_images VALUES(110,'arangodb',576,NULL,NULL,621,NULL,NULL,NULL,NULL,'https://quay.io/repository/swsmirror/arangodb','App'); -INSERT INTO openshift_images VALUES(111,'clickhouse',576,NULL,NULL,624,NULL,NULL,NULL,NULL,'https://quay.io/repository/operatorhubio/clickhouse','App'); -INSERT INTO openshift_images VALUES(112,'minio',576,NULL,NULL,625,NULL,NULL,NULL,NULL,'https://quay.io/repository/minio/minio','App'); -INSERT INTO openshift_images VALUES(113,'elasticsearch',576,NULL,NULL,626,NULL,NULL,NULL,NULL,'https://quay.io/repository/fluentd_elasticsearch/elasticsearch','App'); -INSERT INTO openshift_images VALUES(114,'keycloak',576,NULL,NULL,628,NULL,NULL,NULL,NULL,'https://quay.io/repository/keycloak/keycloak','App'); -INSERT INTO openshift_images VALUES(115,'grafana',576,NULL,NULL,629,NULL,NULL,NULL,NULL,'https://quay.io/repository/tamr/grafana','App'); -INSERT INTO openshift_images VALUES(116,'mattermost',576,NULL,NULL,NULL,NULL,NULL,NULL,630,'https://quay.io/repository/jostone/mattermost','Runtime'); -INSERT INTO openshift_images VALUES(117,'synapse',576,NULL,NULL,631,NULL,NULL,NULL,NULL,'https://quay.io/repository/dockernohub/synapse','App'); -INSERT INTO openshift_images VALUES(118,'kubeflow',576,NULL,NULL,NULL,NULL,NULL,NULL,635,'https://quay.io/repository/operatorhubio/kubeflow','Runtime'); -INSERT INTO openshift_images VALUES(119,'sematext',576,NULL,NULL,NULL,NULL,NULL,NULL,639,'https://quay.io/repository/operatorhubio/sematext','Runtime'); -INSERT INTO openshift_images VALUES(120,'mariadb',576,NULL,NULL,642,NULL,NULL,NULL,NULL,'https://quay.io/repository/startx/mariadb','App'); -INSERT INTO openshift_images VALUES(121,'istio',576,NULL,NULL,644,NULL,NULL,NULL,NULL,'https://quay.io/repository/aspenmesh/istio','App'); -INSERT INTO openshift_images VALUES(122,'vault',576,NULL,NULL,645,NULL,NULL,NULL,NULL,'https://quay.io/repository/cybozu/vault','App'); -INSERT INTO openshift_images VALUES(123,'etcd',576,NULL,NULL,647,NULL,NULL,NULL,NULL,'https://quay.io/repository/coreos/etcd','App'); -INSERT INTO openshift_images VALUES(124,'traefik',576,NULL,NULL,NULL,648,NULL,NULL,NULL,'https://quay.io/repository/widen/traefik','App_Server'); -INSERT INTO openshift_images VALUES(125,'yugabytedb',576,NULL,NULL,650,NULL,NULL,NULL,NULL,'https://quay.io/repository/marco_antonioni/yugabytedb','App'); -INSERT INTO openshift_images VALUES(126,'cockroachdb',576,NULL,NULL,651,NULL,NULL,NULL,NULL,'https://quay.io/repository/helmoperators/cockroachdb','App'); -INSERT INTO openshift_images VALUES(127,'jaeger',576,NULL,NULL,NULL,NULL,NULL,NULL,652,'https://quay.io/repository/operatorhubio/jaeger','Runtime'); -INSERT INTO openshift_images VALUES(128,'powershell',576,660,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/powerdock/powershell','Lang'); -INSERT INTO openshift_images VALUES(129,'dds',576,663,NULL,NULL,NULL,NULL,NULL,NULL,'https://quay.io/repository/havoc/dds','Lang'); -INSERT INTO openshift_images VALUES(130,'git',576,NULL,NULL,677,NULL,NULL,NULL,NULL,'https://quay.io/repository/sisense/git','App'); -INSERT INTO openshift_images VALUES(131,'gitlab',576,NULL,NULL,678,NULL,NULL,NULL,NULL,'https://quay.io/repository/sameersbn/gitlab','App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (1, 'ibm maximo asset management', 434, NULL, NULL, 70, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ema-maximo-integration/5d79b41f3d73db51b9ba7ea7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (2, 'openldap', 434, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/netcool-openldap-16/5d1a1e94702c56364a5d4101', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (3, 'gcc', 576, 583, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-toolchain/5ea311fd5a13466876a077ca', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (4, 'golang_linux', 434, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/go-toolset/5b9c810add19c70b45cbd666', 'Lang(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (5, 'haproxy', 434, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-haproxy-router/5cd9b367bed8bd5717d4fdaa', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (6, 'httpd', 434, NULL, NULL, NULL, 259, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/httpd-24-rhel7/57ea8d049c624c035f96f42e', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (7, 'jenkins', 434, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (8, 'marklogic', 434, NULL, NULL, 97, NULL, NULL, NULL, NULL, 'https://access.redhat.com/containers/#/docker.io/store/marklogicdb/marklogic-server', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (9, 'memcached', 434, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhacm2/memcached-rhel8/5f523955ee8349144fa8634a', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (10, 'java se jre_linux', 434, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4', 'Runtime(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (11, 'microsoft sql server', 434, NULL, NULL, 581, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/mssql/rhel/server/5ba50865f5a0de06555a2ee7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (12, 'mongo_linux', 434, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rh-marketplace/mongodb-enterprise-advanced-ibm-bundle/5f84ce93ecb524508951386d', 'App(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (13, 'mysql', 434, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/mysql-80/5ba0ad4cdd19c70b45cbf48c', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (14, 'nginx', 434, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/nginx-118/5f521a46e05bbcd88f128b64', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (15, 'node', 576, NULL, NULL, NULL, NULL, NULL, NULL, 507, 'https://catalog.redhat.com/software/containers/rhel8/nodejs-14/5ed76a59d70cc50e69c2f891', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (16, 'php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/php-74/5f521244e05bbcd88f128b63', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (17, 'python_linux', 434, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/python-27-rhel7/57ea8d049c624c035f96f430', 'Lang(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (18, 'rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jfrog/xray-rabbitmq/5ec6ef9eecb5246c0903f401', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (19, 'redis_linux', 434, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/redis-5/5c401b0cbed8bd75a2c4c287', 'App(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (20, 'ruby', 434, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/ruby-26/5d3ffc6a5a13461f5fb862e6', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (21, 'swift', 434, 364, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhosp-beta/openstack-swift-base/5cdcbbcbdd19c778293be49f', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (22, 'tomcat', 434, 584, NULL, NULL, 260, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (23, 'websphere-liberty', 434, 584, NULL, NULL, 285, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/websphere-liberty/5d0298c9f5a0de52d547adf7', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (24, 'ansible', 434, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift3/ose-ansible-service-broker/5989580dbed8bd284e93201e', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (25, 'hive', 434, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hive/5d96f106d70cc50ebeaadb53', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (26, 'kafka', 429, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/kafka2/5e8208a8ac3db903708fe0a5', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (27, 'postgresql', 429, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/postgresql-12/5db133bd5a13461646df330b', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (28, 'spark', 429, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/sdu-spark/5d695066d095e36f9d387421', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (29, 'vmware-tools', 436, NULL, NULL, 230, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel7/open-vm-tools/58ee4f6e4b339a32b5fb7bae', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (30, 'fabric-ca', 576, NULL, NULL, 422, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ca-base/5d09538bf5a0de52d548efd3', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (31, 'db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (32, 'mq', 576, NULL, NULL, 81, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ibm-mqadvanced-server/5bacf2bf4841f1065681eb5f', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (33, 'websphere-traditional', 434, 584, NULL, NULL, 284, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (34, 'base', 576, NULL, NULL, NULL, 268, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (35, 'wildfly', 576, NULL, NULL, NULL, 493, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (36, 'nginx-proxy', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/anaconda/nginx-proxy/5ea3014becb5246c0903c5da', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (37, 'javascript-node.js', 576, 589, NULL, NULL, NULL, NULL, NULL, 507, 'https://catalog.redhat.com/software/containers/rhel8/nodejs-12/5d3fff06d70cc5521d0009c2', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (38, 'objectivec-gcc', 576, 343, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-perftools/5ea31291dd19c778961bf8da', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (39, 'nginx-ingress', 576, NULL, NULL, 88, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/nginx/nginx-ingress-operator/5e7ce1b8ecb5246c09fe03c7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (40, 'node-red-docker', 576, NULL, NULL, 236, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm-edge/node-red/5ecf8c35ecb5246c0903fb58', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (41, 'sas', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/sas-base/5e2b5c69ac3db9037062d878', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (42, 'activemq', 576, NULL, NULL, 6, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/tremolosecurity/activemq/5cbbc19e293738790b2fc3d2', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (43, 'hadoop-docker', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hadoop/5d963124bed8bd2245d85da3', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (44, 'nexus3', 576, NULL, NULL, 124, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/sonatype/nexus-repository-manager/594c281c1fbe9847af657690', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (45, 'splunk', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/layers/splunk/splunk/7.3-redhat/images/sha256-55050c2097d994abc0e6d1c9f7fd0f0c2fb5f4019a9b1e094ffdf33a70a/5e162fab69aea316427f7947', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (46, 'ibm transformation extender', 576, NULL, NULL, 83, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibmcom/ibm-itx-rs-operator/5f9c27ddac3db90370a213a4', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (47, 'openjdk_linux', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4', 'Lang(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (48, 'perl', 576, 585, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/perl-526/5c83998abed8bd28d0e74c0f', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (49, 'postgres', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/postgresql-13-rhel7/60af640142119b927780b520', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (50, 'solr', 576, NULL, NULL, 11, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/cp/cpd/solr-ubi/5db082ea69aea35a1c141026', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (51, 'odm', 576, NULL, NULL, 73, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/odm-dbserver/5d80f766702c566f4cbf46e6', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (52, 'apache cassandra', 434, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/datastax/cassandra/5ee857c969aea31642b67910', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (53, 'ansible tower', 434, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ansible-tower-38/ansible-tower-rhel7/5fa1c5d968d8b9a71232b1f7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (54, 'asterisk', 576, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://quay.io/repository/citybaseinc/asterisk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (55, 'drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (56, 'elastic', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kmamgain/elastic', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (57, 'genymotion', 576, NULL, NULL, 54, NULL, NULL, NULL, NULL, 'https://quay.io/repository/alaska/genymotion', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (58, 'hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/iguazio/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (59, 'neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (60, 'openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (61, 'openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kubermatic/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (62, 'pentaho', 576, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://quay.io/repository/hasni/pentaho', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (63, 'redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (64, 'remedy', 576, NULL, NULL, 169, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amosnl/remedy', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (65, 'riak', 576, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dotabuff/riak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (66, 'sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/app-sre/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (67, 'sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/gpte-devops-automation/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (68, 'whois', 576, NULL, NULL, 212, NULL, NULL, NULL, NULL, 'https://quay.io/repository/westonsteimel/whois', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (69, 'tableau', 576, NULL, NULL, 213, NULL, NULL, NULL, NULL, 'https://quay.io/repository/growthstack/tableau', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (70, 'wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhattraining/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (71, 'sqlite', 576, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fale/sqlite', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (72, 'glassfish', 576, NULL, NULL, NULL, 263, NULL, NULL, NULL, 'https://quay.io/repository/mohamedf0/glassfish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (73, 'lucee', 576, NULL, NULL, NULL, 271, NULL, NULL, NULL, 'https://quay.io/repository/daemonite/lucee', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (74, 'awk', 576, 300, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/shenglai/awk', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (75, 'basic', 576, 301, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/basic', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (76, 'expect', 576, 315, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/baseimage/expect', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (77, 'focus', 576, 321, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/focus', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (78, 'fortran', 576, 322, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/eriktrent/fortran', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (79, 'graphql', 576, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wasmoffload/graphql', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (80, 'groovy', 576, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/groovy', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (81, 'jcl', 576, 338, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/jclaret/jcl', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (82, 'scala', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/azavea/scala', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (83, 'typescript', 576, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ellerbrock/typescript', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (84, 'log4j', 576, NULL, 394, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/crozzy/log4j', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (85, 'struts', 576, NULL, 402, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/arifulhuq/struts', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (86, 'angularjs', 576, NULL, 406, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amaljose/angularjs', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (87, 'react', 576, NULL, 413, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/profects/react', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (88, 'android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bitriseio/android', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (89, 'dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/dart', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (90, 'centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/centos/centos', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (91, 'debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/debian', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (92, 'opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wstein/opensuse', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (93, 'ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/libpod/ubuntu', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (94, 'freebsd', 447, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/uchida/freebsd', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (95, 'fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fedora/fedora', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (96, 'ado', 576, NULL, NULL, NULL, NULL, NULL, 488, NULL, 'https://quay.io/repository/scottlezberg/ado', 'Runlib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (97, 'flash', 576, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://quay.io/repository/biocontainers/flash', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (98, 'windows', 580, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mhallin/windows', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (99, 'java', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/java', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (100, 'python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (101, 'instana', 576, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'https://quay.io/repository/yaoyao/instana', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (102, 'credstash', 576, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'https://quay.io/repository/safesoftware/credstash', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (103, 'snyk', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'https://quay.io/repository/exd_infra_plts_cip/snyk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (104, 'akka', 576, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'https://quay.io/repository/j0zi/akka', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (105, 'varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/api-platform/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (106, 'datadog', 576, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://quay.io/repository/blondie/datadog', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (107, 'hazelcast', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://quay.io/repository/hazelcast_cloud/hazelcast', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (108, 'infinispan', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/infinispan', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (109, 'nuxeo', 576, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://quay.io/repository/swsmirror/nuxeo', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (110, 'arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (111, 'clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (112, 'minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/minio/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (113, 'elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fluentd_elasticsearch/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (114, 'keycloak', 576, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://quay.io/repository/keycloak/keycloak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (115, 'grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (116, 'mattermost', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/jostone/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (117, 'synapse', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockernohub/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (118, 'kubeflow', 576, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'https://quay.io/repository/operatorhubio/kubeflow', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (119, 'sematext', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'https://quay.io/repository/operatorhubio/sematext', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (120, 'mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://quay.io/repository/startx/mariadb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (121, 'istio', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aspenmesh/istio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (122, 'vault', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/vault', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (123, 'etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://quay.io/repository/coreos/etcd', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (124, 'traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/widen/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (125, 'yugabytedb', 576, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'https://quay.io/repository/marco_antonioni/yugabytedb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (126, 'cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'https://quay.io/repository/helmoperators/cockroachdb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (127, 'jaeger', 576, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'https://quay.io/repository/operatorhubio/jaeger', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (128, 'powershell', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/powerdock/powershell', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (129, 'dds', 576, 663, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/havoc/dds', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (130, 'git', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sisense/git', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (131, 'gitlab', 576, NULL, NULL, 678, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/gitlab', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (132, 'osbuild/ansible', 576, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://quay.io/repository/osbuild/ansible', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (133, 'citybaseinc/asterisk', 576, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://quay.io/repository/citybaseinc/asterisk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (134, 'jorti/asterisk', 576, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://quay.io/repository/jorti/asterisk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (135, 'mak73kur/asterisk', 576, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mak73kur/asterisk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (136, 'gabibbo97/asterisk', 576, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://quay.io/repository/gabibbo97/asterisk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (137, 'quarkusqeteam/db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://quay.io/repository/quarkusqeteam/db2', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (138, 'pjgg/db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://quay.io/repository/pjgg/db2', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (139, 'rhoar_qe/db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://quay.io/repository/rhoar_qe/db2', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (140, 'luisarizmendi/db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://quay.io/repository/luisarizmendi/db2', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (141, 'official-images/drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (142, 'swsmirror/drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (143, 'damagehead/drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/damagehead/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (144, 'dockerlibrary/drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockerlibrary/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (145, 'dperez_mulet/drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dperez_mulet/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (146, 'brunofar/drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/brunofar/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (147, 'kmamgain/elastic', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kmamgain/elastic', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (148, 'yacis/elastic', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'https://quay.io/repository/yacis/elastic', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (149, 'alaska/genymotion', 576, NULL, NULL, 54, NULL, NULL, NULL, NULL, 'https://quay.io/repository/alaska/genymotion', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (150, 'iguazio/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/iguazio/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (151, 'flysangel/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/flysangel/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (152, 'lalyos/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/lalyos/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (153, 'coreos/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/coreos/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (154, 'falkonry/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/falkonry/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (155, 'flokkr/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/flokkr/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (156, 'mcapitanio/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mcapitanio/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (157, 'opaqnetworks/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/opaqnetworks/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (158, 'tamr/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (159, 'h3nrique/jenkins', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://quay.io/repository/h3nrique/jenkins', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (160, 'cdis/jenkins', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cdis/jenkins', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (161, 'hany_mostafa/jenkins', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://quay.io/repository/hany_mostafa/jenkins', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (162, 'flysangel/jenkins', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://quay.io/repository/flysangel/jenkins', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (163, 'jitesoft/memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://quay.io/repository/jitesoft/memcached', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (164, 'factory2/memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://quay.io/repository/factory2/memcached', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (165, 'exd-guild-distribution/memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://quay.io/repository/exd-guild-distribution/memcached', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (166, 'cybozu/memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/memcached', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (167, 'openstack.kolla/memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openstack.kolla/memcached', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (168, 'genomenon/memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://quay.io/repository/genomenon/memcached', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (169, 'redhat-aqe/memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhat-aqe/memcached', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (170, 'openshifttest/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshifttest/mysql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (171, 'prsurve/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://quay.io/repository/prsurve/mysql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (172, 'gauravkumar9130/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://quay.io/repository/gauravkumar9130/mysql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (173, 'cybozu/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/mysql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (174, 'hazelcast_cloud/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://quay.io/repository/hazelcast_cloud/mysql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (175, 'operations/mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operations/mysql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (176, '56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (177, 'thoba/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/thoba/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (178, 'modelgraphtools/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/modelgraphtools/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (179, 'ukhomeofficedigital/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ukhomeofficedigital/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (180, 'dockerlibrary/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockerlibrary/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (181, 'peoplepattern/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/peoplepattern/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (182, 'cookbrite/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cookbrite/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (183, 'frankyto2004/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/frankyto2004/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (184, 'steveblackmon/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/steveblackmon/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (185, 'openkilda/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openkilda/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (186, 'xavireds89/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/xavireds89/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (187, 'swsmirror/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (188, 'karmkarm/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/karmkarm/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (189, 'processtempo/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/processtempo/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (190, 'amd64/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amd64/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (191, '56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (192, 'minio/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/minio/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (193, 'powerhome/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/powerhome/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (194, 'flysangel/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/flysangel/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (195, 'cs-sert/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cs-sert/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (196, 'truecharts/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (197, 'llasmith/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/llasmith/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (198, 'rosalindfranklininstitute/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/rosalindfranklininstitute/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (199, 'leena_ibm/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/leena_ibm/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (200, 'opaqnetworks/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/opaqnetworks/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (201, 'vr4manta/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/vr4manta/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (202, 'tmm/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tmm/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (203, 'kubermatic/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kubermatic/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (204, 'plange/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/plange/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (205, 'hypershift/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/hypershift/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (206, 'digidentity/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/digidentity/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (207, 'ukhomeofficedigital/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ukhomeofficedigital/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (208, 'konveyor/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/konveyor/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (209, 'hasni/pentaho', 576, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://quay.io/repository/hasni/pentaho', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (210, 'pablo_lemosochandio/pentaho', 576, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://quay.io/repository/pablo_lemosochandio/pentaho', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (211, '56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (212, 'enterprisedb/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://quay.io/repository/enterprisedb/postgresql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (213, 'aptible/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aptible/postgresql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (214, 'operatorhubio/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/postgresql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (215, '56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (216, 'domino/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/domino/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (217, 'sisense/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sisense/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (218, 'scentbird/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/scentbird/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (219, 'aptible/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aptible/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (220, 'trackmaven/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/trackmaven/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (221, 'openstack.kolla/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openstack.kolla/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (222, 'lbac/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/lbac/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (223, 'sameersbn/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (224, '56401deb-7290-4d8b-8731-baf6d8b5d27d/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (225, 'opstree/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/opstree/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (226, 'domino/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/domino/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (227, 'quay/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/quay/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (228, 'scentbird/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/scentbird/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (229, 'crio/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/crio/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (230, 'aptible/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aptible/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (231, 'libpod/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/libpod/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (232, 'cloud-bulldozer/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cloud-bulldozer/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (233, 'smile/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/smile/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (234, 'amosnl/remedy', 576, NULL, NULL, 169, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amosnl/remedy', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (235, 'dotabuff/riak', 576, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dotabuff/riak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (236, 'arschles/riak', 576, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/arschles/riak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (237, 'joukou/riak', 576, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/joukou/riak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (238, 'deis/riak', 576, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/deis/riak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (239, '01it/riak', 576, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/01it/riak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (240, 'deisci/riak', 576, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/deisci/riak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (241, 'app-sre/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/app-sre/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (242, 'swsmirror/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (243, 'dontpayfull/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dontpayfull/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (244, 'zebbra/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/zebbra/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (245, 'kbrwn/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kbrwn/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (246, 'dockerlibrary/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockerlibrary/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (247, '3ofcoins/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/3ofcoins/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (248, 'baselibrary/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/baselibrary/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (249, 'beatport/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/beatport/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (250, 'playlab/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/playlab/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (251, 'arastu/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/arastu/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (252, 'maaaato/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/maaaato/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (253, 'gpte-devops-automation/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/gpte-devops-automation/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (254, '56401deb-7290-4d8b-8731-baf6d8b5d27d/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (255, 'andrexbass/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/andrexbass/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (256, 'ukhomeofficedigital/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ukhomeofficedigital/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (257, 'siamaksade/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/siamaksade/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (258, 'ecerquei/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ecerquei/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (259, 'rcarrata/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/rcarrata/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (260, 'an6eel/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/an6eel/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (261, 'ccee/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ccee/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (262, 'rocep/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/rocep/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (263, 'bcgov/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bcgov/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (264, 'evandenbeld/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/evandenbeld/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (265, 'redhatgov/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhatgov/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (266, 'swsmirror/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (267, 'appcontainers/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/appcontainers/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (268, 'operatorhubio/splunk', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/splunk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (269, 'mariaelisacf/splunk', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mariaelisacf/splunk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (270, 'westonsteimel/whois', 576, NULL, NULL, 212, NULL, NULL, NULL, NULL, 'https://quay.io/repository/westonsteimel/whois', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (271, 'growthstack/tableau', 576, NULL, NULL, 213, NULL, NULL, NULL, NULL, 'https://quay.io/repository/growthstack/tableau', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (272, 'redhattraining/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhattraining/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (273, '56401deb-7290-4d8b-8731-baf6d8b5d27d/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (274, 'ashish11_ibm/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ashish11_ibm/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (275, 'uninett/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/uninett/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (276, 'cellosofia/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cellosofia/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (277, 'redhattraining_dev/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhattraining_dev/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (278, 'swsmirror/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (279, 'ibmcanada/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ibmcanada/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (280, 'curtistai/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/curtistai/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (281, 'fale/sqlite', 576, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fale/sqlite', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (282, 'biocontainers/sqlite', 576, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/sqlite', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (283, 'mohamedf0/glassfish', 576, NULL, NULL, NULL, 263, NULL, NULL, NULL, 'https://quay.io/repository/mohamedf0/glassfish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (284, 'jduimovich0/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://quay.io/repository/jduimovich0/haproxy', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (285, 'openstack.kolla/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://quay.io/repository/openstack.kolla/haproxy', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (286, 'karmab/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://quay.io/repository/karmab/haproxy', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (287, 'official-images/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://quay.io/repository/official-images/haproxy', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (288, 'ceph/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://quay.io/repository/ceph/haproxy', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (289, 'daemonite/lucee', 576, NULL, NULL, NULL, 271, NULL, NULL, NULL, 'https://quay.io/repository/daemonite/lucee', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (290, 'openshift-scale/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://quay.io/repository/openshift-scale/nginx', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (291, 'jitesoft/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://quay.io/repository/jitesoft/nginx', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (292, 'cloud-bulldozer/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://quay.io/repository/cloud-bulldozer/nginx', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (293, '56401deb-7290-4d8b-8731-baf6d8b5d27d/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/nginx', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (294, 'ocsci/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://quay.io/repository/ocsci/nginx', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (295, 'bedrock/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://quay.io/repository/bedrock/nginx', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (296, 'aptible/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://quay.io/repository/aptible/nginx', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (297, 'testing-farm/nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://quay.io/repository/testing-farm/nginx', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (298, '56401deb-7290-4d8b-8731-baf6d8b5d27d/spark', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/spark', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (299, 'diem/spark', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://quay.io/repository/diem/spark', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (300, 'domino/spark', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://quay.io/repository/domino/spark', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (301, 'iguazio/spark', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://quay.io/repository/iguazio/spark', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (302, 'cakkinep/spark', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://quay.io/repository/cakkinep/spark', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (303, 'shenglai/awk', 576, 300, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/shenglai/awk', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (304, 'biocontainers/basic', 576, 301, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/basic', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (305, 'baseimage/expect', 576, 315, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/baseimage/expect', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (306, 'biocontainers/focus', 576, 321, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/focus', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (307, 'eriktrent/fortran', 576, 322, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/eriktrent/fortran', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (308, 'wasmoffload/graphql', 576, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wasmoffload/graphql', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (309, 'official-images/groovy', 576, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/groovy', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (310, 'swsmirror/groovy', 576, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/groovy', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (311, 'dockerlibrary/groovy', 576, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockerlibrary/groovy', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (312, 'jclaret/jcl', 576, 338, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/jclaret/jcl', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (313, 'domino/sas', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/domino/sas', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (314, 'fahrettinc/sas', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fahrettinc/sas', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (315, 'appvia_hub_dev/sas', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/appvia_hub_dev/sas', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (316, 'azavea/scala', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/azavea/scala', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (317, 'reviewtrackers/scala', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/reviewtrackers/scala', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (318, 'opaqnetworks/scala', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/opaqnetworks/scala', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (319, 'ellerbrock/typescript', 576, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ellerbrock/typescript', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (320, 'omnijarstudio/typescript', 576, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/omnijarstudio/typescript', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (321, 'crozzy/log4j', 576, NULL, 394, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/crozzy/log4j', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (322, 'arifulhuq/struts', 576, NULL, 402, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/arifulhuq/struts', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (323, 'connorg/struts', 576, NULL, 402, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/connorg/struts', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (324, 'araalinetworks/struts', 576, NULL, 402, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/araalinetworks/struts', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (325, 'amaljose/angularjs', 576, NULL, 406, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amaljose/angularjs', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (326, 'profects/react', 576, NULL, 413, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/profects/react', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (327, 'bitriseio/android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bitriseio/android', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (328, 'amal5alshaikh/android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amal5alshaikh/android', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (329, 'opaqnetworks/android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/opaqnetworks/android', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (330, 'logistio/android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/logistio/android', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (331, 'biocontainers/dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/dart', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (332, 'spivegin/dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/spivegin/dart', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (333, 'official-images/dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/dart', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (334, 'gitpodified-workspace-images/dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/gitpodified-workspace-images/dart', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (335, 'sustainable_computing_io/dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sustainable_computing_io/dart', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (337, 'containerdisks/centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/containerdisks/centos', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (338, 'openshifttest/centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshifttest/centos', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (339, 'startx/centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/startx/centos', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (340, 'libpod/centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/libpod/centos', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (341, 'libpod/debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/libpod/debian', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (342, 'official-images/debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/debian', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (343, 'wstein/opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wstein/opensuse', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (344, 'quay-qetest/opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/quay-qetest/opensuse', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (345, 'ucomesdag/opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ucomesdag/opensuse', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (346, 'libpod/ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/libpod/ubuntu', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (347, 'bedrock/ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bedrock/ubuntu', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (348, 'baselibrary/ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/baselibrary/ubuntu', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (349, 'tamr/ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/ubuntu', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (350, 'cybozu/ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/ubuntu', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (351, 'uchida/freebsd', 447, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/uchida/freebsd', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (353, 'containerdisks/fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/containerdisks/fedora', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (354, 'kubevirtci/fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kubevirtci/fedora', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (355, 'libpod/fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/libpod/fedora', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (356, 'startx/fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/startx/fedora', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (357, 'openshifttest/fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshifttest/fedora', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (358, 'scottlezberg/ado', 576, NULL, NULL, NULL, NULL, NULL, 488, NULL, 'https://quay.io/repository/scottlezberg/ado', 'Runlib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (359, 'wildfly/wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'https://quay.io/repository/wildfly/wildfly', 'Runlib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (360, '56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly', 'Runlib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (361, 'halconsole/wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'https://quay.io/repository/halconsole/wildfly', 'Runlib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (362, 'operatorhubio/wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'https://quay.io/repository/operatorhubio/wildfly', 'Runlib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (363, 'alousta_us/wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'https://quay.io/repository/alousta_us/wildfly', 'Runlib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (364, 'biocontainers/flash', 576, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://quay.io/repository/biocontainers/flash', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (365, 'logiq/flash', 576, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://quay.io/repository/logiq/flash', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (366, 'refgenomics/flash', 576, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://quay.io/repository/refgenomics/flash', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (367, 'kmhernan/flash', 576, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://quay.io/repository/kmhernan/flash', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (368, 'staphb/flash', 576, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://quay.io/repository/staphb/flash', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (369, 'mhallin/windows', 580, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mhallin/windows', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (370, 'nickarellano/windows', 580, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/nickarellano/windows', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (371, 'mgba/windows', 580, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mgba/windows', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (372, 'enxadahost/java', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/enxadahost/java', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (373, 'tamr/java', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/java', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (374, 'reishost/java', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/reishost/java', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (375, 'biocontainers/perl', 576, 585, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/perl', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (376, 'kissj/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kissj/php', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (377, 'startx/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/startx/php', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (378, 'api-platform/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/api-platform/php', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (379, 'official-images/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/php', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (380, 'swsmirror/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/php', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (381, '56401deb-7290-4d8b-8731-baf6d8b5d27d/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (382, 'biocontainers/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (383, 'agari/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/agari/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (384, 'cdis/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cdis/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (385, 'sctregistry/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sctregistry/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (386, 'mlrun/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mlrun/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (387, '56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (388, 'aptible/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aptible/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (389, 'forem/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/forem/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (390, 'swsmirror/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (391, 'openshifttest/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshifttest/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (392, 'goodguide/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/goodguide/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (393, 'karthik_t/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/karthik_t/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (394, 'springest/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/springest/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (395, 'vasistatest/javascript', 576, 589, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/vasistatest/javascript', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (396, 'yaoyao/instana', 576, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'https://quay.io/repository/yaoyao/instana', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (397, 'safesoftware/credstash', 576, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'https://quay.io/repository/safesoftware/credstash', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (398, 'exd_infra_plts_cip/snyk', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'https://quay.io/repository/exd_infra_plts_cip/snyk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (399, 'j0zi/akka', 576, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'https://quay.io/repository/j0zi/akka', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (400, 'hasha/akka', 576, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'https://quay.io/repository/hasha/akka', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (401, 'api-platform/varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/api-platform/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (402, 'akretion/varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/akretion/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (403, 'airshipcms/varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/airshipcms/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (404, '45air/varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/45air/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (405, 'vektorcloud/varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/vektorcloud/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (406, 'blondie/datadog', 576, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://quay.io/repository/blondie/datadog', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (408, 'cdufresne/hazelcast', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://quay.io/repository/cdufresne/hazelcast', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (409, 'noorul/hazelcast', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://quay.io/repository/noorul/hazelcast', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (410, 'operatorhubio/infinispan', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/infinispan', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (411, 'openshift-community-operators/infinispan', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshift-community-operators/infinispan', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (412, 'ramgopireddy/infinispan', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ramgopireddy/infinispan', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (413, 'operator_testing/infinispan', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operator_testing/infinispan', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (414, 'dockerlibrary/nuxeo', 576, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://quay.io/repository/dockerlibrary/nuxeo', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (415, 'swsmirror/nuxeo', 576, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://quay.io/repository/swsmirror/nuxeo', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (416, 'borja/nuxeo', 576, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://quay.io/repository/borja/nuxeo', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (417, 'official-images/arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (418, 'swsmirror/arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (419, 'rh_integration/arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/rh_integration/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (420, 'onet/arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/onet/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (421, 'dockerlibrary/arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockerlibrary/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (422, 'vpavlin/arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/vpavlin/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (423, 'insightpool/arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/insightpool/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (424, 'operatorhubio/clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (425, 'truecharts/clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (426, 'binarysoftware/clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/repository/binarysoftware/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (427, 'excoin/clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/repository/excoin/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (428, 'iyuroch/clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/repository/iyuroch/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (429, 'https://quay.io/application/sunsingerus/clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/application/sunsingerus/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (431, 'cloudservices/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cloudservices/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (432, 'artisan/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/artisan/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (433, 'devtron/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/devtron/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (434, 'uninett/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/uninett/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (435, 'riotkit/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/riotkit/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (436, 'nird-toolkit/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/nird-toolkit/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (437, 'kubevirt/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kubevirt/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (438, 'stackstate/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/stackstate/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (439, 'ricardbejarano/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ricardbejarano/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (440, 'wakaba/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wakaba/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (441, 'deisci/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/deisci/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (442, 'anuta/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/anuta/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (443, 'fluentd_elasticsearch/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fluentd_elasticsearch/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (444, 'crowdworks/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/crowdworks/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (445, 'trackmaven/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/trackmaven/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (446, 'centerforopenscience/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/centerforopenscience/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (447, 'agari/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/agari/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (448, 'openshifttest/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshifttest/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (449, 'karbon/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/karbon/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (450, 'stackstate/elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/stackstate/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (452, 'arrowhacks/keycloak', 576, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://quay.io/repository/arrowhacks/keycloak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (453, 'ukhomeofficedigital/keycloak', 576, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ukhomeofficedigital/keycloak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (454, 'tamr/grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (455, 'opencloudio/grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/opencloudio/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (456, 'cybozu/grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (457, 'testing-farm/grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/testing-farm/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (458, 'sisense/grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sisense/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (459, 'devtron/grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/devtron/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (460, 'jostone/mattermost', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/jostone/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (461, 'fodoj/mattermost', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/fodoj/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (462, 'jasl8r/mattermost', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/jasl8r/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (463, 'truecharts/mattermost', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/truecharts/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (464, 'goern/mattermost', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/goern/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (465, 'ukhomeofficedigital/mattermost', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/ukhomeofficedigital/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (466, 'ecasa/mattermost', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/ecasa/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (467, 'dockernohub/synapse', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockernohub/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (468, 'jostone/synapse', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/jostone/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (469, 'truecharts/synapse', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (470, 'snapserv/synapse', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/snapserv/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (471, 'opentelekomcloud/synapse', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/opentelekomcloud/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (472, 'operatorhubio/kubeflow', 576, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'https://quay.io/repository/operatorhubio/kubeflow', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (473, 'operatorhubio/sematext', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'https://quay.io/repository/operatorhubio/sematext', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (474, 'j0zi/sematext', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'https://quay.io/repository/j0zi/sematext', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (475, 'https://quay.io/application/certified-operators/sematext', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'https://quay.io/application/certified-operators/sematext', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (476, 'startx/mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://quay.io/repository/startx/mariadb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (477, 'metal3-io/mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://quay.io/repository/metal3-io/mariadb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (478, 'nvlab/mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://quay.io/repository/nvlab/mariadb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (479, 'flysangel/mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://quay.io/repository/flysangel/mariadb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (480, 'aspenmesh/istio', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aspenmesh/istio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (481, 'cybozu/vault', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/vault', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (482, 'alvaroaleman/vault', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://quay.io/repository/alvaroaleman/vault', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (483, 'giantswarm/vault', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://quay.io/repository/giantswarm/vault', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (484, 'coreos/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://quay.io/repository/coreos/etcd', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (485, 'openshift-community-operators/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshift-community-operators/etcd', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (486, 'cybozu/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/etcd', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (487, 'olmqe/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://quay.io/repository/olmqe/etcd', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (488, 'karbon/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://quay.io/repository/karbon/etcd', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (489, 'widen/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/widen/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (490, 'internaldatahub/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/internaldatahub/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (491, 'truecharts/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (492, 'sylr/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/sylr/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (493, 'fivium/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/fivium/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (494, 'procentive/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/procentive/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (495, 'swsmirror/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (496, 'rizoa/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/rizoa/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (497, 'testing-farm/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/testing-farm/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (498, 'kube-ops/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/kube-ops/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (499, 'ecasa/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/ecasa/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (500, 'errm/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/errm/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (501, 'marco_antonioni/yugabytedb', 576, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'https://quay.io/repository/marco_antonioni/yugabytedb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (502, 'gitpodified-workspace-images/yugabytedb', 576, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'https://quay.io/repository/gitpodified-workspace-images/yugabytedb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (503, 'helmoperators/cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'https://quay.io/repository/helmoperators/cockroachdb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (504, 'operatorhubio/cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/cockroachdb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (505, 'openshift-community-operators/cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshift-community-operators/cockroachdb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (506, 'community-operators-pipeline/cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'https://quay.io/repository/community-operators-pipeline/cockroachdb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (507, 'openshift-community-operators/jaeger', 576, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'https://quay.io/repository/openshift-community-operators/jaeger', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (508, 'operatorhubio/jaeger', 576, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'https://quay.io/repository/operatorhubio/jaeger', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (510, 'travisez13/powershell', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/travisez13/powershell', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (511, 'redhatworkshops/powershell', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhatworkshops/powershell', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (512, 'mczernek/powershell', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mczernek/powershell', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (513, 'simplikube_ce/powershell', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/simplikube_ce/powershell', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (514, 'simplikube_ee/powershell', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/simplikube_ee/powershell', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (515, 'havoc/dds', 576, 663, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/havoc/dds', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (516, 'sisense/git', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sisense/git', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (517, 'sameersbn/gitlab', 576, NULL, NULL, 678, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/gitlab', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (518, 'sergey_gruntovsky/drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sergey_gruntovsky/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (519, 'fest-data-demo/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fest-data-demo/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (520, 'yasmanygm/hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/yasmanygm/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (521, 'isaacueca/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/isaacueca/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (522, 'lbovet/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/lbovet/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (523, 'jesusmartinezmendez3/neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/jesusmartinezmendez3/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (524, 'sabzco/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sabzco/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (525, 'ramonvanstijn/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ramonvanstijn/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (526, 'kylecooley/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kylecooley/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (527, 'syndesis_qe/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/syndesis_qe/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (528, 'feven/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/feven/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (529, 'nathan5508/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/nathan5508/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (530, 'mwasher/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mwasher/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (531, 'scentbird/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/scentbird/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (532, 'thekad/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/thekad/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (533, 'profects/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/profects/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (534, 'diabol/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/diabol/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (535, 'line0562/openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/line0562/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (536, 'anuj_sharma401/planview', 576, NULL, NULL, 156, NULL, NULL, NULL, NULL, 'https://quay.io/repository/anuj_sharma401/planview', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (537, 'truecharts/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/postgresql', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (538, 'opsmxpublic/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/opsmxpublic/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (539, 'redhat-aqe/rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhat-aqe/rabbitmq', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (540, 'devtron/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/devtron/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (541, 'truecharts/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (542, 'codefresh/redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/codefresh/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (543, 'rlex/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/rlex/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (544, 'aptible/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aptible/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (545, 'vahidm/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/vahidm/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (546, 'centerforopenscience/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/centerforopenscience/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (547, 'fmeneses/sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fmeneses/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (548, 'openshift-unified-hybrid-cloud/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshift-unified-hybrid-cloud/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (549, 'truecharts/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (550, 'isms/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/isms/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (551, 'redhat-cop/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhat-cop/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (552, 'factory2/sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/factory2/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (553, 'truecharts/splunk', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/splunk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (554, 'mayadicamora/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mayadicamora/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (555, 'vijay_kumar24/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/vijay_kumar24/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (556, 'bhagavan_basvani/wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bhagavan_basvani/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (557, 'codefresh/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://quay.io/repository/codefresh/haproxy', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (558, 'osism/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://quay.io/repository/osism/haproxy', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (559, 'alvaroaleman/haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://quay.io/repository/alvaroaleman/haproxy', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (560, 'opendatahub-contrib/spark', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://quay.io/repository/opendatahub-contrib/spark', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (561, 'crypto_dax/graphql', 576, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/crypto_dax/graphql', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (562, 'biocontainers/scala', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/scala', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (563, 'dawnskyliu/log4j', 576, NULL, 394, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dawnskyliu/log4j', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (564, 'biocontainers/spring', 576, NULL, 398, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/spring', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (565, 'sachin_hegde/spring', 576, NULL, 398, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sachin_hegde/spring', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (566, 'masoud_rahimi/react', 576, NULL, 413, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/masoud_rahimi/react', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (567, 'bedrock/centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bedrock/centos', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (568, 'nvlab/centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/nvlab/centos', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (569, 'nvlab/debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/nvlab/debian', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (570, 'lifebitai/ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/lifebitai/ubuntu', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (571, 'bedrock/fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bedrock/fedora', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (572, 'krvoora_ocm/windows', 580, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/krvoora_ocm/windows', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (573, 'genilink/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/genilink/php', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (574, 'aganzory/php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aganzory/php', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (575, 'cki/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cki/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (576, 'openshift-pipeline/python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/openshift-pipeline/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (577, 'smplatform/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/smplatform/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (578, 'genomenon/ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/genomenon/ruby', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (579, 'lonewulf/varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/lonewulf/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (580, 'jacksoncage/varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/jacksoncage/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (581, 'strathberry/varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/strathberry/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (582, 'charts/datadog', 576, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://quay.io/application/charts/datadog', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (583, 'hazelcast_cloud/hazelcast', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://quay.io/repository/hazelcast_cloud/hazelcast', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (584, '14west/hazelcast', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://quay.io/repository/14west/hazelcast', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (585, 'sunsingerus/clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/application/sunsingerus/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (586, 'kylecooley/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kylecooley/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (587, 'sdase/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sdase/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (588, 'truecharts/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (589, 'cloud-bulldozer/grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cloud-bulldozer/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (590, 'tommytran732/synapse', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tommytran732/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (591, 'rickypai/synapse', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/rickypai/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (592, 'certified-operators/sematext', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'https://quay.io/application/certified-operators/sematext', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (593, 'truecharts/mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://quay.io/repository/truecharts/mariadb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (594, 'karbon/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/karbon/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (595, 'radnmsdev/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/radnmsdev/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (596, 'waynesun09/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/waynesun09/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (597, 'sisense/traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/sisense/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (598, 'operator_testing/cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operator_testing/cockroachdb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (599, 'powerdock/powershell', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/powerdock/powershell', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (600, 'flysangel/git', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://quay.io/repository/flysangel/git', 'App'); + +-- Table: operator_images CREATE TABLE operator_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -12893,192 +13441,210 @@ CREATE TABLE operator_images ( FOREIGN KEY (runlib) REFERENCES entities (id), FOREIGN KEY (runtime) REFERENCES entities (id) ); -INSERT INTO operator_images VALUES(1,'Apache Spark Operator',576,584,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); -INSERT INTO operator_images VALUES(2,'Banzai Cloud Kafka Operator',576,323,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); -INSERT INTO operator_images VALUES(3,'Camel K Operator',576,323,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); -INSERT INTO operator_images VALUES(4,'GrdsCloud MySQL for Kubernetes',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); -INSERT INTO operator_images VALUES(5,'Hive for Red Hat OpenShift',576,323,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); -INSERT INTO operator_images VALUES(6,'IBM Spectrum Scale CSI Plugin Operator',576,323,NULL,605,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); -INSERT INTO operator_images VALUES(7,'Jenkins Operator',576,323,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); -INSERT INTO operator_images VALUES(8,'Postgresql Operator',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); -INSERT INTO operator_images VALUES(9,'Redis Operator',576,323,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); -INSERT INTO operator_images VALUES(10,'WildFly',576,323,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); -INSERT INTO operator_images VALUES(11,'MongoDB Enterprise Operator',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); -INSERT INTO operator_images VALUES(12,'Apache Spark Operator',576,NULL,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); -INSERT INTO operator_images VALUES(13,'Banzai Cloud Kafka Operator',576,NULL,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); -INSERT INTO operator_images VALUES(14,'Camel K Operator',576,NULL,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); -INSERT INTO operator_images VALUES(15,'GrdsCloud MySQL for Kubernetes',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); -INSERT INTO operator_images VALUES(16,'Hive for Red Hat OpenShift',576,NULL,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); -INSERT INTO operator_images VALUES(17,'IBM Spectrum Scale CSI Plugin Operator',576,NULL,NULL,605,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); -INSERT INTO operator_images VALUES(18,'Jenkins Operator',576,NULL,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); -INSERT INTO operator_images VALUES(19,'Postgresql Operator',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); -INSERT INTO operator_images VALUES(20,'Redis Operator',576,NULL,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); -INSERT INTO operator_images VALUES(21,'WildFly',576,NULL,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); -INSERT INTO operator_images VALUES(22,'MongoDB Enterprise Operator',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); -INSERT INTO operator_images VALUES(23,'Instana Agent Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,611,'instana/instana-agent-operator:0.3.7','https://github.com/instana/instana-agent-operator'); -INSERT INTO operator_images VALUES(24,'credstash-operator',576,NULL,NULL,612,NULL,NULL,NULL,NULL,'quay.io/ouzi/credstash-operator:v1.13.0','https://github.com/ouzi-dev/credstash-operator'); -INSERT INTO operator_images VALUES(25,'Snyk Operator',576,NULL,NULL,613,NULL,NULL,NULL,NULL,'docker.io/snyk/kubernetes-operator:1.59.3','https://github.com/snyk/kubernetes-monitor'); -INSERT INTO operator_images VALUES(26,'Akka Cluster Operator',576,NULL,NULL,614,NULL,NULL,NULL,NULL,'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0','https://github.com/lightbend/akka-cluster-operator'); -INSERT INTO operator_images VALUES(27,'Varnish Operator',576,NULL,NULL,NULL,615,NULL,NULL,NULL,'ibmcom/varnish-operator:0.27.2','https://github.com/IBM/varnish-operator'); -INSERT INTO operator_images VALUES(28,'Datadog Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,616,'datadog/operator:0.3.0','https://github.com/DataDog/datadog-operator'); -INSERT INTO operator_images VALUES(29,'Hazelcast Enterprise Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,618,'hazelcast/hazelcast-enterprise-operator:0.3.7','https://github.com/hazelcast/hazelcast-operator'); -INSERT INTO operator_images VALUES(30,'infinispan',576,NULL,NULL,619,NULL,NULL,NULL,NULL,'docker.io/jboss/infinispan-operator:0.3.0','https://github.com/infinispan/infinispan-operator'); -INSERT INTO operator_images VALUES(31,'Nuxeo Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,620,'docker.io/appzygy/nuxeo-operator:0.7.1','https://github.com/aceeric/nuxeo-operator'); -INSERT INTO operator_images VALUES(32,'ArangoDB',576,NULL,NULL,621,NULL,NULL,NULL,NULL,'arangodb/kube-arangodb:1.0.2','https://github.com/arangodb/kube-arangodb'); -INSERT INTO operator_images VALUES(33,'Eclipse Che',576,NULL,NULL,622,NULL,NULL,NULL,NULL,'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f','https://github.com/eclipse-che/che-operator'); -INSERT INTO operator_images VALUES(34,'AWS S3 Operator',576,NULL,NULL,623,NULL,NULL,NULL,NULL,'quay.io/screeley44/aws-s3-provisioner:v1.0.0','https://github.com/yard-turkey/aws-s3-provisioner'); -INSERT INTO operator_images VALUES(35,'Altinity ClickHouse Operator',576,NULL,NULL,624,NULL,NULL,NULL,NULL,'altinity/clickhouse-operator:0.9.9','https://github.com/altinity/clickhouse-operator'); -INSERT INTO operator_images VALUES(36,'MinIO Operator',576,NULL,NULL,625,NULL,NULL,NULL,NULL,'minio/k8s-operator:1.0.3','https://github.com/minio/minio-operator'); -INSERT INTO operator_images VALUES(37,'Elastic Cloud on Kubernetes',576,NULL,NULL,626,NULL,NULL,NULL,NULL,'docker.elastic.co/eck/eck-operator:1.0.0-beta1','https://github.com/elastic/cloud-on-k8s'); -INSERT INTO operator_images VALUES(38,'Percona XtraDB Cluster Operator',576,NULL,NULL,627,NULL,NULL,NULL,NULL,'percona/percona-xtradb-cluster-operator:1.7.0','https://github.com/percona/percona-xtradb-cluster-operator'); -INSERT INTO operator_images VALUES(39,'Keycloak Operator',576,NULL,NULL,628,NULL,NULL,NULL,NULL,'quay.io/keycloak/keycloak-operator:9.0.2','https://github.com/keycloak/keycloak-operator'); -INSERT INTO operator_images VALUES(40,'Grafana Operator',576,NULL,NULL,629,NULL,NULL,NULL,NULL,'quay.io/integreatly/grafana-operator:v3.10.1','https://github.com/integr8ly/grafana-operator'); -INSERT INTO operator_images VALUES(41,'Mattermost Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,630,'docker.io/mattermost/mattermost-operator:v0.5.0','https://github.com/mattermost/mattermost-operator'); -INSERT INTO operator_images VALUES(42,'synapse-helm',576,NULL,NULL,631,NULL,NULL,NULL,NULL,'quay.io/mgoerens/synapse-helm:v0.0.11','https://github.com/opdev/synapse-helm'); -INSERT INTO operator_images VALUES(43,'IBM Cloud IAM Operator',576,NULL,NULL,632,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-iam-operator:0.1.0','https://github.com/IBM/ibmcloud-iam-operator'); -INSERT INTO operator_images VALUES(44,'Knative Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,633,'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0','https://github.com/knative/operator'); -INSERT INTO operator_images VALUES(45,'Cassandra',576,NULL,NULL,634,NULL,NULL,NULL,NULL,'gcr.io/cassandra-operator/cassandra-operator:v2.0.0','https://github.com/instaclustr/cassandra-operator'); -INSERT INTO operator_images VALUES(46,'Kubeflow',576,NULL,NULL,NULL,NULL,NULL,NULL,635,'aipipeline/kubeflow-operator:v1.0.0','https://github.com/kubeflow/kfctl'); -INSERT INTO operator_images VALUES(47,'Openshift Qiskit Operator',576,NULL,NULL,636,NULL,NULL,NULL,NULL,'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator','https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); -INSERT INTO operator_images VALUES(48,'Azure Service Operator',576,NULL,NULL,637,NULL,NULL,NULL,NULL,'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207','https://github.com/Azure/azure-service-operator'); -INSERT INTO operator_images VALUES(49,'Strimzi',576,NULL,NULL,NULL,NULL,NULL,NULL,638,'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6','https://github.com/strimzi/strimzi-kafka-operator'); -INSERT INTO operator_images VALUES(50,'Sematext Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,639,'docker.io/sematext/sematext-operator:1.0.33','https://github.com/sematext/sematext-operator'); -INSERT INTO operator_images VALUES(51,'Eclipse Hawkbit',576,NULL,NULL,640,NULL,NULL,NULL,NULL,'docker.io/ctron/hawkbit-operator:0.1.4','https://github.com/ctron/hawkbit-operator'); -INSERT INTO operator_images VALUES(52,'Eclipse Ditto',576,NULL,NULL,641,NULL,NULL,NULL,NULL,'docker.io/ctron/ditto-operator:0.1.0','https://github.com/ctron/ditto-operator'); -INSERT INTO operator_images VALUES(53,'Mariadb Operator',576,NULL,NULL,642,NULL,NULL,NULL,NULL,'quay.io/manojdhanorkar/mariadb-operator:v0.0.1','https://github.com/abalki001/mariadb-operator'); -INSERT INTO operator_images VALUES(54,'Zadara Operator',576,NULL,NULL,643,NULL,NULL,NULL,NULL,'zadara/zoperator:0.3.6','https://github.com/zadarastorage/zadara-operator'); -INSERT INTO operator_images VALUES(55,'Istio',576,NULL,NULL,644,NULL,NULL,NULL,NULL,'banzaicloud/istio-operator:0.1.6','https://github.com/banzaicloud/istio-operator/tree/release-1.1'); -INSERT INTO operator_images VALUES(56,'Vault Helm',576,NULL,NULL,645,NULL,NULL,NULL,NULL,'quay.io/brejohns/vault-helm:0.0.1','https://github.com/SDBrett/vault-helm'); -INSERT INTO operator_images VALUES(57,'druid-operator',576,NULL,NULL,646,NULL,NULL,NULL,NULL,'druidio/druid-operator:0.0.6','https://github.com/druid-io/druid-operator'); -INSERT INTO operator_images VALUES(58,'etcd',576,NULL,NULL,647,NULL,NULL,NULL,NULL,'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b','https://github.com/coreos/etcd-operator'); -INSERT INTO operator_images VALUES(59,'Traefikee Operator',576,NULL,NULL,NULL,648,NULL,NULL,NULL,'containous/traefikee-operator:v0.3.0','https://github.com/containous/traefikee-operator'); -INSERT INTO operator_images VALUES(60,'IBM Cloud Operator',576,NULL,NULL,649,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-operator:0.1.10','https://github.com/IBM/cloud-operators'); -INSERT INTO operator_images VALUES(61,'Yugabyte Operator',576,NULL,NULL,650,NULL,NULL,NULL,NULL,'quay.io/yugabyte/yugabytedb-operator','https://github.com/yugabyte/yugabyte-operator'); -INSERT INTO operator_images VALUES(62,'CockroachDB',576,NULL,NULL,651,NULL,NULL,NULL,NULL,'quay.io/helmoperators/cockroachdb:v3.0.7','https://github.com/dmesser/cockroachdb-operator'); -INSERT INTO operator_images VALUES(63,'Community Jaeger Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,652,'docker.io/jaegertracing/jaeger-operator:1.11.1','https://github.com/jaegertracing/jaeger-operator'); -INSERT INTO operator_images VALUES(64,'IoT simulator',576,NULL,NULL,46,NULL,NULL,NULL,NULL,'','https://github.com/ctron/iot-simulator-operator'); -INSERT INTO operator_images VALUES(65,'Elasticsearch (ECK) Operator',576,NULL,NULL,47,NULL,NULL,NULL,NULL,'','https://github.com/elastic/cloud-on-k8s'); -INSERT INTO operator_images VALUES(66,'Elasticsearch Phenix Operator',576,NULL,NULL,47,NULL,NULL,NULL,NULL,'','https://github.com/Carrefour-Group/elastic-phenix-operator'); -INSERT INTO operator_images VALUES(67,'Logging Operator',576,NULL,NULL,47,NULL,NULL,NULL,NULL,'["''quay.io/opstree/logging-operator:v0.3.0''"]','https://github.com/ot-container-kit/logging-operator'); -INSERT INTO operator_images VALUES(68,'AWS Controllers for Kubernetes - Amazon ElastiCache',576,NULL,NULL,47,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(69,'Elasticsearch Index Operator',576,NULL,NULL,47,NULL,NULL,NULL,NULL,'','https://github.com/IBM/esindex-operator'); -INSERT INTO operator_images VALUES(70,'Prometheus Exporter Operator',576,NULL,NULL,47,NULL,NULL,NULL,NULL,'["''quay.io/3scale/prometheus-exporter-operator:v0.2.4''"]','https://github.com/3scale/prometheus-exporter-operator'); -INSERT INTO operator_images VALUES(71,'Kong Operator',576,NULL,NULL,88,NULL,NULL,NULL,NULL,'','https://github.com/kong/kong-operator'); -INSERT INTO operator_images VALUES(72,'MongoDB Operator',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'["''quay.io/opstree/mongodb-operator:v0.3.0''"]','https://github.com/ot-container-kit/mongodb-operator'); -INSERT INTO operator_images VALUES(73,'MongoDB Atlas Operator',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'["''quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.1.0''"]',''); -INSERT INTO operator_images VALUES(74,'Percona Distribution for MongoDB Operator',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'','https://github.com/percona/percona-server-mongodb-operator'); -INSERT INTO operator_images VALUES(75,'Percona Distribution for MySQL Operator',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'','https://github.com/percona/percona-xtradb-cluster-operator'); -INSERT INTO operator_images VALUES(76,'PlanetScale Operator for Vitess',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'',''); -INSERT INTO operator_images VALUES(77,'Percona Operator for PostgreSQL',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'','https://github.com/percona/percona-postgresql-operator'); -INSERT INTO operator_images VALUES(78,'PostgreSQL Operator by Dev4Ddevs.com',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'["''quay.io/dev4devs-com/postgresql-operator:0.1.1''"]','https://github.com/dev4devs-com/postgresql-operator'); -INSERT INTO operator_images VALUES(79,'Crunchy Postgres for Kubernetes',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'','https://github.com/CrunchyData/postgres-operator'); -INSERT INTO operator_images VALUES(80,'EDB Postgres for Kubernetes',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'["''quay.io/enterprisedb/cloud-native-postgresql''"]','https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/'); -INSERT INTO operator_images VALUES(81,'Postgres-Operator',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'','https://github.com/zalando/postgres-operator'); -INSERT INTO operator_images VALUES(82,'Ext Postgres Operator',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'','https://github.com/movetokube/postgres-operator'); -INSERT INTO operator_images VALUES(83,'Robin Cloud Native Storage',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'',''); -INSERT INTO operator_images VALUES(84,'Redis Enterprise',576,NULL,NULL,168,NULL,NULL,NULL,NULL,'','https://github.com/RedisLabs/redis-enterprise-k8s-docs'); -INSERT INTO operator_images VALUES(85,'Splunk Operator',576,NULL,NULL,188,NULL,NULL,NULL,NULL,'',''); -INSERT INTO operator_images VALUES(86,'Encrypted Images Key Syncer Helm Operator',576,NULL,NULL,209,NULL,NULL,NULL,NULL,'["''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''"]','https://github.com/IBM/k8s-enc-image-operator'); -INSERT INTO operator_images VALUES(87,'Joget DX on Apache Tomcat',576,NULL,NULL,NULL,260,NULL,NULL,NULL,'','https://github.com/jogetworkflow/'); -INSERT INTO operator_images VALUES(88,'APIcast',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'["''quay.io/3scale/apicast-operator:v0.4.0''"]','https://github.com/3scale/apicast-operator'); -INSERT INTO operator_images VALUES(89,'Spark Operator',576,NULL,NULL,NULL,280,NULL,NULL,NULL,'','https://github.com/GoogleCloudPlatform/spark-on-k8s-operator'); -INSERT INTO operator_images VALUES(90,'Kubestone',576,NULL,NULL,NULL,280,NULL,NULL,NULL,'','https://github.com/xridge/kubestone'); -INSERT INTO operator_images VALUES(91,'Flink Kubernetes Operator',576,301,NULL,NULL,NULL,NULL,NULL,NULL,'["''docker.io/apache/flink-kubernetes-operator:1.0.1''"]','https://github.com/apache/flink-kubernetes-operator.git'); -INSERT INTO operator_images VALUES(92,'Alvearie Imaging Ingestion Operator',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/Alvearie/imaging-ingestion'); -INSERT INTO operator_images VALUES(93,'DataStax Kubernetes Operator for Apache Cassandra',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/k8ssandra/cass-operator'); -INSERT INTO operator_images VALUES(94,'Qserv operator',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/lsst/qserv-operator'); -INSERT INTO operator_images VALUES(95,'Prometheus Operator',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'["''quay.io/prometheus-operator/prometheus-operator:v0.47.0''"]','https://github.com/prometheus-operator/prometheus-operator'); -INSERT INTO operator_images VALUES(96,'Rook-Ceph',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/rook/rook'); -INSERT INTO operator_images VALUES(97,'Argo CD',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'["''quay.io/argoprojlabs/argocd-operator''"]','https://github.com/argoproj-labs/argocd-operator'); -INSERT INTO operator_images VALUES(98,'Starboard Operator',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'["''docker.io/aquasec/starboard-operator:0.15.6''"]','https://github.com/aquasecurity/starboard'); -INSERT INTO operator_images VALUES(99,'TiDB Operator',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/pingcap/tidb-operator'); -INSERT INTO operator_images VALUES(100,'Altinity Operator for ClickHouse',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/altinity/clickhouse-operator'); -INSERT INTO operator_images VALUES(101,'Flux',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'','https://fluxcd.io/docs/'); -INSERT INTO operator_images VALUES(102,'RocketMQ Operator',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/apache/rocketmq-operator'); -INSERT INTO operator_images VALUES(103,'StorageOS',576,303,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/storageos/operator'); -INSERT INTO operator_images VALUES(104,'Lightbend Console Operator',576,306,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/lightbend/console-charts/tree/master/operator'); -INSERT INTO operator_images VALUES(105,'External Secrets Operator',576,323,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/external-secrets/external-secrets-helm-operator'); -INSERT INTO operator_images VALUES(106,'Intel Device Plugins Operator',576,323,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/intel/intel-device-plugins-for-kubernetes'); -INSERT INTO operator_images VALUES(107,'silicom-sts-operator',576,323,NULL,NULL,NULL,NULL,NULL,NULL,'["''quay.io/silicom/sts-operator:v0.0.1''"]','github.com/silicomdk/sts-operator'); -INSERT INTO operator_images VALUES(108,'API Operator for Kubernetes',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/wso2/k8s-api-operator'); -INSERT INTO operator_images VALUES(109,'KEDA',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/kedacore/keda-olm-operator'); -INSERT INTO operator_images VALUES(110,'WSO2 API Manager Operator for Kubernetes',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/wso2/k8s-wso2am-operator'); -INSERT INTO operator_images VALUES(111,'AWS Controllers for Kubernetes - Amazon API Gateway v2',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(112,'AWS Controllers for Kubernetes - Amazon Application Auto Scaling',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(113,'AWS Controllers for Kubernetes - Amazon DynamoDB',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(114,'AWS Controllers for Kubernetes - Amazon EC2',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(115,'AWS Controllers for Kubernetes - Amazon ECR',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(116,'AWS Controllers for Kubernetes - Amazon EKS',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(117,'AWS Controllers for Kubernetes - Amazon EMR on EKS',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(118,'AWS Controllers for Kubernetes - Amazon IAM',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(119,'AWS Controllers for Kubernetes - Amazon KMS',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(120,'AWS Controllers for Kubernetes - Amazon Lambda',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(121,'AWS Controllers for Kubernetes - Amazon MQ',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(122,'AWS Controllers for Kubernetes - Amazon OpenSearch Service',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(123,'AWS Controllers for Kubernetes - Amazon RDS',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(124,'AWS Controllers for Kubernetes - Amazon S3',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(125,'AWS Controllers for Kubernetes - Amazon SageMaker',576,353,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images VALUES(126,'Falco Operator',576,355,NULL,NULL,NULL,NULL,NULL,NULL,'["''docker.io/falcosecurity/falco-operator-helm:0.7.6''"]','https://github.com/falcosecurity/falco-operator/tree/helm-based-operator'); -INSERT INTO operator_images VALUES(127,'Kubemq Enterprise Operator',576,355,NULL,NULL,NULL,NULL,NULL,NULL,'["''docker.io/kubemq/kubemq-operator:latest''"]','https://github.com/kubemq-io/kubemq-operator'); -INSERT INTO operator_images VALUES(128,'Apicurio Registry Operator',576,355,NULL,NULL,NULL,NULL,NULL,NULL,'["''quay.io/apicurio/apicurio-registry-operator:1.0.0''"]','https://github.com/Apicurio/apicurio-registry-operator'); -INSERT INTO operator_images VALUES(129,'GitLab',576,360,NULL,NULL,NULL,NULL,NULL,NULL,'','https://gitlab.com/gitlab-org/cloud-native/gitlab-operator'); -INSERT INTO operator_images VALUES(130,'GitLab Runner',576,360,NULL,NULL,NULL,NULL,NULL,NULL,'','https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator'); -INSERT INTO operator_images VALUES(131,'nfd-operator',576,362,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/kubernetes-sigs/node-feature-discovery-operator'); -INSERT INTO operator_images VALUES(132,'Appsody Operator',576,364,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/appsody/appsody-operator'); -INSERT INTO operator_images VALUES(133,'Runtime Component Operator',576,364,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/application-stacks/runtime-component-operator'); -INSERT INTO operator_images VALUES(134,'Open Liberty Operator',576,NULL,398,NULL,NULL,NULL,NULL,NULL,'','https://github.com/OpenLiberty/open-liberty-operator'); -INSERT INTO operator_images VALUES(135,'Kogito',576,NULL,398,NULL,NULL,NULL,NULL,NULL,'["''quay.io/kiegroup/kogito-operator:1.24.0''"]','https://github.com/kiegroup/kogito-operator'); -INSERT INTO operator_images VALUES(136,'Composable',424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/IBM/composable'); -INSERT INTO operator_images VALUES(137,'IBM COS Bucket Operator',424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/IBM/cos-bucket-operator'); -INSERT INTO operator_images VALUES(138,'Event Streams Topic',424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/IBM/event-streams-topic'); -INSERT INTO operator_images VALUES(139,'Hybrid Application Model Operator',424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'["''quay.io/hybridappio/ham-deploy:0.1.0''"]','https://github.com/hybridapp-io/ham-deploy'); -INSERT INTO operator_images VALUES(140,'IBM Application Gateway Operator',424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/IBM-Security/ibm-application-gateway-operator'); -INSERT INTO operator_images VALUES(141,'IBM block storage CSI driver operator',424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/IBM/ibm-block-csi-operator'); -INSERT INTO operator_images VALUES(142,'Ibm Quantum Operator',424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'["''quay.io/application/husky_parul/ibm-quantum-operator''"]','https://github.com/redhat-et/ibm-quantum-operator'); -INSERT INTO operator_images VALUES(143,'IBM Security Verify Access Operator',424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/IBM-Security/verify-access-operator'); -INSERT INTO operator_images VALUES(144,'QiskitPlayground',424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'["''docker.io/qiskit/operator:0.1''"]','https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator'); -INSERT INTO operator_images VALUES(145,'Submariner',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''quay.io/submariner/submariner-operator:0.11.0''"]','https://github.com/submariner-io/submariner-operator'); -INSERT INTO operator_images VALUES(146,'Upbound Universal Crossplane (UXP)',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'','https://github.com/upbound/universal-crossplane'); -INSERT INTO operator_images VALUES(147,'BeeGFS CSI Driver',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'','https://github.com/netapp/beegfs-csi-driver'); -INSERT INTO operator_images VALUES(148,'cluster-impairment-operator',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''"]','https://github.com/redhat-performance/cluster-impairment-operator'); -INSERT INTO operator_images VALUES(149,'Kogito Knative Eventing Source',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'','https://github.com/knative-sandbox/eventing-kogito'); -INSERT INTO operator_images VALUES(150,'k8gb',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'','https://github.com/k8gb-io/k8gb'); -INSERT INTO operator_images VALUES(151,'Kubernetes NMState Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''"]','https://github.com/nmstate/kubernetes-nmstate'); -INSERT INTO operator_images VALUES(152,'MARIN3R',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''quay.io/3scale/marin3r''"]','https://github.com/3scale-ops/marin3r'); -INSERT INTO operator_images VALUES(153,'MetalLB Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''quay.io/metallb/metallb-operator''"]','https://github.com/metallb/metallb-operator'); -INSERT INTO operator_images VALUES(154,'NetObserv Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''quay.io/netobserv/network-observability-operator:0.1.3''"]','https://github.com/netobserv/network-observability-operator'); -INSERT INTO operator_images VALUES(155,'NeuVector Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'','https://github.com/neuvector/neuvector-operator'); -INSERT INTO operator_images VALUES(156,'Network Service Mesh Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''quay.io/acmenezes/nsm-operator:v0.0.1''"]','https://github.com/acmenezes/nsm-operator'); -INSERT INTO operator_images VALUES(157,'Prisma Cloud Compute Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''quay.io/prismacloud/pcc-operator''"]','https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator'); -INSERT INTO operator_images VALUES(158,'Routernetes',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''quay.io/routernetes/routernetes-operator:0.0.5''"]','https://github.com/routernetes/routernetes-operator'); -INSERT INTO operator_images VALUES(159,'skydive-operator',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''docker.io/skydive/skydive-operator:0.0.50''"]','https://github.com/skydive-project/skydive-golang-operator'); -INSERT INTO operator_images VALUES(160,'Tf Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,497,'["''docker.io/tungstenfabric/tf-operator:latest''"]','https://github.com/tungstenfabric/tf-operator'); -INSERT INTO operator_images VALUES(161,'Nexus Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,503,'["''quay.io/m88i/nexus-operator:0.6.0''"]','https://github.com/m88i/nexus-operator'); -INSERT INTO operator_images VALUES(162,'Anchore Engine Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,503,'["''docker.io/anchore/engine-operator:v0.1.3''"]','https://github.com/anchore/engine-operator'); -INSERT INTO operator_images VALUES(163,'Carbonetes Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,503,'["''docker.io/carbonetes/operator:1.0.4''"]','https://github.com/carbonetes/carbonetes-analyzer'); -INSERT INTO operator_images VALUES(164,'AtlasMap Operator',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'["''quay.io/atlasmap/atlasmap-operator:0.4.1''"]','https://github.com/atlasmap/atlasmap-operator'); -INSERT INTO operator_images VALUES(165,'Cryostat Operator',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'["''quay.io/cryostat/cryostat-operator:2.1.1''"]','github.com/cryostatio/cryostat-operator'); -INSERT INTO operator_images VALUES(166,'Hazelcast Platform Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,618,'["''docker.io/hazelcast/hazelcast-platform-operator:5.3''"]','https://docs.hazelcast.com/operator/latest/'); -INSERT INTO operator_images VALUES(167,'Infinispan Operator',576,NULL,NULL,619,NULL,NULL,NULL,NULL,'["''quay.io/infinispan/operator:2.2.4.Final''"]','https://github.com/infinispan/infinispan-operator'); -INSERT INTO operator_images VALUES(168,'Minio Operator',576,NULL,NULL,625,NULL,NULL,NULL,NULL,'["''quay.io/minio/operator''"]','https://github.com/minio/operator'); -INSERT INTO operator_images VALUES(169,'YAKS Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,633,'["''docker.io/citrusframework/yaks:0.10.0''"]','https://github.com/citrusframework/yaks'); -INSERT INTO operator_images VALUES(170,'Istio Workspace',576,NULL,NULL,644,NULL,NULL,NULL,NULL,'["''quay.io/maistra/istio-workspace:v0.5.1''"]','https://github.com/maistra/istio-workspace'); -INSERT INTO operator_images VALUES(171,'Kiali Operator',576,NULL,NULL,644,NULL,NULL,NULL,NULL,'["''quay.io/kiali/kiali-operator:v1.53.0''"]','https://github.com/kiali/kiali'); -INSERT INTO operator_images VALUES(172,'Vault Operator',576,NULL,NULL,645,NULL,NULL,NULL,NULL,'','https://github.com/banzaicloud/bank-vaults/tree/master/operator'); -INSERT INTO operator_images VALUES(173,'ks-releaser',576,NULL,NULL,677,NULL,NULL,NULL,NULL,'','https://github.com/kubesphere-sigs/ks-releaser-operator'); -INSERT INTO operator_images VALUES(174,'Argo CD Operator (Helm)',576,NULL,NULL,677,NULL,NULL,NULL,NULL,'["''quay.io/disposab1e/argocd-operator-helm''"]','https://github.com/disposab1e/argocd-operator-helm.git'); -INSERT INTO operator_images VALUES(175,'Multicluster Subscription Operator',576,NULL,NULL,677,NULL,NULL,NULL,NULL,'["''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''"]','https://github.com/open-cluster-management/multicloud-operators-subscription'); -INSERT INTO operator_images VALUES(176,'Weave GitOps Terraform Controller',576,NULL,NULL,677,NULL,NULL,NULL,NULL,'','https://weaveworks.github.io/tf-controller/'); -DELETE FROM sqlite_sequence; -INSERT INTO sqlite_sequence VALUES('docker_baseos_images',13); -INSERT INTO sqlite_sequence VALUES('docker_environment_variables',28); -INSERT INTO sqlite_sequence VALUES('docker_images',208); -INSERT INTO sqlite_sequence VALUES('entities',698); -INSERT INTO sqlite_sequence VALUES('entity_mentions',7721); -INSERT INTO sqlite_sequence VALUES('entity_relations',1434); -INSERT INTO sqlite_sequence VALUES('entity_types',12); -INSERT INTO sqlite_sequence VALUES('entity_versions',3468); -INSERT INTO sqlite_sequence VALUES('openshift_baseos_images',1); -INSERT INTO sqlite_sequence VALUES('openshift_images',131); -INSERT INTO sqlite_sequence VALUES('operator_images',176); -COMMIT; +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (1, 'Apache Spark Operator', 426, 331, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (2, 'Banzai Cloud Kafka Operator', 426, 323, NULL, 9, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/banzaicloud/kafka-operator', 'https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (3, 'Camel K Operator', 426, 323, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.3.0', 'https://github.com/apache/camel-k'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (4, 'GrdsCloud MySQL for Kubernetes', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/grds/mysql-operator', 'https://github.com/GrdsCloud'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (5, 'Hive for Red Hat OpenShift', 426, 323, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive:v1.0.17', 'https://github.com/openshift/hive'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (6, 'IBM Spectrum Scale CSI Plugin Operator', 426, 323, NULL, 74, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0', 'https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (7, 'Jenkins Operator', 426, 323, NULL, 90, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/virtuslab/jenkins-operator', 'https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (8, 'Postgresql Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (9, 'Redis Operator', 426, 323, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.3.0', 'https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (10, 'WildFly', 426, 323, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator:0.3.0', 'https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (11, 'MongoDB Enterprise Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (23, 'Instana Agent Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'https://hub.docker.com/r/instana/instana-agent-operator', 'https://github.com/instana/instana-agent-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (24, 'credstash-operator', 426, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'quay.io/ouzi/credstash-operator:v1.13.0', 'https://github.com/ouzi-dev/credstash-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (25, 'Snyk Operator', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator:1.59.3', 'https://github.com/snyk/kubernetes-monitor'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (26, 'Akka Cluster Operator', 426, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0', 'https://github.com/lightbend/akka-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (27, 'Varnish Operator', 426, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/varnish-operator', 'https://github.com/IBM/varnish-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (28, 'Datadog Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://hub.docker.com/r/datadog/operator', 'https://github.com/DataDog/datadog-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (29, 'Hazelcast Enterprise Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://hub.docker.com/r/hazelcast/hazelcast-enterprise-operator', 'https://github.com/hazelcast/hazelcast-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (30, 'infinispan', 426, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'docker.io/jboss/infinispan-operator:0.3.0', 'https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (31, 'Nuxeo Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'docker.io/appzygy/nuxeo-operator:0.7.1', 'https://github.com/aceeric/nuxeo-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (32, 'ArangoDB', 426, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/arangodb/kube-arangodb', 'https://github.com/arangodb/kube-arangodb'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (33, 'Eclipse Che', 426, NULL, NULL, 622, NULL, NULL, NULL, NULL, 'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f', 'https://github.com/eclipse-che/che-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (34, 'AWS S3 Operator', 426, NULL, NULL, 623, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner:v1.0.0', 'https://github.com/yard-turkey/aws-s3-provisioner'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (35, 'Altinity ClickHouse Operator', 426, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/altinity/clickhouse-operator', 'https://github.com/altinity/clickhouse-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (36, 'MinIO Operator', 426, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/minio/k8s-operator', 'https://github.com/minio/minio-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (37, 'Elastic Cloud on Kubernetes', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'docker.elastic.co/eck/eck-operator:1.0.0-beta1', 'https://github.com/elastic/cloud-on-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (38, 'Percona XtraDB Cluster Operator', 426, NULL, NULL, 627, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/percona/percona-xtradb-cluster-operator', 'https://github.com/percona/percona-xtradb-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (39, 'Keycloak Operator', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator:9.0.2', 'https://github.com/keycloak/keycloak-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (40, 'Grafana Operator', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'quay.io/integreatly/grafana-operator:v3.10.1', 'https://github.com/integr8ly/grafana-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (41, 'Mattermost Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator:v0.5.0', 'https://github.com/mattermost/mattermost-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (42, 'synapse-helm', 426, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'quay.io/mgoerens/synapse-helm:v0.0.11', 'https://github.com/opdev/synapse-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (43, 'IBM Cloud IAM Operator', 426, NULL, NULL, 632, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cloudoperators/ibmcloud-iam-operator', 'https://github.com/IBM/ibmcloud-iam-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (44, 'Knative Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0', 'https://github.com/knative/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (45, 'Cassandra', 426, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'gcr.io/cassandra-operator/cassandra-operator:v2.0.0', 'https://github.com/instaclustr/cassandra-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (46, 'Kubeflow', 426, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'https://hub.docker.com/r/aipipeline/kubeflow-operator', 'https://github.com/kubeflow/kfctl'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (47, 'Openshift Qiskit Operator', 426, NULL, NULL, 636, NULL, NULL, NULL, NULL, 'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (48, 'Azure Service Operator', 426, NULL, NULL, 637, NULL, NULL, NULL, NULL, 'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207', 'https://github.com/Azure/azure-service-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (49, 'Strimzi', 426, NULL, NULL, NULL, NULL, NULL, NULL, 638, 'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6', 'https://github.com/strimzi/strimzi-kafka-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (50, 'Sematext Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator:1.0.33', 'https://github.com/sematext/sematext-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (51, 'Eclipse Hawkbit', 426, NULL, NULL, 640, NULL, NULL, NULL, NULL, 'docker.io/ctron/hawkbit-operator:0.1.4', 'https://github.com/ctron/hawkbit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (52, 'Eclipse Ditto', 426, NULL, NULL, 641, NULL, NULL, NULL, NULL, 'docker.io/ctron/ditto-operator:0.1.0', 'https://github.com/ctron/ditto-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (53, 'Mariadb Operator', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator:v0.0.1', 'https://github.com/abalki001/mariadb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (54, 'Zadara Operator', 426, NULL, NULL, 643, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/zadara/zoperator', 'https://github.com/zadarastorage/zadara-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (55, 'Istio', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/banzaicloud/istio-operator', 'https://github.com/banzaicloud/istio-operator/tree/release-1.1'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (56, 'Vault Helm', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm:0.0.1', 'https://github.com/SDBrett/vault-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (57, 'druid-operator', 426, NULL, NULL, 646, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/druidio/druid-operator', 'https://github.com/druid-io/druid-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (58, 'etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b', 'https://github.com/coreos/etcd-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (59, 'Traefikee Operator', 426, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://hub.docker.com/r/containous/traefikee-operator', 'https://github.com/containous/traefikee-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (60, 'IBM Cloud Operator', 426, NULL, NULL, 649, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cloudoperators/ibmcloud-operator', 'https://github.com/IBM/cloud-operators'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (61, 'Yugabyte Operator', 426, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'quay.io/yugabyte/yugabytedb-operator', 'https://github.com/yugabyte/yugabyte-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (62, 'CockroachDB', 426, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb:v3.0.7', 'https://github.com/dmesser/cockroachdb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (63, 'Community Jaeger Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'docker.io/jaegertracing/jaeger-operator:1.11.1', 'https://github.com/jaegertracing/jaeger-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (64, 'strimzi', 576, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'quay.io/strimzi/operator', 'https://github.com/strimzi/strimzi-kafka-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (65, 'eclipse ditto', 576, NULL, NULL, 46, NULL, NULL, NULL, NULL, '', 'https://github.com/ctron/ditto-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (66, 'eclipse hawkbit', 576, NULL, NULL, 46, NULL, NULL, NULL, NULL, '', 'https://github.com/ctron/hawkbit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (67, 'iot simulator', 576, NULL, NULL, 46, NULL, NULL, NULL, NULL, '', 'https://github.com/ctron/iot-simulator-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (68, 'elasticsearch (eck) operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/elastic/cloud-on-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (69, 'elasticsearch phenix operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/Carrefour-Group/elastic-phenix-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (70, 'nuxeo operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'docker.io/appzygy/nuxeo-operator:0.7.1', 'https://github.com/aceeric/nuxeo-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (71, 'logging operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'quay.io/opstree/logging-operator:v0.4.0', 'https://github.com/ot-container-kit/logging-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (72, 'aws controllers for kubernetes - amazon elasticache', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (73, 'elasticsearch index operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/esindex-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (74, 'prometheus exporter operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'quay.io/3scale/prometheus-exporter-operator:v0.2.4', 'https://github.com/3scale/prometheus-exporter-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (75, 'kong operator', 576, NULL, NULL, 88, NULL, NULL, NULL, NULL, '', 'https://github.com/kong/kong-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (76, 'kong gateway operator', 576, NULL, NULL, 88, NULL, NULL, NULL, NULL, '', 'https://kong.github.io/gateway-operator-docs'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (77, 'jenkins operator', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, '', 'https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (78, 'mongodb enterprise operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator-ubi:1.17.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (79, 'mongodb operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/opstree/mongodb-operator:v0.3.0', 'https://github.com/ot-container-kit/mongodb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (80, 'mongodb atlas operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.3.0', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (81, 'percona distribution for mongodb operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, '', 'https://github.com/percona/percona-server-mongodb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (82, 'grdscloud mysql for kubernetes', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, '', 'https://github.com/GrdsCloud'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (83, 'percona distribution for mysql operator', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, '', 'https://github.com/percona/percona-xtradb-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (84, 'planetscale operator for vitess', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (85, 'postgresql operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (86, 'percona operator for postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'docker.io/percona/percona-postgresql-operator:1.3.0-postgres-operator', 'https://github.com/percona/percona-postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (87, 'postgresql operator by dev4ddevs.com', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/dev4devs-com/postgresql-operator:0.1.1', 'https://github.com/dev4devs-com/postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (88, 'crunchy postgres for kubernetes', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/CrunchyData/postgres-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (89, 'edb postgres for kubernetes', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/enterprisedb/cloud-native-postgresql', 'https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (90, 'postgres-operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/zalando/postgres-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (91, 'ext postgres operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/movetokube/postgres-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (92, 'robin cloud native storage', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (93, 'rabbitmq-cluster-operator', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'docker.io/rabbitmqoperator/cluster-operator:2.0.0', 'https://github.com/rabbitmq/cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (94, 'rabbitmq-messaging-topology-operator', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'docker.io/rabbitmqoperator/messaging-topology-operator:1.8.0', 'https://github.com/rabbitmq/messaging-topology-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (95, 'rabbitmq-single-active-consumer-operator', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'docker.io/rabbitmqoperator/single-active-consumer-operator:0.2.2', 'https://github.com/rabbitmq/single-active-consumer-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (96, 'redis operator', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.11.0', 'https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (97, 'redis enterprise', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, '', 'https://github.com/RedisLabs/redis-enterprise-k8s-docs'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (98, 'splunk operator', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'docker.io/splunk/splunk-operator', 'https://github.com/splunk/splunk-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (99, 'encrypted images key syncer helm operator', 576, NULL, NULL, 209, NULL, NULL, NULL, NULL, 'docker.io/lumjjb/enc-key-sync-operator:v0.0.1', 'https://github.com/IBM/k8s-enc-image-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (100, 'joget dx on apache tomcat', 576, NULL, NULL, NULL, 260, NULL, NULL, NULL, '', 'https://github.com/jogetworkflow/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (101, 'apicast', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'quay.io/3scale/apicast-operator:v0.6.0', 'https://github.com/3scale/apicast-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (102, 'spark operator', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, '', 'https://github.com/GoogleCloudPlatform/spark-on-k8s-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (103, 'apache spark operator', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (104, 'kubestone', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, '', 'https://github.com/xridge/kubestone'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (105, 'flink kubernetes operator', 576, 301, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/apache/flink-kubernetes-operator:1.0.1', 'https://github.com/apache/flink-kubernetes-operator.git'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (106, 'alvearie imaging ingestion operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/Alvearie/imaging-ingestion'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (107, 'datastax kubernetes operator for apache cassandra', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/k8ssandra/cass-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (108, 'qserv operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/lsst/qserv-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (109, 'keycloak operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator:19.0.2', 'https://github.com/keycloak/keycloak'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (110, 'prometheus operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/prometheus-operator/prometheus-operator:v0.47.0', 'https://github.com/prometheus-operator/prometheus-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (111, 'knative operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/knative/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (112, 'rook-ceph', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/rook/rook'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (113, 'starboard operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/aquasec/starboard-operator:0.15.6', 'https://github.com/aquasecurity/starboard'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (114, 'tidb operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/pingcap/tidb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (115, 'argo cd', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/argoprojlabs/argocd-operator', 'https://github.com/argoproj-labs/argocd-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (116, 'altinity operator for clickhouse', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/altinity/clickhouse-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (117, 'grafana operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/grafana-operator/grafana-operator:v4.6.0', 'https://github.com/grafana-operator/grafana-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (118, 'kubeflow', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/kubeflow/kfctl'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (119, 'rocketmq operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/apache/rocketmq-operator:0.3.0', 'https://github.com/apache/rocketmq-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (120, 'storageos', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/storageos/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (121, 'flux', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://fluxcd.io/docs/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (122, 'lightbend console operator', 576, 306, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/lightbend/console-charts/tree/master/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (123, 'external secrets operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/external-secrets/external-secrets-helm-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (124, 'intel device plugins operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/intel/intel-device-plugins-for-kubernetes'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (125, 'silicom-sts-operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/silicom/sts-operator:v0.0.1', 'github.com/silicomdk/sts-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (126, 'api operator for kubernetes', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/wso2/k8s-api-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (127, 'azure service operator', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/Azure/azure-service-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (128, 'keda', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/kedacore/keda-olm-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (129, 'wso2 api manager operator for kubernetes', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/wso2/k8s-wso2am-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (130, 'aws controllers for kubernetes - amazon api gateway v2', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (131, 'aws controllers for kubernetes - amazon application auto scaling', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (132, 'aws controllers for kubernetes - amazon dynamodb', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (133, 'aws controllers for kubernetes - amazon ec2', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (134, 'aws controllers for kubernetes - amazon ecr', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (135, 'aws controllers for kubernetes - amazon eks', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (136, 'aws controllers for kubernetes - amazon emr on eks', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (137, 'aws controllers for kubernetes - amazon iam', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (138, 'aws controllers for kubernetes - amazon kms', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (139, 'aws controllers for kubernetes - amazon lambda', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (140, 'aws controllers for kubernetes - amazon mq', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (141, 'aws controllers for kubernetes - amazon opensearch service', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (142, 'aws controllers for kubernetes - amazon prometheus', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (143, 'aws controllers for kubernetes - amazon rds', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (144, 'aws controllers for kubernetes - amazon s3', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (145, 'falco operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/falcosecurity/falco-operator-helm:0.7.6', 'https://github.com/falcosecurity/falco-operator/tree/helm-based-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (146, 'kubemq enterprise operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/kubemq/kubemq-operator:latest', 'https://github.com/kubemq-io/kubemq-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (147, 'aws s3 operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner:v1.0.0', 'https://github.com/yard-turkey/aws-s3-provisioner'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (148, 'arangodb', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/arangodb/kube-arangodb'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (149, 'gitlab', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://gitlab.com/gitlab-org/cloud-native/gitlab-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (150, 'gitlab runner', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (151, 'nfd-operator', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/kubernetes-sigs/node-feature-discovery-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (152, 'appsody operator', 576, 364, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/appsody/appsody-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (153, 'runtime component operator', 576, 364, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/application-stacks/runtime-component-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (154, 'camel k operator', 576, NULL, 378, NULL, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.10.0', 'https://github.com/apache/camel-k'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (155, 'open liberty operator', 576, NULL, 398, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/OpenLiberty/open-liberty-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (156, 'kogito', 576, NULL, 398, NULL, NULL, NULL, NULL, NULL, 'quay.io/kiegroup/kogito-operator:1.27.0', 'https://github.com/kiegroup/kogito-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (157, 'varnish operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/varnish-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (158, 'composable', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/composable'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (159, 'ibm cos bucket operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/cos-bucket-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (160, 'event streams topic', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/event-streams-topic'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (161, 'hybrid application model operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/hybridappio/ham-deploy:0.1.0', 'https://github.com/hybridapp-io/ham-deploy'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (162, 'ibm application gateway operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM-Security/ibm-application-gateway-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (163, 'ibm block storage csi driver operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/ibmcom/ibm-block-csi-operator:1.10.0', 'https://github.com/IBM/ibm-block-csi-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (164, 'ibm cloud iam operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/ibmcloud-iam-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (165, 'ibm cloud operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/cloud-operators'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (166, 'ibm quantum operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/application/husky_parul/ibm-quantum-operator', 'https://github.com/redhat-et/ibm-quantum-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (167, 'ibm security verify access operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM-Security/verify-access-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (168, 'ibm spectrum scale csi plugin operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator', 'https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (169, 'qiskitplayground', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/qiskit/operator:0.1', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (170, 'wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'quay.io/wildfly/wildfly-operator:0.5.6', 'https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (171, 'submariner', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/submariner/submariner-operator:0.11.0', 'https://github.com/submariner-io/submariner-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (172, 'traefikee operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://docs.containo.us'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (173, 'upbound universal crossplane (uxp)', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/upbound/universal-crossplane'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (174, 'beegfs csi driver', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'docker.io/netapp/beegfs-csi-driver-operator:v1.3.0', 'https://github.com/netapp/beegfs-csi-driver'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (175, 'cluster-impairment-operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/redhat-performance/cluster-impairment-operator:1.0.4', 'https://github.com/redhat-performance/cluster-impairment-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (176, 'kogito knative eventing source', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/knative-sandbox/eventing-kogito'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (177, 'k8gb', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/k8gb-io/k8gb'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (178, 'kubernetes nmstate operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0', 'https://github.com/nmstate/kubernetes-nmstate'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (179, 'external load-balancer configuration operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'docker.io/carlosedp/lbconfig-operator:v0.4.0', 'https://github.com/carlosedp/lbconfig-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (180, 'marin3r', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/3scale/marin3r', 'https://github.com/3scale-ops/marin3r'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (181, 'metallb operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/metallb/metallb-operator', 'https://github.com/metallb/metallb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (182, 'multi-nic-cni-operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (183, 'netobserv operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/netobserv/network-observability-operator:0.1.4', 'https://github.com/netobserv/network-observability-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (184, 'neuvector operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/neuvector/neuvector-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (185, 'network service mesh operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/acmenezes/nsm-operator:v0.0.1', 'https://github.com/acmenezes/nsm-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (186, 'prisma cloud compute operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/prismacloud/pcc-operator', 'https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (187, 'nexus operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'quay.io/m88i/nexus-operator:0.6.0', 'https://github.com/m88i/nexus-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (188, 'anchore engine operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'docker.io/anchore/engine-operator:v0.1.3', 'https://github.com/anchore/engine-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (189, 'carbonetes operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'docker.io/carbonetes/operator:1.0.4', 'https://github.com/carbonetes/carbonetes-analyzer'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (190, 'atlasmap operator', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/atlasmap/atlasmap-operator:0.4.1', 'https://github.com/atlasmap/atlasmap-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (191, 'cryostat operator', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/cryostat/cryostat-operator:2.1.1', 'github.com/cryostatio/cryostat-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (192, 'instana agent operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 611, '', 'https://github.com/instana/instana-agent-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (193, 'snyk operator', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator:1.92.0', 'https://github.com/snyk/kubernetes-monitor'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (194, 'akka cluster operator', 576, NULL, NULL, 614, NULL, NULL, NULL, NULL, '', 'https://github.com/lightbend/akka-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (195, 'datadog operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 616, '', 'https://github.com/DataDog/datadog-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (196, 'hazelcast platform operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'docker.io/hazelcast/hazelcast-platform-operator:5.4', 'https://docs.hazelcast.com/operator/latest/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (197, 'infinispan operator', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'quay.io/infinispan/operator:2.2.5.Final', 'https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (198, 'minio operator', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'quay.io/minio/operator', 'https://github.com/minio/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (199, 'mattermost operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator:v0.5.0', 'https://github.com/mattermost/mattermost-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (200, 'yaks operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'docker.io/citrusframework/yaks:0.11.0', 'https://github.com/citrusframework/yaks'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (201, 'sematext operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator:1.0.46', 'https://github.com/sematext/sematext-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (202, 'mariadb operator', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator:v0.0.4', 'https://github.com/abalki001/mariadb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (203, 'zadara operator', 576, NULL, NULL, 643, NULL, NULL, NULL, NULL, '', 'https://github.com/zadarastorage/zadara-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (204, 'istio', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, '', 'https://github.com/banzaicloud/istio-operator/tree/release-1.1'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (205, 'istio workspace', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'quay.io/maistra/istio-workspace:v0.5.2', 'https://github.com/maistra/istio-workspace'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (206, 'kiali operator', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'quay.io/kiali/kiali-operator:v1.56.0', 'https://github.com/kiali/kiali'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (207, 'vault operator', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, '', 'https://github.com/banzaicloud/bank-vaults/tree/master/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (208, 'vault helm', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm:0.0.2', 'https://github.com/SDBrett/vault-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (209, 'yugabyte operator', 576, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'quay.io/yugabyte/yugabytedb-operator', 'https://github.com/yugabyte/yugabyte-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (210, 'cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb:v5.0.4', 'https://github.com/dmesser/cockroachdb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (211, 'community jaeger operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'quay.io/jaegertracing/jaeger-operator:1.38.0', 'https://github.com/jaegertracing/jaeger-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (212, 'ks-releaser', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, '', 'https://github.com/kubesphere-sigs/ks-releaser-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (213, 'argo cd operator (helm)', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'quay.io/disposab1e/argocd-operator-helm', 'https://github.com/disposab1e/argocd-operator-helm.git'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (214, 'multicluster subscription operator', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0', 'https://github.com/open-cluster-management/multicloud-operators-subscription'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (215, 'weave gitops terraform controller', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, '', 'https://weaveworks.github.io/tf-controller/'); + +COMMIT TRANSACTION; +PRAGMA foreign_keys = on; diff --git a/kg_utils/kg_aug.py b/kg_utils/kg_aug.py index 2be8e16..b6c9a8a 100644 --- a/kg_utils/kg_aug.py +++ b/kg_utils/kg_aug.py @@ -14,6 +14,12 @@ "entity_versions": {"opensource": {"True", "False"}} } +lowercase_constraints = { + "docker_images" : {"container_name"}, + "openshift_images" : {"container_name"}, + "operator_images" : {"container_name"} +} + default_value = { "entities": {"COTS": "N", "Legacy": "N", "ContainerImage": "N", "OpenSource": "N", "external_link": "{}"} } @@ -121,6 +127,9 @@ def check_input_batch(input_entry, cur): if col[1] in value_constraints[table_name].keys(): if userval not in value_constraints[table_name][col[1]]: process_entry = False + if table_name in lowercase_constraints.keys(): + if col[1] in lowercase_constraints[table_name]: + userval = userval.lower() userColVals.append(userval) # print(process_entry) i = i + 1 @@ -208,6 +217,9 @@ def get_input_cmdline(cur): userval_accept = False print("Not a valid entry for column -- please re-enter") if userval_accept: + if table_name in lowercase_constraints.keys(): + if col[1] in lowercase_constraints[table_name]: + userval = userval.lower() userColVals.append(userval) return (table_name, userColVals) @@ -230,6 +242,12 @@ def check_if_duplicate(table_name, userColVals, cur): if table_name == "entities": if len(check_for_entry_in_table(cur, "entity_mentions", "entity_mention_name", userColVals[0])) > 0: add_to_table = False + if table_name == "docker_images" or table_name == "openshift_images": + if len(check_for_entry_in_table(cur, table_name, columns[10][1], userColVals[0])) > 0: + add_to_table = False + if table_name == "operator_images": + if len(check_for_entry_in_table(cur, table_name, columns[11][1], userColVals[0])) > 0: + add_to_table = False if table_name == "entities" or table_name == "entity_mentions" or table_name == "entity_relations": getIdQuery = "SELECT max(id) FROM entity_types" answer = cur.execute(getIdQuery) diff --git a/tca_cli.py b/tca_cli.py index e97d385..0e7eb6d 100644 --- a/tca_cli.py +++ b/tca_cli.py @@ -70,4 +70,4 @@ def main(): if __name__ == "__main__": - main() \ No newline at end of file + main() From cde70ee0b1a7e4989090b54da3e9ce61e1ef96ae Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:02:52 -0400 Subject: [PATCH 07/29] latest image search from the three catalogues Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/image_search_kg/images.json | 33386 +++++++++---------------- 1 file changed, 11724 insertions(+), 21662 deletions(-) diff --git a/kg_utils/image_search_kg/images.json b/kg_utils/image_search_kg/images.json index 4841db1..005b9df 100644 --- a/kg_utils/image_search_kg/images.json +++ b/kg_utils/image_search_kg/images.json @@ -26,17 +26,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 266, + "star_count": 279, "Docker_Url": "https://hub.docker.com/r/atlassian/jira-software", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -47,14 +40,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/pachyderm/job-shim", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -65,27 +51,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 - }, - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 + "popularity": 259882.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 165365.0 + "popularity": 252177.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 167566.0 } ] }, @@ -123,29 +109,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "giant-chatops-slack-reader", - "url": "https://quay.io/repository/giantswarm/giant-chatops-slack-reader", - "popularity": 15.0 + "name": "dsmr-reader", + "url": "https://quay.io/repository/truecharts/dsmr-reader", + "popularity": 303.0 }, { "name": "mig-log-reader", "url": "https://quay.io/repository/konveyor/mig-log-reader", - "popularity": 120.0 + "popularity": 28.0 }, { "name": "perl-fastx-reader", "url": "https://quay.io/repository/biocontainers/perl-fastx-reader", - "popularity": 0.0 + "popularity": 168.0 }, { - "name": "gaia-reader", - "url": "https://quay.io/repository/blockstack/gaia-reader", - "popularity": 0.0 + "name": "giant-chatops-slack-reader", + "url": "https://quay.io/repository/giantswarm/giant-chatops-slack-reader", + "popularity": 5.0 }, { - "name": "dsmr-reader", - "url": "https://quay.io/repository/truecharts/dsmr-reader", - "popularity": 31.0 + "name": "cfr", + "url": "https://quay.io/repository/cincan/cfr", + "popularity": 102.0 } ] }, @@ -169,14 +155,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ansible-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -187,50 +166,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/rancher/ansible-runner", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibp-ansible", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibp-ansible", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ansible-s390x", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ansible-s390x", - "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -239,40 +175,35 @@ "quay_exact_images": [ { "name": "ansible", - "url": "https://quay.io/repository/cloudctl/ansible", - "popularity": 1109.0 - }, - { - "name": "ansible", - "url": "https://quay.io/repository/containercraft/ansible", - "popularity": 0.0 + "url": "https://quay.io/repository/osbuild/ansible", + "popularity": 723.0 } ], "quay_top_images": [ - { - "name": "ansible-operator", - "url": "https://quay.io/repository/operator-framework/ansible-operator", - "popularity": 21277.0 - }, { "name": "ansible-runner", "url": "https://quay.io/repository/ansible/ansible-runner", - "popularity": 42473.0 + "popularity": 200370.0 }, { - "name": "origin-ansible", - "url": "https://quay.io/repository/openshift/origin-ansible", - "popularity": 12100.0 + "name": "ansible-operator", + "url": "https://quay.io/repository/operator-framework/ansible-operator", + "popularity": 34781.0 }, { "name": "gitlab-ansible-runner", "url": "https://quay.io/repository/sheogorath/gitlab-ansible-runner", - "popularity": 20164.0 + "popularity": 35277.0 }, { - "name": "runner-ansible", - "url": "https://quay.io/repository/startx/runner-ansible", - "popularity": 8119.0 + "name": "ansible-builder", + "url": "https://quay.io/repository/ansible/ansible-builder", + "popularity": 44335.0 + }, + { + "name": "origin-ansible", + "url": "https://quay.io/repository/openshift/origin-ansible", + "popularity": 12202.0 } ] }, @@ -296,14 +227,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -314,14 +238,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/activemq-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -332,22 +249,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -358,14 +260,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -376,14 +271,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/activemq-cpp-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -394,27 +282,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -431,65 +319,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "bitnami/apache", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 82, - "Docker_Url": "https://hub.docker.com/r/bitnami/apache", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "pingidentity/apache-jmeter", + "name": "ibmcom/hbase-s390x", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/hbase-s390x", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/apache-exporter", + "name": "bitnami/apache", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "star_count": 82, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -500,27 +348,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -544,14 +392,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -562,22 +403,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -588,14 +414,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -603,30 +422,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "hive", - "url": "https://quay.io/repository/openshift-hive/hive", - "popularity": 103190.0 - }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "hive", - "url": "https://quay.io/repository/app-sre/hive", - "popularity": 52608.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 270648.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 162027.0 } ] }, @@ -650,14 +469,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -665,17 +477,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 510, + "star_count": 551, "Docker_Url": "https://hub.docker.com/r/bitnami/kafka", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -686,14 +491,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/ibmcom/kafka", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -701,41 +499,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 7, + "star_count": 12, "Docker_Url": "https://hub.docker.com/r/ubuntu/kafka", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -746,14 +513,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -761,30 +521,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 - }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 + }, + { + "name": "apache.spark", + "url": "https://quay.io/repository/klovercloud/apache.spark", + "popularity": 144176.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 } ] }, @@ -795,22 +555,22 @@ "name": "strimzi-kafka-operator", "normalized_name": "strimzi-kafka-operator", "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", - "stars": 18, + "stars": 20, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.30.0", + "version": "0.31.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 277, - "high": 13, - "medium": 348, - "unknown": 5, - "critical": 4 + "low": 527, + "high": 36, + "medium": 472, + "unknown": 7, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657929610, + "ts": 1663708020, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -829,6 +589,9 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -854,14 +617,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -872,22 +628,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -898,14 +639,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -916,27 +650,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -952,56 +686,6 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ - { - "name": "solr", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 917, - "Docker_Url": "https://hub.docker.com/_/solr", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "bitnami/solr", "Official image": false, @@ -1010,14 +694,18 @@ "star_count": 12, "Docker_Url": "https://hub.docker.com/r/bitnami/solr", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "solr", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 923, + "Docker_Url": "https://hub.docker.com/_/solr", + "OS": [ + "linux" ] }, { @@ -1028,14 +716,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -1046,22 +727,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -1072,14 +738,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -1090,27 +749,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -1134,14 +793,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -1152,22 +804,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -1178,14 +815,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -1196,27 +826,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -1236,30 +866,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 133096.0 - }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 165365.0 + "popularity": 252177.0 }, { - "name": "billing-sidecar", - "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 167566.0 } ] }, @@ -1278,11 +908,6 @@ }, { "quay_exact_images": [ - { - "name": "asterisk", - "url": "https://quay.io/repository/citybaseinc/asterisk", - "popularity": 0.0 - }, { "name": "asterisk", "url": "https://quay.io/repository/jorti/asterisk", @@ -1290,40 +915,45 @@ }, { "name": "asterisk", - "url": "https://quay.io/repository/mak73kur/asterisk", + "url": "https://quay.io/repository/citybaseinc/asterisk", "popularity": 0.0 }, { "name": "asterisk", "url": "https://quay.io/repository/gabibbo97/asterisk", "popularity": 0.0 + }, + { + "name": "asterisk", + "url": "https://quay.io/repository/mak73kur/asterisk", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "asterisk", - "url": "https://quay.io/repository/citybaseinc/asterisk", - "popularity": 0.0 + "url": "https://quay.io/repository/jorti/asterisk", + "popularity": 14.0 }, { - "name": "asterisk-base", - "url": "https://quay.io/repository/cycore/asterisk-base", + "name": "asterisk-alpine", + "url": "https://quay.io/repository/sapian/asterisk-alpine", "popularity": 0.0 }, { - "name": "openshift-asterisk", - "url": "https://quay.io/repository/alpha_weepee_io/openshift-asterisk", - "popularity": 0.0 + "name": "asterisk-events", + "url": "https://quay.io/repository/egroupware/asterisk-events", + "popularity": 2.0 }, { - "name": "docker-asterisk-freepbx", - "url": "https://quay.io/repository/shaposhnikov/docker-asterisk-freepbx", + "name": "docker-asterisk", + "url": "https://quay.io/repository/shaposhnikov/docker-asterisk", "popularity": 0.0 }, { - "name": "asterisk", - "url": "https://quay.io/repository/jorti/asterisk", - "popularity": 14.0 + "name": "openshift-asterisk-opus", + "url": "https://quay.io/repository/alpha_weepee_io/openshift-asterisk-opus", + "popularity": 0.0 } ] }, @@ -1340,57 +970,36 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/scheduler", + "name": "airbyte/scheduler", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/rancher/scheduler", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/scheduler", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "pachyderm/job-shim", + "name": "rancher/scheduler", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/pachyderm/job-shim", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/scheduler", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/airflow-scheduler", + "name": "pachyderm/job-shim", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 7, - "Docker_Url": "https://hub.docker.com/r/bitnami/airflow-scheduler", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/pachyderm/job-shim", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -1401,27 +1010,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "k8s-job-cleaner", "url": "https://quay.io/repository/dtan4/k8s-job-cleaner", - "popularity": 83773.0 + "popularity": 87282.0 }, { "name": "event-scheduler", "url": "https://quay.io/repository/grworth_analytics/event-scheduler", - "popularity": 10379.0 + "popularity": 9236.0 }, { "name": "origin-cluster-kube-scheduler-operator", "url": "https://quay.io/repository/openshift/origin-cluster-kube-scheduler-operator", - "popularity": 3674.0 + "popularity": 3711.0 }, { - "name": "multicluster-scheduler-scheduler", - "url": "https://quay.io/repository/admiralty/multicluster-scheduler-scheduler", - "popularity": 4930.0 + "name": "multicluster-scheduler-agent", + "url": "https://quay.io/repository/admiralty/multicluster-scheduler-agent", + "popularity": 4036.0 } ] }, @@ -1475,30 +1084,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "kubernetes-control-panel", - "url": "https://quay.io/repository/rackspace/kubernetes-control-panel", - "popularity": 3514.0 - }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 }, { - "name": "origin-control-plane", - "url": "https://quay.io/repository/openshift/origin-control-plane", - "popularity": 2176.0 + "name": "kubernetes-control-panel", + "url": "https://quay.io/repository/rackspace/kubernetes-control-panel", + "popularity": 3514.0 }, { - "name": "bmc-reverse-proxy", - "url": "https://quay.io/repository/cybozu/bmc-reverse-proxy", - "popularity": 699.0 + "name": "hypershift-control-plane-operator", + "url": "https://quay.io/repository/jerzhang/hypershift-control-plane-operator", + "popularity": 4143.0 }, { "name": "fastqc", "url": "https://quay.io/repository/biocontainers/fastqc", - "popularity": 29219.0 + "popularity": 15479.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -1515,89 +1124,14 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/identity-brokerage", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/identity-brokerage", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-identity-provider", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-provider", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-identity-manager", + "name": "objectscale/management-gateway", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", + "Docker_Url": "https://hub.docker.com/r/objectscale/management-gateway", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -1605,30 +1139,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "icp-identity-manager", - "url": "https://quay.io/repository/opencloudio/icp-identity-manager", - "popularity": 215445.0 - }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 216548.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171910.0 + "popularity": 200677.0 }, { - "name": "postgresql-10-centos7", - "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 179600.0 } ] }, @@ -1645,39 +1179,36 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/informix-developer-database", + "name": "docker/engine-community", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 48, - "Docker_Url": "https://hub.docker.com/r/ibmcom/informix-developer-database", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/docker/engine-community", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "docker/engine-community", + "name": "docker/engine-community-dm", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/docker/engine-community", + "Docker_Url": "https://hub.docker.com/r/docker/engine-community-dm", + "OS": [ + "linux" + ] + }, + { + "name": "docker/engine-community-arches", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/docker/engine-community-arches", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -1685,30 +1216,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "mongodb-enterprise-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 99140.0 - }, - { - "name": "engine", - "url": "https://quay.io/repository/codefresh/engine", - "popularity": 47231.0 - }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 179600.0 + }, + { + "name": "vault-creds", + "url": "https://quay.io/repository/uswitch/vault-creds", + "popularity": 238374.0 } ] }, @@ -1731,27 +1262,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 43570374.0 + "popularity": 91532409.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2497215.0 + "popularity": 2503206.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -1774,27 +1305,27 @@ { "name": "vault-next-gen", "url": "https://quay.io/repository/codefreshplugins/vault-next-gen", - "popularity": 28748.0 + "popularity": 16881.0 }, { "name": "doc-gen-container", "url": "https://quay.io/repository/spearow/doc-gen-container", - "popularity": 10859.0 + "popularity": 13717.0 }, { "name": "origin-crd-schema-gen", "url": "https://quay.io/repository/openshift/origin-crd-schema-gen", - "popularity": 2839.0 + "popularity": 2867.0 }, { "name": "thrift-gen", "url": "https://quay.io/repository/m3db/thrift-gen", - "popularity": 878.0 + "popularity": 1198.0 }, { "name": "drone-gen-tags", "url": "https://quay.io/repository/natlibfi/drone-gen-tags", - "popularity": 126.0 + "popularity": 132.0 } ] }, @@ -1886,14 +1417,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/chef-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -1901,30 +1425,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "wildfly-s2i-jdk11", + "url": "https://quay.io/repository/wildfly/wildfly-s2i-jdk11", + "popularity": 1320.0 + }, { "name": "fmeserver-engine", "url": "https://quay.io/repository/safesoftware/fmeserver-engine", - "popularity": 112.0 + "popularity": 186.0 }, { "name": "fmeserver-core", "url": "https://quay.io/repository/safesoftware/fmeserver-core", - "popularity": 52.0 + "popularity": 53.0 }, { "name": "fmeserver-queue", "url": "https://quay.io/repository/safesoftware/fmeserver-queue", - "popularity": 46.0 + "popularity": 52.0 }, { "name": "fmeserver-web", "url": "https://quay.io/repository/safesoftware/fmeserver-web", - "popularity": 48.0 - }, - { - "name": "git-batch", - "url": "https://quay.io/repository/thegeeklab/git-batch", - "popularity": 34.0 + "popularity": 49.0 } ] }, @@ -1947,27 +1471,27 @@ { "name": "machines-endpoints", "url": "https://quay.io/repository/cybozu/machines-endpoints", - "popularity": 1919.0 + "popularity": 2293.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 }, { "name": "gluster-recycler", "url": "https://quay.io/repository/appuio/gluster-recycler", - "popularity": 1479.0 + "popularity": 676.0 }, { "name": "books", "url": "https://quay.io/repository/redhattraining/books", - "popularity": 711.0 + "popularity": 1361.0 } ] }, @@ -1987,30 +1511,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 - }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 216548.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171910.0 + "popularity": 200677.0 }, { - "name": "postgresql-10-centos7", - "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 179600.0 } ] }, @@ -2033,27 +1557,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 43570374.0 + "popularity": 91532409.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2497215.0 + "popularity": 2503206.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -2077,14 +1601,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -2095,27 +1612,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 139218.0 - }, - { - "name": "citrix-k8s-node-controller", - "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39408.0 + "popularity": 122737.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39170.0 + "popularity": 39563.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41708.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1982.0 + "popularity": 2042.0 }, { - "name": "citrix-ipam-controller", - "url": "https://quay.io/repository/citrix/citrix-ipam-controller", - "popularity": 393.0 + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 378.0 } ] }, @@ -2139,14 +1656,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -2157,27 +1667,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 139218.0 - }, - { - "name": "citrix-k8s-node-controller", - "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39408.0 + "popularity": 122737.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39170.0 + "popularity": 39563.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41708.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "popularity": 222040.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 + "popularity": 123109.0 } ] }, @@ -2222,27 +1732,27 @@ "quay_top_images": [ { "name": "baobab-lims", - "url": "https://quay.io/repository/sanbi-sa/baobab-lims", - "popularity": 0.0 + "url": "https://quay.io/repository/baobab-lims/baobab-lims", + "popularity": 5.0 }, { - "name": "baobab-lims", - "url": "https://quay.io/repository/baobab-lims/baobab-lims", - "popularity": 38.0 + "name": "robertmerritt13", + "url": "https://quay.io/repository/robertmerritt/robertmerritt13", + "popularity": 0.0 }, { - "name": "lims-backend", - "url": "https://quay.io/repository/tamu_cpt/lims-backend", + "name": "the_most_important_highway_driving_tips", + "url": "https://quay.io/repository/shannonj_wilson/the_most_important_highway_driving_tips", "popularity": 0.0 }, { - "name": "lims-frontend", - "url": "https://quay.io/repository/tamu_cpt/lims-frontend", + "name": "four-corner-tray-boxes", + "url": "https://quay.io/repository/jacobleo/four-corner-tray-boxes", "popularity": 0.0 }, { - "name": "clarity-dex", - "url": "https://quay.io/repository/hhoover/clarity-dex", + "name": "missionalleadershipcoaching", + "url": "https://quay.io/repository/missionaleadershipcoaching/missionalleadershipcoaching", "popularity": 0.0 } ] @@ -2265,13 +1775,13 @@ "quay_top_images": [ { "name": "baobab-lims", - "url": "https://quay.io/repository/sanbi-sa/baobab-lims", - "popularity": 0.0 + "url": "https://quay.io/repository/baobab-lims/baobab-lims", + "popularity": 5.0 }, { - "name": "baobab-lims", - "url": "https://quay.io/repository/baobab-lims/baobab-lims", - "popularity": 38.0 + "name": "lims-frontend", + "url": "https://quay.io/repository/tamu_cpt/lims-frontend", + "popularity": 0.0 }, { "name": "lims-backend", @@ -2279,8 +1789,8 @@ "popularity": 0.0 }, { - "name": "lims-frontend", - "url": "https://quay.io/repository/tamu_cpt/lims-frontend", + "name": "baobab-lims", + "url": "https://quay.io/repository/sanbi-sa/baobab-lims", "popularity": 0.0 } ] @@ -2327,14 +1837,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/adobecoldfusion/coldfusion", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -2347,14 +1850,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/adobecoldfusion/coldfusion", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -2417,14 +1913,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/connect-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -2433,29 +1922,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "direct-csi", - "url": "https://quay.io/repository/minio/direct-csi", - "popularity": 27695.0 + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 101368.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 - }, - { - "name": "billing-sidecar", - "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 82922.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 + }, + { + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 24992.0 } ] }, @@ -2476,17 +1965,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 266, + "star_count": 279, "Docker_Url": "https://hub.docker.com/r/atlassian/jira-software", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -2497,27 +1979,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 - }, - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 + "popularity": 259882.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 165365.0 + "popularity": 252177.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 167566.0 } ] }, @@ -2540,27 +2022,27 @@ { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 137803.0 + "popularity": 160543.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "popularity": 71385.0 }, { "name": "teleport-ent", "url": "https://quay.io/repository/gravitational/teleport-ent", - "popularity": 27180.0 + "popularity": 50742.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 43577.0 + "popularity": 7129.0 }, { "name": "dep-scan", "url": "https://quay.io/repository/appthreat/dep-scan", - "popularity": 452.0 + "popularity": 512.0 } ] }, @@ -2580,33 +2062,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 129, + "star_count": 136, "Docker_Url": "https://hub.docker.com/r/ibmcom/db2", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -2616,33 +2075,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 129, + "star_count": 136, "Docker_Url": "https://hub.docker.com/r/ibmcom/db2", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -2653,14 +2089,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/db2-s390x", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -2671,14 +2100,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/ibmcom/db2-amd64", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -2689,14 +2111,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/db2-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -2706,54 +2121,44 @@ { "name": "db2", "url": "https://quay.io/repository/quarkusqeteam/db2", - "popularity": 195.0 + "popularity": 141.0 }, { "name": "db2", "url": "https://quay.io/repository/pjgg/db2", - "popularity": 52.0 - }, - { - "name": "db2", - "url": "https://quay.io/repository/luisarizmendi/db2", - "popularity": 0.0 + "popularity": 48.0 }, { "name": "db2", "url": "https://quay.io/repository/rhoar_qe/db2", - "popularity": 2.0 - }, - { - "name": "db2", - "url": "https://quay.io/repository/klausulrich/db2", - "popularity": 0.0 + "popularity": 7.0 } ], "quay_top_images": [ { "name": "db2", "url": "https://quay.io/repository/quarkusqeteam/db2", - "popularity": 195.0 + "popularity": 141.0 }, { "name": "db2", "url": "https://quay.io/repository/pjgg/db2", - "popularity": 52.0 + "popularity": 48.0 }, { - "name": "ibm-db2-sfg", - "url": "https://quay.io/repository/hollisc/ibm-db2-sfg", - "popularity": 2.0 + "name": "configure-db2", + "url": "https://quay.io/repository/langley_millard_ibm/configure-db2", + "popularity": 0.0 }, { - "name": "elm-db2", - "url": "https://quay.io/repository/dominik_jergus/elm-db2", - "popularity": 7.0 + "name": "db-extractor-db2-bata", + "url": "https://quay.io/repository/keboola/db-extractor-db2-bata", + "popularity": 0.0 }, { "name": "db2", "url": "https://quay.io/repository/rhoar_qe/db2", - "popularity": 2.0 + "popularity": 7.0 } ] }, @@ -2769,22 +2174,48 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server-sandbox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", + "OS": [ + "linux" ] }, { @@ -2795,14 +2226,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -2813,27 +2237,27 @@ { "name": "okd-content", "url": "https://quay.io/repository/openshift/okd-content", - "popularity": 9323844.0 + "popularity": 9120554.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -2853,73 +2277,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 932, + "star_count": 942, "Docker_Url": "https://hub.docker.com/_/drupal", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -2930,14 +2291,7 @@ "star_count": 27, "Docker_Url": "https://hub.docker.com/r/bitnami/drupal", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -2950,14 +2304,7 @@ "star_count": 27, "Docker_Url": "https://hub.docker.com/r/bitnami/drupal", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -2965,73 +2312,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 932, + "star_count": 942, "Docker_Url": "https://hub.docker.com/_/drupal", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -3042,14 +2326,7 @@ "star_count": 8, "Docker_Url": "https://hub.docker.com/r/bitnami/drupal-nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -3058,60 +2335,45 @@ "quay_exact_images": [ { "name": "drupal", - "url": "https://quay.io/repository/official-images/drupal", - "popularity": 0.0 - }, - { - "name": "drupal", - "url": "https://quay.io/repository/swsmirror/drupal", + "url": "https://quay.io/repository/dperez_mulet/drupal", "popularity": 0.0 }, { "name": "drupal", - "url": "https://quay.io/repository/damagehead/drupal", + "url": "https://quay.io/repository/sergey_gruntovsky/drupal", "popularity": 0.0 }, { "name": "drupal", "url": "https://quay.io/repository/dockerlibrary/drupal", "popularity": 0.0 - }, - { - "name": "drupal", - "url": "https://quay.io/repository/dperez_mulet/drupal", - "popularity": 0.0 - }, - { - "name": "drupal", - "url": "https://quay.io/repository/brunofar/drupal", - "popularity": 0.0 } ], "quay_top_images": [ { - "name": "drupal", - "url": "https://quay.io/repository/official-images/drupal", + "name": "s2i-drupal-93", + "url": "https://quay.io/repository/ecwpz91/s2i-drupal-93", "popularity": 0.0 }, { - "name": "drupal", - "url": "https://quay.io/repository/swsmirror/drupal", - "popularity": 0.0 + "name": "prisoner-content-hub-backend", + "url": "https://quay.io/repository/hmpps/prisoner-content-hub-backend", + "popularity": 132.0 }, { - "name": "drupal-php5.6-apache", - "url": "https://quay.io/repository/continuouspipe/drupal-php5.6-apache", + "name": "drupal", + "url": "https://quay.io/repository/dperez_mulet/drupal", "popularity": 0.0 }, { - "name": "drupal-php7.1-apache", - "url": "https://quay.io/repository/continuouspipe/drupal-php7.1-apache", + "name": "drupal-docker-base", + "url": "https://quay.io/repository/gyorgy_simon/drupal-docker-base", "popularity": 0.0 }, { - "name": "fuzzy-alpine-nginx-drupal", - "url": "https://quay.io/repository/wunder/fuzzy-alpine-nginx-drupal", - "popularity": 0.0 + "name": "php", + "url": "https://quay.io/repository/islamic-network/php", + "popularity": 10.0 } ] }, @@ -3132,29 +2394,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "che-plugin-artifacts-broker", - "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19392.0 + "name": "eclipse-che-openshift-opm-catalog", + "url": "https://quay.io/repository/eclipse/eclipse-che-openshift-opm-catalog", + "popularity": 16346.0 }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 37958.0 + "popularity": 85433.0 + }, + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 14268.0 }, { "name": "che-plugin-sidecar", "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 21047.0 + "popularity": 12831.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 26579.0 - }, - { - "name": "che-plugin-registry", - "url": "https://quay.io/repository/eclipse/che-plugin-registry", - "popularity": 14198.0 + "popularity": 19966.0 } ] }, @@ -3172,9 +2434,9 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 4, - "medium": 46, + "low": 31, + "high": 5, + "medium": 60, "unknown": 0, "critical": 0 }, @@ -3208,9 +2470,9 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 46, - "high": 4, - "medium": 88, + "low": 52, + "high": 5, + "medium": 99, "unknown": 0, "critical": 0 }, @@ -3237,7 +2499,7 @@ "name": "iot-simulator", "normalized_name": "iot-simulator", "logo_image_id": "9821068b-f345-4230-a61a-4b14ababd524", - "stars": 1, + "stars": 2, "display_name": "IoT simulator", "description": "An IoT device simulator, simulating producers and consumers using the Eclipse Hono API", "version": "0.1.0", @@ -3286,38 +2548,33 @@ "name": "elastic", "url": "https://quay.io/repository/kmamgain/elastic", "popularity": 0.0 - }, - { - "name": "elastic", - "url": "https://quay.io/repository/yacis/elastic", - "popularity": 0.0 } ], "quay_top_images": [ { "name": "elastic-cloud-eck", "url": "https://quay.io/repository/operatorhubio/elastic-cloud-eck", - "popularity": 986.0 + "popularity": 744.0 }, { - "name": "elastic-curator", - "url": "https://quay.io/repository/uswitch/elastic-curator", - "popularity": 14.0 + "name": "assisted-events-scrape", + "url": "https://quay.io/repository/app-sre/assisted-events-scrape", + "popularity": 2525.0 }, { - "name": "ibm-elastic-stack-operator", - "url": "https://quay.io/repository/opencloudio/ibm-elastic-stack-operator", - "popularity": 38.0 + "name": "prow-jobs-scraper", + "url": "https://quay.io/repository/app-sre/prow-jobs-scraper", + "popularity": 543.0 }, { - "name": "elastic-phenix-operator", - "url": "https://quay.io/repository/operatorhubio/elastic-phenix-operator", - "popularity": 32.0 + "name": "mariadb", + "url": "https://quay.io/repository/software-factory/mariadb", + "popularity": 384.0 }, { - "name": "assisted-events-scrape", - "url": "https://quay.io/repository/app-sre/assisted-events-scrape", - "popularity": 2626.0 + "name": "curator", + "url": "https://quay.io/repository/usp/curator", + "popularity": 343.0 } ] }, @@ -3328,22 +2585,22 @@ "name": "elastic-cloud-eck", "normalized_name": "elastic-cloud-eck", "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, + "stars": 14, "display_name": "Elasticsearch (ECK) Operator", "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", + "version": "2.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 1, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657006653, + "ts": 1661782377, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -3438,22 +2695,22 @@ "name": "logging-operator", "normalized_name": "logging-operator", "logo_image_id": "0fb27181-3404-4379-a8fc-7ebdbf801340", - "stars": 3, + "stars": 4, "display_name": "Logging Operator", "description": "A golang-based operator to create and manage EFK (Elasticsearch, Fluentd, and Kibana) stack on Kubernetes.", - "version": "0.3.0", + "version": "0.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657182636, + "ts": 1662195638, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -3468,7 +2725,7 @@ }, "git_repos": "https://github.com/ot-container-kit/logging-operator", "container_images": [ - "quay.io/opstree/logging-operator:v0.3.0" + "quay.io/opstree/logging-operator:v0.4.0" ] }, { @@ -3483,10 +2740,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 3, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -3597,93 +2854,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-identity-manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", - "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-image-manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-image-manager", - "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -3694,27 +2868,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 } ] }, @@ -3755,14 +2929,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/secure-gateway-client", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -3773,38 +2940,7 @@ "star_count": 66, "Docker_Url": "https://hub.docker.com/_/express-gateway", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -3812,30 +2948,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 313212.0 + }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 1442128.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 857217.0 + "popularity": 1013505.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 - }, - { - "name": "cilium", - "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 337637.0 } ] }, @@ -3858,27 +2994,27 @@ { "name": "msisensor-pro", "url": "https://quay.io/repository/biocontainers/msisensor-pro", - "popularity": 674.0 + "popularity": 228.0 }, { - "name": "artifactory-pro", - "url": "https://quay.io/repository/jfrog/artifactory-pro", - "popularity": 110.0 + "name": "aria2-pro", + "url": "https://quay.io/repository/truecharts/aria2-pro", + "popularity": 239.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2351.0 + "popularity": 1942.0 }, { - "name": "ambassador_pro", - "url": "https://quay.io/repository/datawire/ambassador_pro", - "popularity": 133.0 + "name": "nmap", + "url": "https://quay.io/repository/instrumentisto/nmap", + "popularity": 338.0 }, { - "name": "aria2-pro", - "url": "https://quay.io/repository/truecharts/aria2-pro", - "popularity": 32.0 + "name": "ambassador_pro", + "url": "https://quay.io/repository/datawire/ambassador_pro", + "popularity": 598.0 } ] }, @@ -3899,93 +3035,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-image-manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-image-manager", - "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-identity-manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", - "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -3996,27 +3049,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 } ] }, @@ -4039,27 +3092,27 @@ { "name": "exonerate", "url": "https://quay.io/repository/biocontainers/exonerate", - "popularity": 4274.0 - }, - { - "name": "apache-ftp", - "url": "https://quay.io/repository/fuse_qe/apache-ftp", - "popularity": 100.0 - }, - { - "name": "alpine-ftp-server-tls", - "url": "https://quay.io/repository/aminvakil/alpine-ftp-server-tls", - "popularity": 71.0 + "popularity": 2232.0 }, { "name": "blast", "url": "https://quay.io/repository/biocontainers/blast", - "popularity": 2282.0 + "popularity": 1091.0 }, { "name": "hisat2", "url": "https://quay.io/repository/biocontainers/hisat2", - "popularity": 123.0 + "popularity": 287.0 + }, + { + "name": "entrez-direct", + "url": "https://quay.io/repository/biocontainers/entrez-direct", + "popularity": 174.0 + }, + { + "name": "emboss", + "url": "https://quay.io/repository/biocontainers/emboss", + "popularity": 170.0 } ] }, @@ -4109,17 +3162,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 43, + "star_count": 47, "Docker_Url": "https://hub.docker.com/r/kasmweb/chrome", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -4127,17 +3173,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/chrome-flash", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -4148,27 +3187,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { - "name": "chrome", - "url": "https://quay.io/repository/browsers/chrome", - "popularity": 49486.0 + "name": "google-chrome-stable", + "url": "https://quay.io/repository/browser/google-chrome-stable", + "popularity": 73518.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "popularity": 71385.0 } ] }, @@ -4184,6 +3223,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/db", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/db", + "OS": [ + "linux" + ] + }, { "name": "appdynamics/db-agent", "Official image": false, @@ -4192,14 +3242,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -4208,13 +3251,13 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "greenplum-operator", - "url": "https://quay.io/repository/ktenzer/greenplum-operator", + "name": "ubi8-minimal-greenplum-dist", + "url": "https://quay.io/repository/evolkov74/ubi8-minimal-greenplum-dist", "popularity": 0.0 }, { - "name": "greenplum-for-kubernetes", - "url": "https://quay.io/repository/ktenzer/greenplum-for-kubernetes", + "name": "greenplum-client-ubuntu", + "url": "https://quay.io/repository/evolkov74/greenplum-client-ubuntu", "popularity": 0.0 }, { @@ -4226,6 +3269,11 @@ "name": "greenplum-for-kubernetes", "url": "https://quay.io/repository/shchan/greenplum-for-kubernetes", "popularity": 0.0 + }, + { + "name": "greenplum-operator", + "url": "https://quay.io/repository/ktenzer/greenplum-operator", + "popularity": 0.0 } ] }, @@ -4249,14 +3297,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/hadoop-config", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] }, { @@ -4267,14 +3308,8 @@ "star_count": 12, "Docker_Url": "https://hub.docker.com/r/ibmcom/iop-hadoop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "", + "linux" ] }, { @@ -4282,17 +3317,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 10, + "star_count": 12, "Docker_Url": "https://hub.docker.com/r/rancher/hadoop-base", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] } ] @@ -4301,13 +3329,8 @@ "quay_exact_images": [ { "name": "hadoop", - "url": "https://quay.io/repository/iguazio/hadoop", - "popularity": 0.0 - }, - { - "name": "hadoop", - "url": "https://quay.io/repository/lalyos/hadoop", - "popularity": 2.0 + "url": "https://quay.io/repository/flysangel/hadoop", + "popularity": 14.0 }, { "name": "hadoop", @@ -4316,32 +3339,17 @@ }, { "name": "hadoop", - "url": "https://quay.io/repository/falkonry/hadoop", - "popularity": 0.0 - }, - { - "name": "hadoop", - "url": "https://quay.io/repository/mcapitanio/hadoop", - "popularity": 0.0 - }, - { - "name": "hadoop", - "url": "https://quay.io/repository/flysangel/hadoop", - "popularity": 0.0 - }, - { - "name": "hadoop", - "url": "https://quay.io/repository/flokkr/hadoop", + "url": "https://quay.io/repository/fest-data-demo/hadoop", "popularity": 0.0 }, { "name": "hadoop", - "url": "https://quay.io/repository/opaqnetworks/hadoop", + "url": "https://quay.io/repository/yasmanygm/hadoop", "popularity": 0.0 }, { "name": "hadoop", - "url": "https://quay.io/repository/tamr/hadoop", + "url": "https://quay.io/repository/lalyos/hadoop", "popularity": 0.0 } ], @@ -4349,27 +3357,27 @@ { "name": "origin-metering-hadoop", "url": "https://quay.io/repository/openshift/origin-metering-hadoop", - "popularity": 3674.0 - }, - { - "name": "metering-hadoop", - "url": "https://quay.io/repository/coreos/metering-hadoop", - "popularity": 53.0 + "popularity": 3765.0 }, { "name": "hadoop-test", "url": "https://quay.io/repository/signalfx/hadoop-test", - "popularity": 460.0 + "popularity": 102.0 + }, + { + "name": "metering-hadoop", + "url": "https://quay.io/repository/coreos/metering-hadoop", + "popularity": 145.0 }, { - "name": "hadoop-namenode", - "url": "https://quay.io/repository/falkonry/hadoop-namenode", - "popularity": 148.0 + "name": "pyspark", + "url": "https://quay.io/repository/opendatahub-contrib/pyspark", + "popularity": 543.0 }, { - "name": "hadoop-datanode", - "url": "https://quay.io/repository/falkonry/hadoop-datanode", - "popularity": 69.0 + "name": "spark", + "url": "https://quay.io/repository/opendatahub-contrib/spark", + "popularity": 719.0 } ] }, @@ -4390,29 +3398,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "checkpoints-compiler", - "url": "https://quay.io/repository/sharkofmirkwood/checkpoints-compiler", - "popularity": 0.0 + "name": "pdftk", + "url": "https://quay.io/repository/pdftk/pdftk", + "popularity": 27.0 }, { - "name": "tensorflow-cross-compiler", - "url": "https://quay.io/repository/draft/tensorflow-cross-compiler", + "name": "python-39-minimal-el8", + "url": "https://quay.io/repository/sclorg/python-39-minimal-el8", + "popularity": 26.0 + }, + { + "name": "xsd", + "url": "https://quay.io/repository/biocontainers/xsd", "popularity": 0.0 }, { - "name": "compiler", - "url": "https://quay.io/repository/serulian/compiler", + "name": "ohpc-gnu9", + "url": "https://quay.io/repository/ohpc/ohpc-gnu9", "popularity": 0.0 }, { "name": "rust-esp", "url": "https://quay.io/repository/ctron/rust-esp", "popularity": 3.0 - }, - { - "name": "pdftk", - "url": "https://quay.io/repository/pdftk/pdftk", - "popularity": 14.0 } ] }, @@ -4433,24 +3441,24 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "ansi-sdk", - "url": "https://quay.io/repository/theloeki/ansi-sdk", - "popularity": 0.0 + "name": "ansi-builder", + "url": "https://quay.io/repository/exd_infra_plts_cip/ansi-builder", + "popularity": 2.0 }, { - "name": "checkpoints-compiler", - "url": "https://quay.io/repository/sharkofmirkwood/checkpoints-compiler", + "name": "ansi-sdk", + "url": "https://quay.io/repository/theloeki/ansi-sdk", "popularity": 0.0 }, { - "name": "ansi-builder", - "url": "https://quay.io/repository/exd_infra_plts_cip/ansi-builder", - "popularity": 2.0 + "name": "pdftk", + "url": "https://quay.io/repository/pdftk/pdftk", + "popularity": 27.0 }, { - "name": "tensorflow-cross-compiler", - "url": "https://quay.io/repository/draft/tensorflow-cross-compiler", - "popularity": 0.0 + "name": "python-39-minimal-el8", + "url": "https://quay.io/repository/sclorg/python-39-minimal-el8", + "popularity": 26.0 }, { "name": "rust-esp", @@ -4479,14 +3487,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/mirantis/operations-ui", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -4497,14 +3498,7 @@ "star_count": 12, "Docker_Url": "https://hub.docker.com/r/ibmcom/datapower-operations-dashboard", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -4515,27 +3509,27 @@ { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 165365.0 + "popularity": 252177.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 117328.0 + "popularity": 167566.0 }, { "name": "operator", "url": "https://quay.io/repository/cilium/operator", - "popularity": 95250.0 + "popularity": 91249.0 }, { - "name": "admission-server", - "url": "https://quay.io/repository/openebs/admission-server", - "popularity": 24714.0 + "name": "operator-aws", + "url": "https://quay.io/repository/cilium/operator-aws", + "popularity": 83390.0 } ] }, @@ -4552,75 +3546,58 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/server-base", + "name": "couchbase/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-nomad", + "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "rancher/server-base", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server-sandbox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -4631,27 +3608,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 43570374.0 + "popularity": 91532409.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -4672,33 +3649,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -4709,22 +3663,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -4735,22 +3674,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -4761,27 +3685,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -4802,33 +3726,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -4839,22 +3740,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -4865,22 +3751,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -4891,27 +3762,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -4932,25 +3803,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -4961,27 +3817,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 645293.0 + "popularity": 737474.0 } ] }, @@ -5002,25 +3858,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -5031,27 +3872,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "okd-content", "url": "https://quay.io/repository/openshift/okd-content", - "popularity": 9323844.0 + "popularity": 9120554.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 } ] }, @@ -5072,33 +3913,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5109,22 +3927,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5135,22 +3938,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -5161,27 +3949,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -5202,33 +3990,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5239,22 +4004,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5265,22 +4015,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -5291,27 +4026,104 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 + "popularity": 201368.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 67 + }, + { + "IBM Integration Bus": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + "linux" + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + "linux" + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + "linux" + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 391395.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -5320,10 +4132,10 @@ } ], "entity_type": 2, - "entity_id": 67 + "entity_id": 68 }, { - "IBM Integration Bus": [ + "IBM License Metric Tool": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ @@ -5332,33 +4144,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5369,22 +4158,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5395,22 +4169,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -5421,157 +4180,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 - }, - { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 - }, - { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 + "popularity": 391395.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 68 - }, - { - "IBM License Metric Tool": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "ibmcom/ibm-operator-catalog", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] + "popularity": 259882.0 }, { - "name": "ibmcom/ibm-mq-operator", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibm-apiconnect-operator", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "ibm-crossplane-bedrock-shim-config", - "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 - }, - { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 201368.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -5592,33 +4221,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5629,22 +4235,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5655,22 +4246,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -5681,27 +4257,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -5722,33 +4298,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5759,22 +4312,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5785,22 +4323,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -5811,27 +4334,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 + "popularity": 201368.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 160435.0 }, { - "name": "utility", - "url": "https://quay.io/repository/theiagen/utility", - "popularity": 230211.0 + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -5852,33 +4375,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5889,22 +4389,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -5915,22 +4400,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -5941,27 +4411,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -5982,43 +4452,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibm-watson-ai-manager-operator-catalog", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-watson-ai-manager-operator-catalog", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -6029,27 +4466,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 645293.0 + "popularity": 737474.0 } ] }, @@ -6070,25 +4507,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -6099,27 +4521,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 645293.0 + "popularity": 737474.0 } ] }, @@ -6140,33 +4562,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -6177,22 +4576,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -6203,22 +4587,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -6229,27 +4598,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 + "popularity": 201368.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 160435.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -6273,14 +4642,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/scheduler", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -6291,27 +4653,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 + "popularity": 201368.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 160435.0 }, { - "name": "workload-agent", - "url": "https://quay.io/repository/sysdig/workload-agent", - "popularity": 247186.0 + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -6328,71 +4690,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/websphere-liberty", - "Official image": false, - "Verified Publisher": true, + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "star_count": 289, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "websphere-liberty", - "Official image": true, - "Verified Publisher": false, + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 286, - "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -6400,33 +4716,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 204, + "star_count": 205, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-traditional", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -6436,16 +4729,7 @@ "Description": "", "star_count": 10, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-portal", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] + "OS": [] } ] }, @@ -6455,27 +4739,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -6499,22 +4783,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -6522,25 +4791,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 130, + "star_count": 131, "Docker_Url": "https://hub.docker.com/r/ibmcom/mq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -6551,14 +4805,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator-bundle", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -6569,27 +4816,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -6610,17 +4857,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 12, + "star_count": 14, "Docker_Url": "https://hub.docker.com/r/docker/telemetry", "OS": [ - { - "Class": "OS", - "Architecture": "", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] }, { @@ -6631,22 +4871,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -6654,25 +4879,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 130, + "star_count": 131, "Docker_Url": "https://hub.docker.com/r/ibmcom/mq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -6683,27 +4893,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -6727,30 +4937,7 @@ "star_count": 22, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -6758,33 +4945,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 286, + "star_count": 289, "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -6795,27 +4959,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -6831,6 +4995,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/db", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/db", + "OS": [ + "linux" + ] + }, { "name": "appdynamics/db-agent", "Official image": false, @@ -6839,14 +5014,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -6859,6 +5027,11 @@ "url": "https://quay.io/repository/adn1107/ims-ee", "popularity": 2.0 }, + { + "name": "quality-inspection-software", + "url": "https://quay.io/repository/compliancequest/quality-inspection-software", + "popularity": 0.0 + }, { "name": "ims-kaas", "url": "https://quay.io/repository/samsung_cnct/ims-kaas", @@ -6890,27 +5063,27 @@ { "name": "argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", "url": "https://quay.io/repository/codefreshplugins/argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", - "popularity": 92589.0 + "popularity": 92530.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 165365.0 + "popularity": 252177.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 117328.0 + "popularity": 167566.0 }, { "name": "operator", "url": "https://quay.io/repository/cilium/operator", - "popularity": 95250.0 + "popularity": 91249.0 } ] }, @@ -6925,7 +5098,19 @@ "Infobright Community Edition": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "vmware/vmware-tanzu-community-edition-extension-for-docker-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/vmware/vmware-tanzu-community-edition-extension-for-docker-desktop", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], @@ -6933,27 +5118,27 @@ { "name": "community-e2e-images", "url": "https://quay.io/repository/openshift/community-e2e-images", - "popularity": 5148256.0 - }, - { - "name": "community-e2e-images", - "url": "https://quay.io/repository/multi-arch/community-e2e-images", - "popularity": 187349.0 - }, - { - "name": "community-operator-index", - "url": "https://quay.io/repository/olmqe/community-operator-index", - "popularity": 24119.0 + "popularity": 4130813.0 }, { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 137803.0 + "popularity": 160543.0 }, { "name": "hedgedoc", "url": "https://quay.io/repository/hedgedoc/hedgedoc", - "popularity": 97293.0 + "popularity": 100552.0 + }, + { + "name": "mongodb-kubernetes-operator", + "url": "https://quay.io/repository/mongodb/mongodb-kubernetes-operator", + "popularity": 88814.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 71385.0 } ] }, @@ -7021,6 +5206,42 @@ }, "git_repos": "https://github.com/kong/kong-operator", "container_images": [] + }, + { + "package_id": "eac3ba55-f650-49b7-af6c-8c6bc2674722", + "name": "kong-gateway-operator", + "normalized_name": "kong-gateway-operator", + "logo_image_id": "55628a62-3a97-409b-9000-69fb689cbb76", + "stars": 0, + "display_name": "Kong Gateway Operator", + "description": "A Kubernetes Operator for the Kong Gateway", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1664006440, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://kong.github.io/gateway-operator-docs", + "container_images": [] } ] } @@ -7041,32 +5262,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "grafana/enterprise-metrics", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7077,14 +5273,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-logs", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7095,32 +5284,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-traces", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/service-catalog", + "name": "grafana/enterprise-metrics", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/bitnami/service-catalog", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -7128,30 +5303,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "common-service-operator", - "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 300956.0 - }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 329446.0 + "popularity": 368485.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 430133.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -7171,17 +5346,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5514, + "star_count": 5548, "Docker_Url": "https://hub.docker.com/_/jenkins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7189,17 +5357,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 53, + "star_count": 54, "Docker_Url": "https://hub.docker.com/r/bitnami/jenkins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -7212,14 +5373,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/rancher/jenkins-jenkins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7227,17 +5381,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 53, + "star_count": 54, "Docker_Url": "https://hub.docker.com/r/bitnami/jenkins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7245,17 +5392,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5514, + "star_count": 5548, "Docker_Url": "https://hub.docker.com/_/jenkins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7266,32 +5406,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/jenkins-slave", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "rancher/jenkins-master", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/rancher/jenkins-master", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -7301,49 +5416,49 @@ { "name": "jenkins", "url": "https://quay.io/repository/cdis/jenkins", - "popularity": 6049.0 + "popularity": 23929.0 }, { "name": "jenkins", "url": "https://quay.io/repository/h3nrique/jenkins", - "popularity": 10071.0 + "popularity": 0.0 }, { "name": "jenkins", "url": "https://quay.io/repository/hany_mostafa/jenkins", - "popularity": 3878.0 + "popularity": 3860.0 }, { "name": "jenkins", - "url": "https://quay.io/repository/cloudifire/jenkins", - "popularity": 9.0 + "url": "https://quay.io/repository/flysangel/jenkins", + "popularity": 402.0 } ], "quay_top_images": [ { "name": "origin-jenkins", "url": "https://quay.io/repository/openshift/origin-jenkins", - "popularity": 64145.0 + "popularity": 401727.0 }, { "name": "origin-jenkins-agent-base", "url": "https://quay.io/repository/openshift/origin-jenkins-agent-base", - "popularity": 23109.0 + "popularity": 95819.0 }, { - "name": "ops-jenkins-worker", - "url": "https://quay.io/repository/sisense/ops-jenkins-worker", - "popularity": 10535.0 + "name": "jenkins", + "url": "https://quay.io/repository/cdis/jenkins", + "popularity": 23929.0 }, { - "name": "jenkins", - "url": "https://quay.io/repository/h3nrique/jenkins", - "popularity": 10071.0 + "name": "jenkins-slave-base", + "url": "https://quay.io/repository/insights-qe/jenkins-slave-base", + "popularity": 21804.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 101368.0 } ] }, @@ -7437,27 +5552,27 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "netbox", "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 10714.0 + "popularity": 13083.0 }, { "name": "signalilo", "url": "https://quay.io/repository/vshn/signalilo", - "popularity": 1485.0 + "popularity": 2263.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 657.0 + "popularity": 699.0 }, { - "name": "kie-server-showcase", - "url": "https://quay.io/repository/kiegroup/kie-server-showcase", - "popularity": 728.0 + "name": "business-central-workbench", + "url": "https://quay.io/repository/kiegroup/business-central-workbench", + "popularity": 777.0 } ] }, @@ -7497,27 +5612,27 @@ { "name": "cluster-image-scanner-scan-malware", "url": "https://quay.io/repository/sdase/cluster-image-scanner-scan-malware", - "popularity": 1963.0 + "popularity": 2605.0 }, { - "name": "sandfly-rabbit", - "url": "https://quay.io/repository/sandfly/sandfly-rabbit", - "popularity": 12.0 - }, - { - "name": "sandfly-server-mgmt", - "url": "https://quay.io/repository/sandfly/sandfly-server-mgmt", - "popularity": 12.0 + "name": "virustotal", + "url": "https://quay.io/repository/cincan/virustotal", + "popularity": 651.0 }, { "name": "sandfly-server", "url": "https://quay.io/repository/sandfly/sandfly-server", - "popularity": 12.0 + "popularity": 19.0 + }, + { + "name": "sandfly-rabbit", + "url": "https://quay.io/repository/sandfly/sandfly-rabbit", + "popularity": 17.0 }, { "name": "sandfly-node", "url": "https://quay.io/repository/sandfly/sandfly-node", - "popularity": 10.0 + "popularity": 15.0 } ] }, @@ -7540,27 +5655,27 @@ { "name": "contour-plus", "url": "https://quay.io/repository/cybozu/contour-plus", - "popularity": 2034.0 + "popularity": 1977.0 }, { - "name": "prinseq-plus-plus", - "url": "https://quay.io/repository/biocontainers/prinseq-plus-plus", - "popularity": 34.0 + "name": "bioconductor-pd.hg.u133.plus.2", + "url": "https://quay.io/repository/biocontainers/bioconductor-pd.hg.u133.plus.2", + "popularity": 167.0 + }, + { + "name": "bioconductor-pd.ht.hg.u133.plus.pm", + "url": "https://quay.io/repository/biocontainers/bioconductor-pd.ht.hg.u133.plus.pm", + "popularity": 168.0 }, { "name": "signalilo", "url": "https://quay.io/repository/vshn/signalilo", - "popularity": 1485.0 + "popularity": 2263.0 }, { "name": "dep-scan", "url": "https://quay.io/repository/appthreat/dep-scan", - "popularity": 452.0 - }, - { - "name": "circleci-helm", - "url": "https://quay.io/repository/cmproductions/circleci-helm", - "popularity": 26.0 + "popularity": 512.0 } ] }, @@ -7576,6 +5691,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/db", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/db", + "OS": [ + "linux" + ] + }, { "name": "appdynamics/db-agent", "Official image": false, @@ -7584,14 +5710,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -7616,73 +5735,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1923, + "star_count": 1958, "Docker_Url": "https://hub.docker.com/_/memcached", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7690,17 +5746,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 24, + "star_count": 25, "Docker_Url": "https://hub.docker.com/r/bitnami/memcached", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7711,38 +5760,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/ubuntu/memcached", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -7755,38 +5773,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/ubuntu/memcached", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7794,17 +5781,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 24, + "star_count": 25, "Docker_Url": "https://hub.docker.com/r/bitnami/memcached", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7812,73 +5792,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1923, + "star_count": 1958, "Docker_Url": "https://hub.docker.com/_/memcached", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7889,14 +5806,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/memcached-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -7907,14 +5817,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/memcached-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -7924,59 +5827,64 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "memcached", "url": "https://quay.io/repository/factory2/memcached", - "popularity": 10434.0 + "popularity": 7600.0 }, { "name": "memcached", "url": "https://quay.io/repository/exd-guild-distribution/memcached", - "popularity": 4198.0 + "popularity": 4204.0 }, { "name": "memcached", "url": "https://quay.io/repository/cybozu/memcached", - "popularity": 1957.0 + "popularity": 2815.0 }, { "name": "memcached", "url": "https://quay.io/repository/openstack.kolla/memcached", - "popularity": 1094.0 + "popularity": 3086.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/genomenon/memcached", + "popularity": 1049.0 }, { "name": "memcached", "url": "https://quay.io/repository/redhat-aqe/memcached", - "popularity": 676.0 + "popularity": 977.0 } ], "quay_top_images": [ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "memcached", "url": "https://quay.io/repository/factory2/memcached", - "popularity": 10434.0 + "popularity": 7600.0 }, { "name": "memcached", "url": "https://quay.io/repository/exd-guild-distribution/memcached", - "popularity": 4198.0 + "popularity": 4204.0 }, { - "name": "memcached-exporter", - "url": "https://quay.io/repository/cybozu/memcached-exporter", - "popularity": 2048.0 + "name": "memcached", + "url": "https://quay.io/repository/openstack.kolla/memcached", + "popularity": 3086.0 } ] }, @@ -8036,17 +5944,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 7, + "star_count": 9, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8054,17 +5955,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8072,17 +5966,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, + "star_count": 4, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-openldap", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8090,35 +5977,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/verify-access-wrp", + "name": "ibmcom/verify-access-runtime", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-runtime", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -8126,30 +5999,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "access-logger", - "url": "https://quay.io/repository/solo-io/access-logger", - "popularity": 43574.0 - }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 112605.0 + "popularity": 111692.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 + }, + { + "name": "chart-testing", + "url": "https://quay.io/repository/helmpack/chart-testing", + "popularity": 50156.0 }, { - "name": "prometheus-nginxlog-exporter", - "url": "https://quay.io/repository/martinhelmich/prometheus-nginxlog-exporter", - "popularity": 44086.0 + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -8172,27 +6045,27 @@ { "name": "rapid-response-host-component", "url": "https://quay.io/repository/sysdig/rapid-response-host-component", - "popularity": 608505.0 + "popularity": 609626.0 }, { "name": "host-analyzer", "url": "https://quay.io/repository/sysdig/host-analyzer", - "popularity": 249552.0 + "popularity": 247245.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 } ] }, @@ -8215,27 +6088,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3907.0 + "popularity": 1889.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 910.0 + "popularity": 2915.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 584.0 + "popularity": 2017.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 578.0 + "popularity": 2016.0 }, { - "name": "gromacs", - "url": "https://quay.io/repository/biocontainers/gromacs", - "popularity": 42.0 + "name": "oletools", + "url": "https://quay.io/repository/cincan/oletools", + "popularity": 485.0 } ] }, @@ -8256,25 +6129,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "objectscale/manager-pre-update", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/manager-pre-update", + "OS": [ + "linux" ] } ] @@ -8285,27 +6154,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 }, { - "name": "cert-manager-acmesolver", - "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1788665.0 } ] }, @@ -8328,27 +6197,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3907.0 + "popularity": 1889.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 910.0 + "popularity": 2915.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 584.0 + "popularity": 2017.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 578.0 + "popularity": 2016.0 }, { - "name": "dotnet-sonar", - "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 9.0 + "name": "oletools", + "url": "https://quay.io/repository/cincan/oletools", + "popularity": 485.0 } ] }, @@ -8364,22 +6233,37 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8390,32 +6274,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server-sandbox", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -8426,27 +6296,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -8470,30 +6340,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8501,25 +6348,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8530,14 +6362,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8548,14 +6373,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/identity-brokerage", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -8566,27 +6384,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 } ] }, @@ -8609,27 +6427,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3907.0 + "popularity": 1889.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 910.0 + "popularity": 2915.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 584.0 + "popularity": 2017.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 578.0 + "popularity": 2016.0 }, { - "name": "dotnet-sonar", - "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 9.0 + "name": "oletools", + "url": "https://quay.io/repository/cincan/oletools", + "popularity": 485.0 } ] }, @@ -8652,27 +6470,27 @@ { "name": "explorer-bff", "url": "https://quay.io/repository/decentraland/explorer-bff", - "popularity": 232.0 + "popularity": 33187.0 }, { - "name": "velero-plugin-for-microsoft-azure", - "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3907.0 + "name": "splunk-network-explorer-kernel-collector", + "url": "https://quay.io/repository/signalfx/splunk-network-explorer-kernel-collector", + "popularity": 36368.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 910.0 + "popularity": 2915.0 }, { - "name": "pso-explorer", - "url": "https://quay.io/repository/purestorage/pso-explorer", - "popularity": 480.0 + "name": "server", + "url": "https://quay.io/repository/codimd/server", + "popularity": 2441.0 }, { - "name": "explorer", - "url": "https://quay.io/repository/jkunstle/explorer", - "popularity": 878.0 + "name": "che-dotnet-2.2", + "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", + "popularity": 2017.0 } ] }, @@ -8688,22 +6506,48 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server-sandbox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", + "OS": [ + "linux" ] }, { @@ -8714,14 +6558,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -8732,27 +6569,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -8773,25 +6610,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 130, + "star_count": 131, "Docker_Url": "https://hub.docker.com/r/ibmcom/mq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8802,14 +6624,7 @@ "star_count": 18, "Docker_Url": "https://hub.docker.com/r/ibmcom/ace-mq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8820,22 +6635,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -8846,27 +6646,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3907.0 + "popularity": 1889.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 910.0 + "popularity": 2915.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 584.0 + "popularity": 2017.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 578.0 + "popularity": 2016.0 }, { - "name": "dotnet-sonar", - "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 9.0 + "name": "oletools", + "url": "https://quay.io/repository/cincan/oletools", + "popularity": 485.0 } ] }, @@ -8890,22 +6690,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/system-upgrade-controller", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8916,30 +6701,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rancher", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8950,22 +6712,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-k3s", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -8976,38 +6723,8 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rke2", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.17763.3165", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.20348.825", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux", + "windows" ] } ] @@ -9018,27 +6735,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 5835615.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 } ] }, @@ -9061,27 +6778,27 @@ { "name": "apicurio-studio-api", "url": "https://quay.io/repository/apicurio/apicurio-studio-api", - "popularity": 13652.0 + "popularity": 15326.0 }, { "name": "apicurio-studio-ui", "url": "https://quay.io/repository/apicurio/apicurio-studio-ui", - "popularity": 9474.0 + "popularity": 13095.0 }, { "name": "apicurio-studio-ws", "url": "https://quay.io/repository/apicurio/apicurio-studio-ws", - "popularity": 6630.0 + "popularity": 10243.0 }, { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4063.0 + "popularity": 3842.0 }, { - "name": "velero-plugin-for-microsoft-azure", - "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3907.0 + "name": "microsoft-edge-stable", + "url": "https://quay.io/repository/browser/microsoft-edge-stable", + "popularity": 2915.0 } ] }, @@ -9105,14 +6822,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/cimg/deploy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -9123,27 +6833,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 + "popularity": 313212.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "windup-web-openshift", - "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47530.0 + "popularity": 29516627.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "logio", "url": "https://quay.io/repository/blacklabelops/logio", - "popularity": 221690.0 + "popularity": 221743.0 + }, + { + "name": "nginx-proxy", + "url": "https://quay.io/repository/ukhomeofficedigital/nginx-proxy", + "popularity": 167839.0 } ] }, @@ -9158,7 +6868,19 @@ "Microsoft Web Farm Framework": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "hashicorp/web", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/hashicorp/web", + "OS": [ + "" + ] + } + ] }, { "quay_exact_images": [], @@ -9166,27 +6888,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 + "popularity": 313212.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 - }, - { - "name": "windup-web-openshift", - "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47530.0 + "popularity": 1788665.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "nginx-116-centos7", "url": "https://quay.io/repository/centos7/nginx-116-centos7", - "popularity": 159422.0 + "popularity": 138283.0 + }, + { + "name": "nginx-proxy", + "url": "https://quay.io/repository/ukhomeofficedigital/nginx-proxy", + "popularity": 167839.0 } ] }, @@ -9201,7 +6923,19 @@ "Microsoft Web Platform Installer": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "okteto/installer", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/installer", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], @@ -9209,27 +6943,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 - }, - { - "name": "icp-platform-auth", - "url": "https://quay.io/repository/opencloudio/icp-platform-auth", - "popularity": 62806.0 + "popularity": 313212.0 }, { "name": "cni-installer", "url": "https://quay.io/repository/polargeospatialcenter/cni-installer", - "popularity": 149460.0 + "popularity": 150441.0 + }, + { + "name": "icp-platform-auth", + "url": "https://quay.io/repository/opencloudio/icp-platform-auth", + "popularity": 23379.0 }, { - "name": "windup-web-openshift", - "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47530.0 + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 26368.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 } ] }, @@ -9252,27 +6986,27 @@ { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1172724.0 + "popularity": 1118580.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kubecost-cost-model", "url": "https://quay.io/repository/kubecost1/kubecost-cost-model", - "popularity": 15061.0 + "popularity": 26866.0 }, { - "name": "model-api-nginx", - "url": "https://quay.io/repository/domino/model-api-nginx", - "popularity": 2900.0 + "name": "workflow-controller", + "url": "https://quay.io/repository/codefresh/workflow-controller", + "popularity": 3087.0 }, { - "name": "workflow-helpers", - "url": "https://quay.io/repository/thoth-station/workflow-helpers", - "popularity": 2533.0 + "name": "splunk-audit-exporter", + "url": "https://quay.io/repository/app-sre/splunk-audit-exporter", + "popularity": 29336.0 } ] }, @@ -9292,17 +7026,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 185, + "star_count": 189, "Docker_Url": "https://hub.docker.com/r/bitnami/mongodb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -9313,30 +7040,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/mongodb", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -9349,30 +7053,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/mongodb", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -9380,17 +7061,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 185, + "star_count": 189, "Docker_Url": "https://hub.docker.com/r/bitnami/mongodb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -9401,14 +7075,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/mongodb-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -9416,17 +7083,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, + "star_count": 7, "Docker_Url": "https://hub.docker.com/r/bitnami/mongodb-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -9437,27 +7097,27 @@ { "name": "mongodb-agent", "url": "https://quay.io/repository/mongodb/mongodb-agent", - "popularity": 260822.0 + "popularity": 311594.0 }, { - "name": "mongodb-enterprise-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 99140.0 - }, - { - "name": "mongodb-36-centos7", - "url": "https://quay.io/repository/centos7/mongodb-36-centos7", - "popularity": 99737.0 + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 430133.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "popularity": 222040.0 }, { - "name": "mongodb-kubernetes-operator-version-upgrade-post-start-hook", - "url": "https://quay.io/repository/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook", - "popularity": 86954.0 + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 143686.0 + }, + { + "name": "mongodb-enterprise-appdb-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb-database", + "popularity": 179107.0 } ] }, @@ -9471,19 +7131,19 @@ "stars": 0, "display_name": "MongoDB Enterprise Operator", "description": "The MongoDB Enterprise Kubernetes Operator enables easy deploys of MongoDB into Kubernetes clusters, using our management, monitoring and backup platforms, Ops Manager and Cloud Manager.", - "version": "1.16.3", + "version": "1.17.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, - "unknown": 0, - "critical": 0 + "low": 29, + "high": 1, + "medium": 25, + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657830636, + "ts": 1663315244, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -9498,7 +7158,7 @@ }, "git_repos": "https://github.com/mongodb/mongodb-enterprise-kubernetes", "container_images": [ - "quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.3" + "quay.io/mongodb/mongodb-enterprise-operator-ubi:1.17.0" ] }, { @@ -9514,9 +7174,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, + "high": 6, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -9547,19 +7207,19 @@ "stars": 0, "display_name": "MongoDB Atlas Operator", "description": "The MongoDB Atlas Kubernetes Operator enables easy management of Clusters in MongoDB Atlas", - "version": "1.1.0", + "version": "1.3.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 33, + "low": 39, "high": 0, - "medium": 44, + "medium": 42, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657778437, + "ts": 1663320639, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -9574,7 +7234,7 @@ }, "git_repos": null, "container_images": [ - "quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.1.0" + "quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.3.0" ] }, { @@ -9589,10 +7249,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 1, - "medium": 1, - "unknown": 2, + "low": 1, + "high": 10, + "medium": 4, + "unknown": 8, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -9667,25 +7327,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 18, + "star_count": 21, "Docker_Url": "https://hub.docker.com/r/kasmweb/firefox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -9696,32 +7341,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/firefox-flash", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "kasmweb/firefox-mobile", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 7, - "Docker_Url": "https://hub.docker.com/r/kasmweb/firefox-mobile", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -9731,28 +7351,28 @@ "quay_top_images": [ { "name": "firefox", - "url": "https://quay.io/repository/browsers/firefox", - "popularity": 17742.0 + "url": "https://quay.io/repository/startx/firefox", + "popularity": 8628.0 }, { "name": "selenium-standalone-firefox-debug", "url": "https://quay.io/repository/app-sre/selenium-standalone-firefox-debug", - "popularity": 4363.0 + "popularity": 3178.0 }, { "name": "firefox", - "url": "https://quay.io/repository/startx/firefox", - "popularity": 8902.0 + "url": "https://quay.io/repository/truecharts/firefox", + "popularity": 7460.0 }, { - "name": "selenium-standalone", - "url": "https://quay.io/repository/redhatqe/selenium-standalone", - "popularity": 1825.0 + "name": "firefox-mozilla-build", + "url": "https://quay.io/repository/browser/firefox-mozilla-build", + "popularity": 2148.0 }, { - "name": "rust", - "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2351.0 + "name": "selenium-standalone", + "url": "https://quay.io/repository/redhatqe/selenium-standalone", + "popularity": 18363.0 } ] }, @@ -9773,25 +7393,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 130, + "star_count": 131, "Docker_Url": "https://hub.docker.com/r/ibmcom/mq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -9799,17 +7404,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/bitnami/minio-client", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -9820,32 +7418,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/percona/pmm-client", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ace-mq", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 18, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ace-mq", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -9856,27 +7429,27 @@ { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", - "popularity": 708674.0 + "popularity": 448146.0 }, { "name": "nfs-client-provisioner-arm", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", - "popularity": 89108.0 + "popularity": 94610.0 }, { "name": "defectdojo-client", "url": "https://quay.io/repository/sdase/defectdojo-client", - "popularity": 5941.0 + "popularity": 7794.0 }, { - "name": "kubernetes-vault-client", - "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", - "popularity": 8244.0 + "name": "quobyte-client", + "url": "https://quay.io/repository/quobyte/quobyte-client", + "popularity": 5166.0 }, { - "name": "nfs-client-provisioner", - "url": "https://quay.io/repository/vbouchaud/nfs-client-provisioner", - "popularity": 10282.0 + "name": "origin-kube-client-agent", + "url": "https://quay.io/repository/openshift/origin-kube-client-agent", + "popularity": 3711.0 } ] }, @@ -9897,29 +7470,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "docker-atlassian-jira-service-desk", - "url": "https://quay.io/repository/ukhomeofficedigital/docker-atlassian-jira-service-desk", - "popularity": 40.0 - }, - { - "name": "ckan", - "url": "https://quay.io/repository/ukhomeofficedigital/ckan", + "name": "slot777-hoki-slot-777-slot-online-asia-777slot-hokislot-asiatoto2020-365-kumpulan-game-jam-sedang-hoki-slot-88-terbaru-99-kumpulan-daftar-505-qq-situs-judi-138-casino-slot-online-33-ninja-vip-gudang-lapak-terbaik-terpercaya-terbaru-indonesia-2022", + "url": "https://quay.io/repository/zulzeagleed/slot777-hoki-slot-777-slot-online-asia-777slot-hokislot-asiatoto2020-365-kumpulan-game-jam-sedang-hoki-slot-88-terbaru-99-kumpulan-daftar-505-qq-situs-judi-138-casino-slot-online-33-ninja-vip-gudang-lapak-terbaik-terpercaya-terbaru-indonesia-2022", "popularity": 0.0 }, { - "name": "ts-ticket-office-service", - "url": "https://quay.io/repository/ngii/ts-ticket-office-service", + "name": "bolagila-sohotogel-mpo100-qq288-sarana365-daftar-situs-bola-gila-soho-togel-mpo-100-qq-288-sarana-365-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-resmi-2022-fafa138", + "url": "https://quay.io/repository/zulzeagleed/bolagila-sohotogel-mpo100-qq288-sarana365-daftar-situs-bola-gila-soho-togel-mpo-100-qq-288-sarana-365-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-resmi-2022-fafa138", "popularity": 0.0 }, { "name": "mbop", "url": "https://quay.io/repository/cloudservices/mbop", - "popularity": 30.0 + "popularity": 35.0 + }, + { + "name": "docker-atlassian-jira-service-desk", + "url": "https://quay.io/repository/ukhomeofficedigital/docker-atlassian-jira-service-desk", + "popularity": 58.0 }, { "name": "peframe", "url": "https://quay.io/repository/cincan/peframe", - "popularity": 4.0 + "popularity": 142.0 } ] }, @@ -9936,39 +7509,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "gooddata/sql-executor", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" ] } ] @@ -9979,27 +7560,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -10019,25 +7600,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 12900, + "star_count": 13234, "Docker_Url": "https://hub.docker.com/_/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10045,17 +7611,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 26, + "star_count": 27, "Docker_Url": "https://hub.docker.com/r/circleci/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10063,17 +7622,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 72, + "star_count": 77, "Docker_Url": "https://hub.docker.com/r/bitnami/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10084,38 +7636,7 @@ "star_count": 36, "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10126,14 +7647,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/cimg/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10144,14 +7658,7 @@ "star_count": 21, "Docker_Url": "https://hub.docker.com/r/google/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] }, { @@ -10162,14 +7669,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -10182,14 +7682,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10200,74 +7693,29 @@ "star_count": 21, "Docker_Url": "https://hub.docker.com/r/google/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] }, { - "name": "ubuntu/mysql", + "name": "cimg/mysql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 36, - "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "cimg/mysql", + "name": "ubuntu/mysql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "star_count": 36, + "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10275,17 +7723,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 72, + "star_count": 77, "Docker_Url": "https://hub.docker.com/r/bitnami/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -10294,65 +7735,60 @@ "quay_exact_images": [ { "name": "mysql", - "url": "https://quay.io/repository/openshifttest/mysql", - "popularity": 18627.0 + "url": "https://quay.io/repository/prsurve/mysql", + "popularity": 94.0 }, { "name": "mysql", - "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 26252.0 + "url": "https://quay.io/repository/openshifttest/mysql", + "popularity": 31835.0 }, { "name": "mysql", - "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 62635.0 + "url": "https://quay.io/repository/cybozu/mysql", + "popularity": 3600.0 }, { "name": "mysql", - "url": "https://quay.io/repository/cybozu/mysql", - "popularity": 4930.0 + "url": "https://quay.io/repository/gauravkumar9130/mysql", + "popularity": 4.0 }, { "name": "mysql", "url": "https://quay.io/repository/hazelcast_cloud/mysql", - "popularity": 2156.0 + "popularity": 2078.0 }, { "name": "mysql", "url": "https://quay.io/repository/operations/mysql", - "popularity": 1427.0 - }, - { - "name": "mysql", - "url": "https://quay.io/repository/bridgez/mysql", - "popularity": 4.0 + "popularity": 654.0 } ], "quay_top_images": [ { "name": "mysql-80-centos7", "url": "https://quay.io/repository/centos7/mysql-80-centos7", - "popularity": 268428.0 + "popularity": 268545.0 }, { "name": "mysql", - "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 26252.0 + "url": "https://quay.io/repository/openshifttest/mysql", + "popularity": 31835.0 }, { - "name": "mysql", - "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 62635.0 + "name": "do180-mysql-80-rhel8", + "url": "https://quay.io/repository/do180_202207/do180-mysql-80-rhel8", + "popularity": 15607.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 146865.0 + "popularity": 176289.0 } ] }, @@ -10399,10 +7835,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, - "unknown": 1, + "low": 31, + "high": 13, + "medium": 61, + "unknown": 4, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -10504,25 +7940,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1061, + "star_count": 1076, "Docker_Url": "https://hub.docker.com/_/neo4j", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10533,14 +7954,7 @@ "star_count": 9, "Docker_Url": "https://hub.docker.com/r/bitnami/neo4j", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10550,16 +7964,7 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/neo4j", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] + "OS": [] } ], "dockerhub_top_images": [ @@ -10570,15 +7975,28 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/neo4j", + "OS": [] + }, + { + "name": "bitnami/neo4j", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 9, + "Docker_Url": "https://hub.docker.com/r/bitnami/neo4j", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "neo4j", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1076, + "Docker_Url": "https://hub.docker.com/_/neo4j", + "OS": [ + "linux" ] } ] @@ -10590,74 +8008,64 @@ "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j", "popularity": 0.0 }, - { - "name": "neo4j", - "url": "https://quay.io/repository/thoba/neo4j", - "popularity": 0.0 - }, - { - "name": "neo4j", - "url": "https://quay.io/repository/modelgraphtools/neo4j", - "popularity": 0.0 - }, { "name": "neo4j", "url": "https://quay.io/repository/ukhomeofficedigital/neo4j", - "popularity": 0.0 + "popularity": 2.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/peoplepattern/neo4j", + "url": "https://quay.io/repository/steveblackmon/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/dockerlibrary/neo4j", + "url": "https://quay.io/repository/cookbrite/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/cookbrite/neo4j", + "url": "https://quay.io/repository/peoplepattern/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/frankyto2004/neo4j", + "url": "https://quay.io/repository/isaacueca/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/openkilda/neo4j", + "url": "https://quay.io/repository/dockerlibrary/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/steveblackmon/neo4j", + "url": "https://quay.io/repository/lbovet/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/xavireds89/neo4j", + "url": "https://quay.io/repository/thoba/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/processtempo/neo4j", + "url": "https://quay.io/repository/frankyto2004/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/amd64/neo4j", + "url": "https://quay.io/repository/openkilda/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/karmkarm/neo4j", + "url": "https://quay.io/repository/jesusmartinezmendez3/neo4j", "popularity": 0.0 }, { "name": "neo4j", - "url": "https://quay.io/repository/swsmirror/neo4j", + "url": "https://quay.io/repository/processtempo/neo4j", "popularity": 0.0 } ], @@ -10668,23 +8076,23 @@ "popularity": 0.0 }, { - "name": "neo4j", - "url": "https://quay.io/repository/thoba/neo4j", - "popularity": 0.0 + "name": "neo4j-haproxy", + "url": "https://quay.io/repository/ukhomeofficedigital/neo4j-haproxy", + "popularity": 2.0 }, { - "name": "neo4j", - "url": "https://quay.io/repository/modelgraphtools/neo4j", - "popularity": 0.0 + "name": "neo4j-enterprise", + "url": "https://quay.io/repository/ukhomeofficedigital/neo4j-enterprise", + "popularity": 2.0 }, { "name": "neo4j", "url": "https://quay.io/repository/ukhomeofficedigital/neo4j", - "popularity": 0.0 + "popularity": 2.0 }, { - "name": "neo4j", - "url": "https://quay.io/repository/peoplepattern/neo4j", + "name": "neo_ie", + "url": "https://quay.io/repository/sanbi-sa/neo_ie", "popularity": 0.0 } ] @@ -10706,33 +8114,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 33, + "star_count": 40, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10743,30 +8128,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss-dev", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10777,14 +8139,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss-image-tags", "OS": [ - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -10795,27 +8150,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 43570374.0 + "popularity": 91532409.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2497215.0 + "popularity": 2503206.0 }, { - "name": "nginx-ingress-controller", - "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1244426.0 + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 1083441.0 } ] }, @@ -10836,25 +8191,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "objectscale/manager-pre-update", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/manager-pre-update", + "OS": [ + "linux" ] } ] @@ -10865,27 +8216,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 } ] }, @@ -10905,17 +8256,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 53, + "star_count": 60, "Docker_Url": "https://hub.docker.com/r/bitnami/openldap", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -10925,17 +8269,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 53, + "star_count": 60, "Docker_Url": "https://hub.docker.com/r/bitnami/openldap", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -10945,16 +8282,7 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/openldap-ppc64le", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] + "OS": [] } ] }, @@ -10962,38 +8290,38 @@ "quay_exact_images": [ { "name": "openldap", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap", - "popularity": 0.0 + "url": "https://quay.io/repository/minio/openldap", + "popularity": 542.0 }, { "name": "openldap", - "url": "https://quay.io/repository/powerhome/openldap", - "popularity": 0.0 + "url": "https://quay.io/repository/flysangel/openldap", + "popularity": 154.0 }, { "name": "openldap", - "url": "https://quay.io/repository/minio/openldap", - "popularity": 712.0 + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap", + "popularity": 0.0 }, { "name": "openldap", - "url": "https://quay.io/repository/flysangel/openldap", - "popularity": 105.0 + "url": "https://quay.io/repository/cs-sert/openldap", + "popularity": 92.0 }, { "name": "openldap", - "url": "https://quay.io/repository/cs-sert/openldap", - "popularity": 66.0 + "url": "https://quay.io/repository/truecharts/openldap", + "popularity": 291.0 }, { "name": "openldap", - "url": "https://quay.io/repository/llasmith/openldap", - "popularity": 42.0 + "url": "https://quay.io/repository/rosalindfranklininstitute/openldap", + "popularity": 14.0 }, { "name": "openldap", - "url": "https://quay.io/repository/rosalindfranklininstitute/openldap", - "popularity": 73.0 + "url": "https://quay.io/repository/llasmith/openldap", + "popularity": 2.0 }, { "name": "openldap", @@ -11002,27 +8330,32 @@ }, { "name": "openldap", - "url": "https://quay.io/repository/opaqnetworks/openldap", + "url": "https://quay.io/repository/sabzco/openldap", "popularity": 0.0 }, { "name": "openldap", - "url": "https://quay.io/repository/sacpathak/openldap", + "url": "https://quay.io/repository/ramonvanstijn/openldap", "popularity": 0.0 }, { "name": "openldap", - "url": "https://quay.io/repository/vr4manta/openldap", + "url": "https://quay.io/repository/kylecooley/openldap", + "popularity": 2.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/syndesis_qe/openldap", "popularity": 0.0 }, { "name": "openldap", - "url": "https://quay.io/repository/tmm/openldap", + "url": "https://quay.io/repository/feven/openldap", "popularity": 0.0 }, { "name": "openldap", - "url": "https://quay.io/repository/elidirhealth/openldap", + "url": "https://quay.io/repository/nathan5508/openldap", "popularity": 0.0 } ], @@ -11030,27 +8363,27 @@ { "name": "openldap", "url": "https://quay.io/repository/minio/openldap", - "popularity": 712.0 + "popularity": 542.0 }, { "name": "openldap", "url": "https://quay.io/repository/flysangel/openldap", - "popularity": 105.0 + "popularity": 154.0 }, { "name": "openldap", "url": "https://quay.io/repository/cs-sert/openldap", - "popularity": 66.0 + "popularity": 92.0 }, { "name": "openldap", - "url": "https://quay.io/repository/llasmith/openldap", - "popularity": 42.0 + "url": "https://quay.io/repository/truecharts/openldap", + "popularity": 291.0 }, { "name": "openldap", "url": "https://quay.io/repository/rosalindfranklininstitute/openldap", - "popularity": 73.0 + "popularity": 14.0 } ] }, @@ -11072,12 +8405,12 @@ "quay_top_images": [ { "name": "clair-scanner", - "url": "https://quay.io/repository/ibm/clair-scanner", + "url": "https://quay.io/repository/ibmz/clair-scanner", "popularity": 0.0 }, { "name": "clair-scanner", - "url": "https://quay.io/repository/ibmz/clair-scanner", + "url": "https://quay.io/repository/ibm/clair-scanner", "popularity": 0.0 } ] @@ -11102,14 +8435,7 @@ "star_count": 9, "Docker_Url": "https://hub.docker.com/r/ibmcom/openvpn-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -11119,59 +8445,84 @@ { "name": "openvpn", "url": "https://quay.io/repository/kubermatic/openvpn", - "popularity": 18304.0 + "popularity": 7287.0 }, { "name": "openvpn", "url": "https://quay.io/repository/plange/openvpn", - "popularity": 133.0 + "popularity": 112.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/hypershift/openvpn", + "popularity": 34.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/konveyor/openvpn", + "popularity": 0.0 }, { "name": "openvpn", "url": "https://quay.io/repository/ukhomeofficedigital/openvpn", - "popularity": 10.0 + "popularity": 2.0 }, { "name": "openvpn", - "url": "https://quay.io/repository/digidentity/openvpn", + "url": "https://quay.io/repository/mwasher/openvpn", "popularity": 0.0 }, { "name": "openvpn", - "url": "https://quay.io/repository/hypershift/openvpn", - "popularity": 81.0 + "url": "https://quay.io/repository/scentbird/openvpn", + "popularity": 0.0 }, { "name": "openvpn", - "url": "https://quay.io/repository/konveyor/openvpn", + "url": "https://quay.io/repository/thekad/openvpn", "popularity": 0.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/profects/openvpn", + "popularity": 0.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/diabol/openvpn", + "popularity": 0.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/line0562/openvpn", + "popularity": 2.0 } ], "quay_top_images": [ { "name": "openvpn", "url": "https://quay.io/repository/kubermatic/openvpn", - "popularity": 18304.0 - }, - { - "name": "openvpn-authd", - "url": "https://quay.io/repository/ukhomeofficedigital/openvpn-authd", - "popularity": 393.0 + "popularity": 7287.0 }, { "name": "openvpn", "url": "https://quay.io/repository/plange/openvpn", - "popularity": 133.0 - }, - { - "name": "openvpn-sessions", - "url": "https://quay.io/repository/ukhomeofficedigital/openvpn-sessions", - "popularity": 254.0 + "popularity": 112.0 }, { "name": "openvpn-client-container", "url": "https://quay.io/repository/tkaefer/openvpn-client-container", - "popularity": 160.0 + "popularity": 165.0 + }, + { + "name": "openvpn-client", + "url": "https://quay.io/repository/truecharts/openvpn-client", + "popularity": 174.0 + }, + { + "name": "docker-openvpn", + "url": "https://quay.io/repository/tkaefer/docker-openvpn", + "popularity": 56.0 } ] }, @@ -11192,61 +8543,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 7, + "star_count": 9, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/oracle-7-desktop", + "name": "objectscale/management-gateway", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "Docker_Url": "https://hub.docker.com/r/objectscale/management-gateway", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "kasmweb/oracle-8-desktop", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -11254,30 +8565,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 - }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 216548.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171910.0 + "popularity": 200677.0 }, { - "name": "postgresql-10-centos7", - "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 179600.0 } ] }, @@ -11298,17 +8609,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -11316,25 +8620,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -11342,17 +8631,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -11360,25 +8642,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -11389,27 +8656,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3111.0 + "popularity": 8009.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 4180.0 } ] }, @@ -11430,17 +8697,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -11448,25 +8708,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -11474,17 +8719,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -11492,25 +8730,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -11521,27 +8744,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3111.0 + "popularity": 8009.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 4180.0 } ] }, @@ -11564,27 +8787,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { - "name": "origin-mdns-publisher", - "url": "https://quay.io/repository/openshift/origin-mdns-publisher", - "popularity": 3674.0 + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 8009.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 4180.0 } ] }, @@ -11601,91 +8824,14 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "kasmweb/core-oracle-8", + "name": "vmware/log-intelligence-fluentd", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "Docker_Url": "https://hub.docker.com/r/vmware/log-intelligence-fluentd", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "kasmweb/core-oracle-7", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "kasmweb/oracle-7-desktop", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "kasmweb/oracle-8-desktop", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -11696,27 +8842,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 8233.0 } ] }, @@ -11733,47 +8879,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "kasmweb/oracle-8-desktop", + "name": "kasmweb/oracle-7-desktop", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/oracle-7-desktop", + "name": "kasmweb/oracle-8-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -11784,27 +8908,27 @@ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 - }, - { - "name": "billing-sidecar", - "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 216548.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 151149.0 + "popularity": 179600.0 + }, + { + "name": "vault-creds", + "url": "https://quay.io/repository/uswitch/vault-creds", + "popularity": 238374.0 } ] }, @@ -11828,14 +8952,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/ibmcom/ace-designer-flows", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -11846,27 +8963,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3111.0 + "popularity": 8009.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 4180.0 } ] }, @@ -11887,87 +9004,43 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/enterprise", + "name": "kasmweb/oracle-7-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/oracle-7-desktop", + "name": "kasmweb/oracle-8-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/oracle-8-desktop", + "name": "rancher/enterprise", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -11978,27 +9051,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 645293.0 + "popularity": 737474.0 } ] }, @@ -12019,17 +9092,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12037,25 +9103,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12063,17 +9114,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12081,25 +9125,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -12110,27 +9139,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 8009.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 } ] }, @@ -12151,29 +9180,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "metering-reporting-operator", - "url": "https://quay.io/repository/coreos/metering-reporting-operator", - "popularity": 1261.0 + "name": "origin-metering-reporting-operator", + "url": "https://quay.io/repository/openshift/origin-metering-reporting-operator", + "popularity": 3874.0 }, { "name": "reporting", "url": "https://quay.io/repository/sisense/reporting", - "popularity": 2821.0 - }, - { - "name": "origin-metering-reporting-operator", - "url": "https://quay.io/repository/openshift/origin-metering-reporting-operator", - "popularity": 3674.0 + "popularity": 3020.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2351.0 + "popularity": 1942.0 + }, + { + "name": "roundcube", + "url": "https://quay.io/repository/instrumentisto/roundcube", + "popularity": 1983.0 } ] }, @@ -12196,27 +9225,27 @@ { "name": "hyperion", "url": "https://quay.io/repository/devtron/hyperion", - "popularity": 358.0 + "popularity": 447.0 + }, + { + "name": "hyperion.ng", + "url": "https://quay.io/repository/truecharts/hyperion.ng", + "popularity": 258.0 }, { "name": "federatorai-operator-ubi", "url": "https://quay.io/repository/prophetstor/federatorai-operator-ubi", - "popularity": 492.0 + "popularity": 236.0 }, { - "name": "sentence-planning", - "url": "https://quay.io/repository/hmpps/sentence-planning", + "name": "removalist", + "url": "https://quay.io/repository/airesrelocation/removalist", "popularity": 0.0 }, { - "name": "hyperion.ng", - "url": "https://quay.io/repository/truecharts/hyperion.ng", - "popularity": 12.0 - }, - { - "name": "ibm-spectrum-scale-csi-driver", - "url": "https://quay.io/repository/mew2057/ibm-spectrum-scale-csi-driver", - "popularity": 0.0 + "name": "royalkitchenworld", + "url": "https://quay.io/repository/royalkitchenworldseo/royalkitchenworld", + "popularity": 2.0 } ] }, @@ -12240,14 +9269,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/net", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12255,17 +9277,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12273,25 +9288,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -12302,27 +9302,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 1442128.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 857217.0 + "popularity": 1013505.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 - }, - { - "name": "cilium", - "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 337637.0 } ] }, @@ -12339,47 +9339,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "kasmweb/oracle-8-desktop", + "name": "kasmweb/oracle-7-desktop", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/oracle-7-desktop", + "name": "kasmweb/oracle-8-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -12387,30 +9365,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 133096.0 - }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 165365.0 + "popularity": 252177.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 117328.0 + "popularity": 167566.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/cilium/operator", + "popularity": 91249.0 } ] }, @@ -12434,14 +9412,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/pachyderm/retail-allocation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -12452,27 +9423,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 300956.0 + "popularity": 218521.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 329446.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 368485.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 160924.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -12489,47 +9460,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "kasmweb/oracle-7-desktop", + "name": "kasmweb/oracle-8-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/oracle-8-desktop", + "name": "kasmweb/oracle-7-desktop", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -12540,27 +9489,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 300956.0 + "popularity": 218521.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 329446.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 368485.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 160924.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -12584,14 +9533,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/smart-city_solution", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12602,14 +9544,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/smart-city_grafana", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -12620,27 +9555,27 @@ { "name": "signalfx-agent", "url": "https://quay.io/repository/signalfx/signalfx-agent", - "popularity": 4302999.0 + "popularity": 6471969.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 165365.0 + "popularity": 252177.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 126512.0 + "popularity": 160924.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 117328.0 + "popularity": 167566.0 } ] }, @@ -12661,17 +9596,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12679,25 +9607,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12705,17 +9618,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12723,25 +9629,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -12752,27 +9643,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3111.0 + "popularity": 8009.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 4180.0 } ] }, @@ -12789,21 +9680,14 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "gooddata/sql-executor", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -12814,27 +9698,27 @@ { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 146865.0 + "popularity": 176289.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 - }, - { - "name": "cloud-native-postgresql", - "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 + "popularity": 71385.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 37098.0 + "popularity": 24992.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20267.0 } ] }, @@ -12851,47 +9735,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "kasmweb/oracle-8-desktop", + "name": "kasmweb/oracle-7-desktop", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/oracle-7-desktop", + "name": "kasmweb/oracle-8-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -12902,27 +9764,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 }, { - "name": "billing-sidecar", - "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "name": "vault-creds", + "url": "https://quay.io/repository/uswitch/vault-creds", + "popularity": 238374.0 } ] }, @@ -12939,21 +9801,14 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "circleci/builder-base", + "name": "cockroachdb/builder", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/circleci/builder-base", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/cockroachdb/builder", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12961,17 +9816,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -12979,43 +9827,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "portainer/angular-builder", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/portainer/angular-builder", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -13026,27 +9841,27 @@ { "name": "upstream-opm-builder", "url": "https://quay.io/repository/operator-framework/upstream-opm-builder", - "popularity": 59906.0 + "popularity": 132245.0 }, { "name": "cf-docker-builder", "url": "https://quay.io/repository/codefresh/cf-docker-builder", - "popularity": 84473.0 + "popularity": 74532.0 }, { "name": "ubuntu20-builder", "url": "https://quay.io/repository/wire/ubuntu20-builder", - "popularity": 25569.0 + "popularity": 26096.0 }, { - "name": "oracle-12c", - "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "name": "ansible-builder", + "url": "https://quay.io/repository/ansible/ansible-builder", + "popularity": 44335.0 }, { - "name": "alpine-builder", - "url": "https://quay.io/repository/wire/alpine-builder", - "popularity": 17081.0 + "name": "ubi-quarkus-graalvmce-builder-image", + "url": "https://quay.io/repository/quarkus/ubi-quarkus-graalvmce-builder-image", + "popularity": 31301.0 } ] }, @@ -13095,13 +9910,13 @@ ], "quay_top_images": [ { - "name": "docker-pentaho-pdi", - "url": "https://quay.io/repository/matthieudolci/docker-pentaho-pdi", + "name": "pentaho", + "url": "https://quay.io/repository/hasni/pentaho", "popularity": 0.0 }, { - "name": "pentaho", - "url": "https://quay.io/repository/hasni/pentaho", + "name": "docker-pentaho-pdi", + "url": "https://quay.io/repository/matthieudolci/docker-pentaho-pdi", "popularity": 0.0 }, { @@ -13144,19 +9959,14 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "bioconductor-elmer", - "url": "https://quay.io/repository/biocontainers/bioconductor-elmer", - "popularity": 87.0 - }, { "name": "bioconductor-elmer.data", "url": "https://quay.io/repository/biocontainers/bioconductor-elmer.data", - "popularity": 0.0 + "popularity": 168.0 }, { - "name": "pathogen-informatics-training", - "url": "https://quay.io/repository/sangerpathogens/pathogen-informatics-training", + "name": "bioconductor-elmer", + "url": "https://quay.io/repository/biocontainers/bioconductor-elmer", "popularity": 0.0 }, { @@ -13164,6 +9974,11 @@ "url": "https://quay.io/repository/informaticslab/mshack", "popularity": 0.0 }, + { + "name": "pathogen-informatics-training", + "url": "https://quay.io/repository/sangerpathogens/pathogen-informatics-training", + "popularity": 0.0 + }, { "name": "pgap", "url": "https://quay.io/repository/microbiome-informatics/pgap", @@ -13187,30 +10002,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "postgresql", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql", - "popularity": 0.0 - }, { "name": "psql", "url": "https://quay.io/repository/manywho/psql", - "popularity": 173.0 + "popularity": 183.0 }, { "name": "sso74-psql-openshift-rhel8", "url": "https://quay.io/repository/mzeny/sso74-psql-openshift-rhel8", "popularity": 168.0 }, - { - "name": "hocs-psql-exec", - "url": "https://quay.io/repository/ukhomeofficedigital/hocs-psql-exec", - "popularity": 0.0 - }, { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2358.0 + "popularity": 2441.0 + }, + { + "name": "spon-psql-client", + "url": "https://quay.io/repository/ukhomeofficedigital/spon-psql-client", + "popularity": 2.0 + }, + { + "name": "hocs-psql-exec", + "url": "https://quay.io/repository/ukhomeofficedigital/hocs-psql-exec", + "popularity": 2.0 } ] }, @@ -13233,27 +10048,27 @@ { "name": "get-pipe", "url": "https://quay.io/repository/igtdp/get-pipe", - "popularity": 193.0 - }, - { - "name": "worker-pipe", - "url": "https://quay.io/repository/igtdp/worker-pipe", - "popularity": 0.0 + "popularity": 7.0 }, { "name": "bcftools", "url": "https://quay.io/repository/biocontainers/bcftools", - "popularity": 17292.0 + "popularity": 7804.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 + }, + { + "name": "pgx-pipe-helper", + "url": "https://quay.io/repository/biocontainers/pgx-pipe-helper", + "popularity": 4.0 }, { "name": "udplog-d", "url": "https://quay.io/repository/jcmoraisjr/udplog-d", - "popularity": 8.0 + "popularity": 28.0 } ] }, @@ -13288,8 +10103,20 @@ "dockerhub_top_images": [] }, { - "quay_exact_images": [], - "quay_top_images": [] + "quay_exact_images": [ + { + "name": "planview", + "url": "https://quay.io/repository/anuj_sharma401/planview", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "planview", + "url": "https://quay.io/repository/anuj_sharma401/planview", + "popularity": 0.0 + } + ] }, { "operators": [] @@ -13307,17 +10134,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 149, + "star_count": 154, "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "vmware/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/vmware/postgresql", + "OS": [ + "linux" ] }, { @@ -13328,30 +10159,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -13362,14 +10170,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/pachyderm/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -13382,14 +10183,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/pachyderm/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -13400,90 +10194,51 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/postgresql", + "name": "vmware/postgresql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 149, - "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/vmware/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/postgresql-ppc64le", + "name": "bitnami/postgresql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql-ppc64le", + "star_count": 154, + "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/postgresql-amd64", + "name": "objectscale/postgresql-repmgr", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql-amd64", + "Docker_Url": "https://hub.docker.com/r/objectscale/postgresql-repmgr", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] }, { "quay_exact_images": [ + { + "name": "postgresql", + "url": "https://quay.io/repository/enterprisedb/postgresql", + "popularity": 22536.0 + }, { "name": "postgresql", "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql", @@ -13491,45 +10246,45 @@ }, { "name": "postgresql", - "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 19350.0 + "url": "https://quay.io/repository/truecharts/postgresql", + "popularity": 4144.0 }, { "name": "postgresql", "url": "https://quay.io/repository/aptible/postgresql", - "popularity": 1718.0 + "popularity": 2036.0 }, { "name": "postgresql", "url": "https://quay.io/repository/operatorhubio/postgresql", - "popularity": 1434.0 + "popularity": 890.0 } ], "quay_top_images": [ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 151149.0 - }, - { - "name": "postgresql-operator", - "url": "https://quay.io/repository/dev4devs-com/postgresql-operator", - "popularity": 21696.0 + "popularity": 179600.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 + "popularity": 20267.0 + }, + { + "name": "postgresql", + "url": "https://quay.io/repository/enterprisedb/postgresql", + "popularity": 22536.0 } ] }, @@ -13580,19 +10335,19 @@ "stars": 0, "display_name": "Percona Operator for PostgreSQL", "description": "Percona Operator for PostgreSQL manages the lifecycle of Percona PostgreSQL cluster instances.", - "version": "1.2.0", + "version": "1.3.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, + "low": 29, "high": 2, - "medium": 32, + "medium": 34, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1649682704, + "ts": 1660223504, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -13606,7 +10361,9 @@ "organization_display_name": "Operator Framework" }, "git_repos": "https://github.com/percona/percona-postgresql-operator", - "container_images": [] + "container_images": [ + "docker.io/percona/percona-postgresql-operator:1.3.0-postgres-operator" + ] }, { "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", @@ -13644,22 +10401,22 @@ "name": "postgresql", "normalized_name": "postgresql", "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, + "stars": 16, "display_name": "Crunchy Postgres for Kubernetes", "description": "Production Postgres Made Easy", - "version": "5.1.2", + "version": "5.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, + "low": 29, + "high": 2, + "medium": 31, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657571435, + "ts": 1662748237, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -13683,19 +10440,19 @@ "stars": 1, "display_name": "EDB Postgres for Kubernetes", "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", - "version": "1.15.1", + "version": "1.17.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, + "low": 29, "high": 1, - "medium": 32, - "unknown": 0, - "critical": 0 + "medium": 26, + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1654016342, + "ts": 1662658187, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -13718,7 +10475,7 @@ "name": "postgres-operator", "normalized_name": "postgres-operator", "logo_image_id": "932e96b3-34be-4e2f-bd53-b30903d20a2d", - "stars": 3, + "stars": 4, "display_name": "Postgres-Operator", "description": "Postgres operator creates and manages PostgreSQL clusters running in Kubernetes.", "version": "1.4.0", @@ -13873,10 +10630,10 @@ "signed": false, "security_report_summary": { "low": 2, - "high": 31, - "medium": 11, - "unknown": 1, - "critical": 5 + "high": 41, + "medium": 13, + "unknown": 4, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -13975,40 +10732,37 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -14016,30 +10770,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "common-web-ui", - "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 - }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -14060,93 +10814,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-identity-manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", - "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-image-manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-image-manager", - "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -14157,27 +10828,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -14220,65 +10891,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4383, + "star_count": 4483, "Docker_Url": "https://hub.docker.com/_/rabbitmq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -14286,17 +10902,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 88, + "star_count": 90, "Docker_Url": "https://hub.docker.com/r/bitnami/rabbitmq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -14307,14 +10916,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/circleci/rabbitmq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -14327,14 +10929,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/circleci/rabbitmq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -14342,17 +10937,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 88, + "star_count": 90, "Docker_Url": "https://hub.docker.com/r/bitnami/rabbitmq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -14360,65 +10948,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4383, + "star_count": 4483, "Docker_Url": "https://hub.docker.com/_/rabbitmq", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -14428,74 +10961,192 @@ { "name": "rabbitmq", "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq", - "popularity": 2.0 + "popularity": 0.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/scentbird/rabbitmq", + "popularity": 6368.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/domino/rabbitmq", - "popularity": 2345.0 + "popularity": 2199.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/sisense/rabbitmq", - "popularity": 2228.0 + "popularity": 1817.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/scentbird/rabbitmq", - "popularity": 1855.0 + "url": "https://quay.io/repository/openstack.kolla/rabbitmq", + "popularity": 3077.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/trackmaven/rabbitmq", + "popularity": 1996.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/aptible/rabbitmq", - "popularity": 1697.0 + "popularity": 2021.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/trackmaven/rabbitmq", - "popularity": 1907.0 + "url": "https://quay.io/repository/lbac/rabbitmq", + "popularity": 1513.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/openstack.kolla/rabbitmq", - "popularity": 1096.0 + "url": "https://quay.io/repository/opsmxpublic/rabbitmq", + "popularity": 406.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/lbac/rabbitmq", - "popularity": 1514.0 + "url": "https://quay.io/repository/redhat-aqe/rabbitmq", + "popularity": 507.0 } ], "quay_top_images": [ { - "name": "rabbitmq", - "url": "https://quay.io/repository/domino/rabbitmq", - "popularity": 2345.0 + "name": "knapsack-rabbitmq", + "url": "https://quay.io/repository/afcatano/knapsack-rabbitmq", + "popularity": 91216.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/sisense/rabbitmq", - "popularity": 2228.0 + "url": "https://quay.io/repository/scentbird/rabbitmq", + "popularity": 6368.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/scentbird/rabbitmq", - "popularity": 1855.0 + "url": "https://quay.io/repository/domino/rabbitmq", + "popularity": 2199.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/aptible/rabbitmq", - "popularity": 1697.0 + "url": "https://quay.io/repository/openstack.kolla/rabbitmq", + "popularity": 3077.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/trackmaven/rabbitmq", - "popularity": 1907.0 + "url": "https://quay.io/repository/aptible/rabbitmq", + "popularity": 2021.0 } ] }, { - "operators": [] + "operators": [ + { + "package_id": "4eb10049-dfed-492a-9eba-f111687339d1", + "name": "rabbitmq-cluster-operator", + "normalized_name": "rabbitmq-cluster-operator", + "logo_image_id": "50c35ae8-ee5b-4b23-81ef-eed663217383", + "stars": 0, + "display_name": "RabbitMQ-cluster-operator", + "description": "RabbitMQ Cluster Operator developed and maintained by the RabbitMQ team automates the provisioning, management, of RabbitMQ clusters running on Kubernetes. \n", + "version": "2.0.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655299720, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rabbitmq/cluster-operator", + "container_images": [ + "docker.io/rabbitmqoperator/cluster-operator:2.0.0" + ] + }, + { + "package_id": "cc768c35-1956-4358-b187-647c4f91bfda", + "name": "rabbitmq-messaging-topology-operator", + "normalized_name": "rabbitmq-messaging-topology-operator", + "logo_image_id": "50c35ae8-ee5b-4b23-81ef-eed663217383", + "stars": 0, + "display_name": "rabbitmq-messaging-topology-operator", + "description": "Kubernetes operator to allow developers to create and manage RabbitMQ messaging topologies within a RabbitMQ cluster using a declarative Kubernetes API. ", + "version": "1.8.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1661174920, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rabbitmq/messaging-topology-operator", + "container_images": [ + "docker.io/rabbitmqoperator/messaging-topology-operator:1.8.0" + ] + }, + { + "package_id": "cf4c4e04-a46b-49b1-9914-248a765d3f4f", + "name": "rabbitmq-single-active-consumer-operator", + "normalized_name": "rabbitmq-single-active-consumer-operator", + "logo_image_id": "50c35ae8-ee5b-4b23-81ef-eed663217383", + "stars": 0, + "display_name": "rabbitmq-single-active-consumer-operator", + "description": "This Kubernetes operator serves as an automated orchestration layer to create a single-active-consumer topology on a RabbitMQ Cluster with SuperStreams. In this topology, a single SuperStream can be partitioned into smaller partition streams; the purpose of this operator is to ensure that for each partition, exactly one application Pod is consuming from the partition stream at any given time.", + "version": "0.2.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 4, + "medium": 1, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1661174920, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rabbitmq/single-active-consumer-operator", + "container_images": [ + "docker.io/rabbitmqoperator/single-active-consumer-operator:0.2.2" + ] + } + ] } ], "entity_type": 2, @@ -14544,73 +11195,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 11152, + "star_count": 11397, "Docker_Url": "https://hub.docker.com/_/redis", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -14618,17 +11206,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 227, + "star_count": 229, "Docker_Url": "https://hub.docker.com/r/bitnami/redis", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -14639,168 +11220,53 @@ "star_count": 14, "Docker_Url": "https://hub.docker.com/r/circleci/redis", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ubuntu/redis", + "name": "cimg/redis", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/redis", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "cimg/redis", + "name": "ubuntu/redis", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/redis", + "star_count": 11, + "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], "dockerhub_top_images": [ { - "name": "redis", - "Official image": true, - "Verified Publisher": false, + "name": "cimg/redis", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 11152, - "Docker_Url": "https://hub.docker.com/_/redis", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/redis", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "cimg/redis", + "name": "ubuntu/redis", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/redis", + "star_count": 11, + "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -14808,17 +11274,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 227, + "star_count": 229, "Docker_Url": "https://hub.docker.com/r/bitnami/redis", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -14829,56 +11288,18 @@ "star_count": 14, "Docker_Url": "https://hub.docker.com/r/circleci/redis", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ubuntu/redis", - "Official image": false, - "Verified Publisher": true, + "name": "redis", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", + "star_count": 11397, + "Docker_Url": "https://hub.docker.com/_/redis", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -14888,79 +11309,94 @@ { "name": "redis", "url": "https://quay.io/repository/sameersbn/redis", - "popularity": 178652.0 + "popularity": 178356.0 }, { "name": "redis", "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/redis", "popularity": 0.0 }, + { + "name": "redis", + "url": "https://quay.io/repository/opstree/redis", + "popularity": 9078.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/scentbird/redis", + "popularity": 6339.0 + }, { "name": "redis", "url": "https://quay.io/repository/domino/redis", - "popularity": 2993.0 + "popularity": 2526.0 }, { "name": "redis", - "url": "https://quay.io/repository/opstree/redis", - "popularity": 10538.0 + "url": "https://quay.io/repository/aptible/redis", + "popularity": 2032.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/libpod/redis", + "popularity": 1194.0 }, { "name": "redis", "url": "https://quay.io/repository/quay/redis", - "popularity": 1229.0 + "popularity": 530.0 }, { "name": "redis", - "url": "https://quay.io/repository/scentbird/redis", - "popularity": 1849.0 + "url": "https://quay.io/repository/cloud-bulldozer/redis", + "popularity": 1661.0 }, { "name": "redis", "url": "https://quay.io/repository/crio/redis", - "popularity": 5448.0 + "popularity": 816.0 }, { "name": "redis", - "url": "https://quay.io/repository/aptible/redis", - "popularity": 1813.0 + "url": "https://quay.io/repository/devtron/redis", + "popularity": 745.0 }, { "name": "redis", - "url": "https://quay.io/repository/libpod/redis", - "popularity": 1944.0 + "url": "https://quay.io/repository/truecharts/redis", + "popularity": 3609.0 }, { "name": "redis", - "url": "https://quay.io/repository/cloud-bulldozer/redis", - "popularity": 2599.0 + "url": "https://quay.io/repository/codefresh/redis", + "popularity": 3110.0 } ], "quay_top_images": [ { "name": "redis-5-centos7", "url": "https://quay.io/repository/centos7/redis-5-centos7", - "popularity": 254603.0 - }, - { - "name": "redis-operator", - "url": "https://quay.io/repository/spotahome/redis-operator", - "popularity": 139843.0 + "popularity": 262330.0 }, { "name": "redis", "url": "https://quay.io/repository/sameersbn/redis", - "popularity": 178652.0 + "popularity": 178356.0 }, { - "name": "redis-exporter", - "url": "https://quay.io/repository/opstree/redis-exporter", - "popularity": 56949.0 + "name": "redis-operator", + "url": "https://quay.io/repository/spotahome/redis-operator", + "popularity": 134647.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 + "popularity": 123109.0 + }, + { + "name": "redis-exporter", + "url": "https://quay.io/repository/opstree/redis-exporter", + "popularity": 50146.0 } ] }, @@ -14971,7 +11407,7 @@ "name": "redis-operator", "normalized_name": "redis-operator", "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, + "stars": 12, "display_name": "Redis Operator", "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", "version": "0.11.0", @@ -14979,9 +11415,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -15100,28 +11536,28 @@ ], "quay_top_images": [ { - "name": "remedy", - "url": "https://quay.io/repository/amosnl/remedy", + "name": "car-service", + "url": "https://quay.io/repository/ahlammajid298/car-service", "popularity": 0.0 }, { - "name": "edpills", - "url": "https://quay.io/repository/amydewey/edpills", + "name": "ever_feel_like_your_car_lacks_acceleration_heres_what_to_do", + "url": "https://quay.io/repository/shannonj_wilson/ever_feel_like_your_car_lacks_acceleration_heres_what_to_do", "popularity": 0.0 }, { - "name": "healthcare", - "url": "https://quay.io/repository/rudyreichert/healthcare", + "name": "robertmerritt2", + "url": "https://quay.io/repository/robertmerritt/robertmerritt2", "popularity": 0.0 }, { - "name": "healthcaretips", - "url": "https://quay.io/repository/medajohnson/healthcaretips", + "name": "robertmerritt12", + "url": "https://quay.io/repository/robertmerritt/robertmerritt12", "popularity": 0.0 }, { - "name": "childcustodylawyer", - "url": "https://quay.io/repository/legalremedy/childcustodylawyer", + "name": "edpills", + "url": "https://quay.io/repository/amydewey/edpills", "popularity": 0.0 } ] @@ -15143,7 +11579,7 @@ "quay_exact_images": [ { "name": "riak", - "url": "https://quay.io/repository/dotabuff/riak", + "url": "https://quay.io/repository/deisci/riak", "popularity": 0.0 }, { @@ -15163,12 +11599,12 @@ }, { "name": "riak", - "url": "https://quay.io/repository/01it/riak", + "url": "https://quay.io/repository/dotabuff/riak", "popularity": 0.0 }, { "name": "riak", - "url": "https://quay.io/repository/deisci/riak", + "url": "https://quay.io/repository/01it/riak", "popularity": 0.0 } ], @@ -15180,17 +11616,17 @@ }, { "name": "riak", - "url": "https://quay.io/repository/dotabuff/riak", + "url": "https://quay.io/repository/deisci/riak", "popularity": 0.0 }, { - "name": "riak", - "url": "https://quay.io/repository/arschles/riak", + "name": "riak-stanchion", + "url": "https://quay.io/repository/arschles/riak-stanchion", "popularity": 0.0 }, { - "name": "riak-stanchion", - "url": "https://quay.io/repository/arschles/riak-stanchion", + "name": "riak", + "url": "https://quay.io/repository/arschles/riak", "popularity": 0.0 }, { @@ -15246,22 +11682,26 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -15269,17 +11709,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 8, + "star_count": 9, "Docker_Url": "https://hub.docker.com/r/bitnami/metrics-server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -15290,27 +11723,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -15333,27 +11766,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3639.0 + "popularity": 157.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 102.0 + "popularity": 82.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7567.0 + "popularity": 8233.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6669.0 + "popularity": 3531.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 170.0 + "popularity": 168.0 } ] }, @@ -15369,6 +11802,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/db", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/db", + "OS": [ + "linux" + ] + }, { "name": "appdynamics/db-agent", "Official image": false, @@ -15377,14 +11821,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -15395,27 +11832,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3639.0 + "popularity": 157.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 102.0 + "popularity": 82.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7567.0 + "popularity": 8233.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6669.0 + "popularity": 3531.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 170.0 + "popularity": 168.0 } ] }, @@ -15438,27 +11875,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3639.0 + "popularity": 157.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 102.0 + "popularity": 82.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7567.0 + "popularity": 8233.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6669.0 + "popularity": 3531.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 170.0 + "popularity": 168.0 } ] }, @@ -15479,29 +11916,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "business-central-workbench-showcase", - "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 657.0 + "name": "warehouse", + "url": "https://quay.io/repository/sisense/warehouse", + "popularity": 1533.0 }, { - "name": "sap-side-by-side-be", - "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3639.0 + "name": "business-central-workbench", + "url": "https://quay.io/repository/kiegroup/business-central-workbench", + "popularity": 777.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7567.0 + "popularity": 8233.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6669.0 + "popularity": 3531.0 } ] }, @@ -15518,21 +11955,14 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "gooddata/sql-executor", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -15543,27 +11973,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 15182.0 + "popularity": 8548.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 146865.0 + "popularity": 176289.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 37098.0 + "popularity": 24992.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 } ] }, @@ -15578,7 +12008,19 @@ "SAP Web Dynpro": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "hashicorp/web", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/hashicorp/web", + "OS": [ + "" + ] + } + ] }, { "quay_exact_images": [], @@ -15586,27 +12028,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 - }, - { - "name": "windup-web-openshift", - "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47530.0 + "popularity": 313212.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "nginx-116-centos7", "url": "https://quay.io/repository/centos7/nginx-116-centos7", - "popularity": 159422.0 + "popularity": 138283.0 + }, + { + "name": "nginx-proxy", + "url": "https://quay.io/repository/ukhomeofficedigital/nginx-proxy", + "popularity": 167839.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 112605.0 + "popularity": 111692.0 } ] }, @@ -15626,17 +12068,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 625, + "star_count": 628, "Docker_Url": "https://hub.docker.com/_/sentry", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -15646,17 +12081,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 625, + "star_count": 628, "Docker_Url": "https://hub.docker.com/_/sentry", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -15666,37 +12094,52 @@ { "name": "sentry", "url": "https://quay.io/repository/app-sre/sentry", - "popularity": 923.0 + "popularity": 716.0 }, { "name": "sentry", - "url": "https://quay.io/repository/swsmirror/sentry", + "url": "https://quay.io/repository/dontpayfull/sentry", "popularity": 0.0 }, { "name": "sentry", - "url": "https://quay.io/repository/dontpayfull/sentry", + "url": "https://quay.io/repository/baselibrary/sentry", "popularity": 0.0 }, { "name": "sentry", - "url": "https://quay.io/repository/zebbra/sentry", + "url": "https://quay.io/repository/3ofcoins/sentry", "popularity": 0.0 }, { "name": "sentry", - "url": "https://quay.io/repository/kbrwn/sentry", + "url": "https://quay.io/repository/dockerlibrary/sentry", "popularity": 0.0 }, { "name": "sentry", - "url": "https://quay.io/repository/3ofcoins/sentry", + "url": "https://quay.io/repository/rlex/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/aptible/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/vahidm/sentry", "popularity": 0.0 }, { "name": "sentry", "url": "https://quay.io/repository/beatport/sentry", - "popularity": 2.0 + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/maaaato/sentry", + "popularity": 0.0 }, { "name": "sentry", @@ -15710,17 +12153,22 @@ }, { "name": "sentry", - "url": "https://quay.io/repository/dockerlibrary/sentry", + "url": "https://quay.io/repository/kbrwn/sentry", "popularity": 0.0 }, { "name": "sentry", - "url": "https://quay.io/repository/baselibrary/sentry", + "url": "https://quay.io/repository/centerforopenscience/sentry", "popularity": 0.0 }, { "name": "sentry", - "url": "https://quay.io/repository/aptible/sentry", + "url": "https://quay.io/repository/zebbra/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/fmeneses/sentry", "popularity": 0.0 } ], @@ -15728,27 +12176,27 @@ { "name": "sentry", "url": "https://quay.io/repository/app-sre/sentry", - "popularity": 923.0 - }, - { - "name": "sentry", - "url": "https://quay.io/repository/swsmirror/sentry", - "popularity": 0.0 + "popularity": 716.0 }, { "name": "publish-sentry-release", "url": "https://quay.io/repository/indent/publish-sentry-release", - "popularity": 32.0 + "popularity": 94.0 }, { "name": "sentry-gateway", "url": "https://quay.io/repository/pingthingsio/sentry-gateway", - "popularity": 48.0 + "popularity": 19.0 }, { "name": "sentry", - "url": "https://quay.io/repository/beatport/sentry", - "popularity": 2.0 + "url": "https://quay.io/repository/dontpayfull/sentry", + "popularity": 0.0 + }, + { + "name": "getsentry-sentry", + "url": "https://quay.io/repository/sanoj_kumar0/getsentry-sentry", + "popularity": 0.0 } ] }, @@ -15786,25 +12234,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "objectscale/manager-pre-update", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/manager-pre-update", + "OS": [ + "linux" ] } ] @@ -15815,27 +12259,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 } ] }, @@ -15889,17 +12333,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2074, + "star_count": 2122, "Docker_Url": "https://hub.docker.com/_/sonarqube", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -15907,17 +12344,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 26, + "star_count": 28, "Docker_Url": "https://hub.docker.com/r/bitnami/sonarqube", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -15927,17 +12357,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 26, + "star_count": 28, "Docker_Url": "https://hub.docker.com/r/bitnami/sonarqube", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -15945,17 +12368,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2074, + "star_count": 2122, "Docker_Url": "https://hub.docker.com/_/sonarqube", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -15966,14 +12382,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/sonarqube-s390x", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -15983,99 +12392,119 @@ { "name": "sonarqube", "url": "https://quay.io/repository/gpte-devops-automation/sonarqube", - "popularity": 4581.0 + "popularity": 5511.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/sonarqube", - "popularity": 0.0 + "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", + "popularity": 1974.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/andrexbass/sonarqube", - "popularity": 2016.0 + "popularity": 2024.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", - "popularity": 1977.0 + "url": "https://quay.io/repository/ecerquei/sonarqube", + "popularity": 1594.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/siamaksade/sonarqube", - "popularity": 217.0 + "popularity": 393.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/ecerquei/sonarqube", - "popularity": 1641.0 + "url": "https://quay.io/repository/rcarrata/sonarqube", + "popularity": 529.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/an6eel/sonarqube", - "popularity": 771.0 + "popularity": 582.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/rcarrata/sonarqube", - "popularity": 1045.0 + "url": "https://quay.io/repository/ccee/sonarqube", + "popularity": 336.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/evandenbeld/sonarqube", - "popularity": 0.0 + "url": "https://quay.io/repository/redhatgov/sonarqube", + "popularity": 126.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/ccee/sonarqube", - "popularity": 340.0 + "url": "https://quay.io/repository/rocep/sonarqube", + "popularity": 167.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/swsmirror/sonarqube", + "url": "https://quay.io/repository/bcgov/sonarqube", + "popularity": 103.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/appcontainers/sonarqube", + "popularity": 168.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/openshift-unified-hybrid-cloud/sonarqube", + "popularity": 119.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/sonarqube", "popularity": 0.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/rocep/sonarqube", - "popularity": 169.0 + "url": "https://quay.io/repository/truecharts/sonarqube", + "popularity": 126.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/bcgov/sonarqube", - "popularity": 93.0 + "url": "https://quay.io/repository/isms/sonarqube", + "popularity": 6.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/redhatgov/sonarqube", - "popularity": 72.0 + "url": "https://quay.io/repository/redhat-cop/sonarqube", + "popularity": 21.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/factory2/sonarqube", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "sonarqube", "url": "https://quay.io/repository/gpte-devops-automation/sonarqube", - "popularity": 4581.0 + "popularity": 5511.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/andrexbass/sonarqube", - "popularity": 2016.0 + "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", + "popularity": 1974.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", - "popularity": 1977.0 + "url": "https://quay.io/repository/andrexbass/sonarqube", + "popularity": 2024.0 }, { "name": "sonarqube-operator", "url": "https://quay.io/repository/redhatgov/sonarqube-operator", - "popularity": 1686.0 + "popularity": 2659.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/ecerquei/sonarqube", - "popularity": 1641.0 + "popularity": 1594.0 } ] }, @@ -16116,14 +12545,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/circleci/splunk-forwarder", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] } ] @@ -16132,40 +12554,40 @@ "quay_exact_images": [ { "name": "splunk", - "url": "https://quay.io/repository/mariaelisacf/splunk", - "popularity": 0.0 + "url": "https://quay.io/repository/truecharts/splunk", + "popularity": 122.0 }, { "name": "splunk", "url": "https://quay.io/repository/operatorhubio/splunk", - "popularity": 31.0 + "popularity": 56.0 } ], "quay_top_images": [ { "name": "splunk-otel-collector", "url": "https://quay.io/repository/signalfx/splunk-otel-collector", - "popularity": 733959.0 + "popularity": 635179.0 }, { "name": "splunk-forwarder", "url": "https://quay.io/repository/app-sre/splunk-forwarder", - "popularity": 84427.0 + "popularity": 78436.0 }, { "name": "splunk-audit-exporter", "url": "https://quay.io/repository/app-sre/splunk-audit-exporter", - "popularity": 32475.0 - }, - { - "name": "splunk-forwarder-operator-registry", - "url": "https://quay.io/repository/app-sre/splunk-forwarder-operator-registry", - "popularity": 20057.0 + "popularity": 29336.0 }, { "name": "splunk-forwarder", "url": "https://quay.io/repository/jburrell/splunk-forwarder", - "popularity": 20224.0 + "popularity": 31656.0 + }, + { + "name": "splunk-network-explorer-kernel-collector", + "url": "https://quay.io/repository/signalfx/splunk-network-explorer-kernel-collector", + "popularity": 36368.0 } ] }, @@ -16178,11 +12600,20 @@ "logo_image_id": "53616ef5-f8bb-459a-bef6-b095ddc02a0a", "stars": 1, "display_name": "Splunk Operator", - "version": "1.1.0", + "description": "The Splunk Operator for Kubernetes enables you to quickly and easily deploy Splunk Enterprise on your choice of private or public cloud provider. The Operator simplifies scaling and management of Splunk Enterprise by automating administrative workflows using Kubernetes best practices.", + "version": "2.0.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 79, + "high": 8, + "medium": 53, + "unknown": 4, + "critical": 0 + }, + "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1651041032, + "ts": 1659564038, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -16195,8 +12626,10 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, - "container_images": [] + "git_repos": "https://github.com/splunk/splunk-operator", + "container_images": [ + "docker.io/splunk/splunk-operator" + ] } ] } @@ -16227,39 +12660,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "gooddata/sql-executor", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -16270,27 +12711,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -16324,21 +12765,14 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "gooddata/tools", + "name": "graphcore/tools", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/gooddata/tools", + "Docker_Url": "https://hub.docker.com/r/graphcore/tools", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -16349,22 +12783,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/pingidentity/ldap-sdk-tools", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -16375,14 +12794,7 @@ "star_count": 8, "Docker_Url": "https://hub.docker.com/r/puppet/puppet-dev-tools", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -16393,27 +12805,27 @@ { "name": "build-tools-ci", "url": "https://quay.io/repository/pantheon-public/build-tools-ci", - "popularity": 51401.0 + "popularity": 57353.0 }, { "name": "light-k8s-deploy-tools", "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", - "popularity": 32412.0 + "popularity": 32398.0 }, { - "name": "strimzi-tools", - "url": "https://quay.io/repository/rh_integration/strimzi-tools", - "popularity": 8578.0 + "name": "alpine-tools", + "url": "https://quay.io/repository/vqcomms/alpine-tools", + "popularity": 11620.0 }, { - "name": "cloud-tools", - "url": "https://quay.io/repository/osbuild/cloud-tools", - "popularity": 6369.0 + "name": "k8s-tools-runner", + "url": "https://quay.io/repository/redhat-github-actions/k8s-tools-runner", + "popularity": 25712.0 }, { - "name": "tools", - "url": "https://quay.io/repository/andov_go/tools", - "popularity": 4988.0 + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 222040.0 } ] }, @@ -16535,11 +12947,6 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "parking-and-junction-data-generator", - "url": "https://quay.io/repository/evanshortiss/parking-and-junction-data-generator", - "popularity": 0.0 - }, { "name": "bioconductor-rsubread", "url": "https://quay.io/repository/biocontainers/bioconductor-rsubread", @@ -16548,7 +12955,7 @@ { "name": "bioconductor-genomicalignments", "url": "https://quay.io/repository/biocontainers/bioconductor-genomicalignments", - "popularity": 0.0 + "popularity": 3.0 }, { "name": "mapsplice", @@ -16559,6 +12966,11 @@ "name": "spanki", "url": "https://quay.io/repository/biocontainers/spanki", "popularity": 0.0 + }, + { + "name": "parking-and-junction-data-generator", + "url": "https://quay.io/repository/evanshortiss/parking-and-junction-data-generator", + "popularity": 0.0 } ] }, @@ -16624,26 +13036,7 @@ "Process Explorer": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "ibmcom/process-ma-hf", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/process-ma-hf", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] - } - ] + "dockerhub_top_images": [] }, { "quay_exact_images": [], @@ -16651,27 +13044,27 @@ { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2497215.0 + "popularity": 2503206.0 }, { - "name": "process-quarkus-example", - "url": "https://quay.io/repository/kiegroup/process-quarkus-example", - "popularity": 840.0 + "name": "splunk-network-explorer-kernel-collector", + "url": "https://quay.io/repository/signalfx/splunk-network-explorer-kernel-collector", + "popularity": 36368.0 }, { - "name": "examples-process-springboot-example-nightly", - "url": "https://quay.io/repository/kiegroup/examples-process-springboot-example-nightly", - "popularity": 286.0 + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 45915.0 }, { - "name": "examples-process-quarkus-example-events-persistence-nightly", - "url": "https://quay.io/repository/kiegroup/examples-process-quarkus-example-events-persistence-nightly", - "popularity": 295.0 + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 61984.0 }, { - "name": "memcached-exporter", - "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "name": "kata-deploy", + "url": "https://quay.io/repository/kata-containers/kata-deploy", + "popularity": 49830.0 } ] }, @@ -16755,6 +13148,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "couchbase/sync-gateway", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 46, + "Docker_Url": "https://hub.docker.com/r/couchbase/sync-gateway", + "OS": [ + "linux" + ] + }, { "name": "astronomerinc/ap-git-sync", "Official image": false, @@ -16763,14 +13167,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/astronomerinc/ap-git-sync", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -16781,27 +13178,27 @@ { "name": "adguardhome-sync", "url": "https://quay.io/repository/bakito/adguardhome-sync", - "popularity": 44863.0 + "popularity": 39603.0 }, { - "name": "export-sync-timescaledb", - "url": "https://quay.io/repository/igtdp/export-sync-timescaledb", - "popularity": 21768.0 + "name": "group-sync-operator", + "url": "https://quay.io/repository/redhat-cop/group-sync-operator", + "popularity": 9243.0 }, { - "name": "normalize-sync", - "url": "https://quay.io/repository/igtdp/normalize-sync", - "popularity": 21745.0 + "name": "config-sync", + "url": "https://quay.io/repository/skupper/config-sync", + "popularity": 10099.0 }, { - "name": "concourse-s3-sync", - "url": "https://quay.io/repository/hellofresh/concourse-s3-sync", - "popularity": 13454.0 + "name": "oci-nlb-sync", + "url": "https://quay.io/repository/start/oci-nlb-sync", + "popularity": 6637.0 }, { - "name": "group-sync-operator", - "url": "https://quay.io/repository/redhat-cop/group-sync-operator", - "popularity": 13137.0 + "name": "clusterimagesets-sync", + "url": "https://quay.io/repository/opdev/clusterimagesets-sync", + "popularity": 5376.0 } ] }, @@ -16903,27 +13300,27 @@ { "name": "chlaus", "url": "https://quay.io/repository/appuio/chlaus", - "popularity": 1475.0 + "popularity": 672.0 }, { - "name": "whois-devsensation-es", - "url": "https://quay.io/repository/avisied0/whois-devsensation-es", - "popularity": 0.0 + "name": "mkpasswd", + "url": "https://quay.io/repository/coreos/mkpasswd", + "popularity": 46.0 }, { - "name": "circuits-fn-whois", - "url": "https://quay.io/repository/garretibm/circuits-fn-whois", - "popularity": 0.0 + "name": "whois-json", + "url": "https://quay.io/repository/aasaam/whois-json", + "popularity": 1.0 }, { - "name": "whois-with-ripe", - "url": "https://quay.io/repository/trickest/whois-with-ripe", + "name": "whois-verify-targets", + "url": "https://quay.io/repository/trickest/whois-verify-targets", "popularity": 0.0 }, { - "name": "mkpasswd", - "url": "https://quay.io/repository/coreos/mkpasswd", - "popularity": 118.0 + "name": "whois", + "url": "https://quay.io/repository/westonsteimel/whois", + "popularity": 0.0 } ] }, @@ -16952,7 +13349,12 @@ { "name": "tableau-server-writer", "url": "https://quay.io/repository/keboola/tableau-server-writer", - "popularity": 970.0 + "popularity": 998.0 + }, + { + "name": "edgenericpills", + "url": "https://quay.io/repository/amydewey/edgenericpills", + "popularity": 0.0 }, { "name": "tableau", @@ -16974,57 +13376,58 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "rancher/enterprise", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/enterprise", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" + ] + }, + { + "name": "grafana/enterprise-traces", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-traces", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -17035,27 +13438,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { - "name": "mongodb-enterprise-operator", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 7397692.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -17089,93 +13492,58 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-keysets", + "name": "couchbase/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-keysets", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-nomad", + "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/server-base", + "name": "circleci/server-nomad", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server-sandbox", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -17186,27 +13554,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -17229,27 +13597,27 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 - }, - { - "name": "cloud-native-postgresql", - "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 + "popularity": 30583.0 }, { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 9586.0 + "popularity": 73256.0 }, { "name": "freeipa-server", "url": "https://quay.io/repository/freeipa/freeipa-server", - "popularity": 911.0 + "popularity": 1863.0 + }, + { + "name": "wildfly-s2i-jdk11", + "url": "https://quay.io/repository/wildfly/wildfly-s2i-jdk11", + "popularity": 1320.0 } ] }, @@ -17295,7 +13663,7 @@ { "name": "rendezvous-server", "url": "https://quay.io/repository/fido-fdo/rendezvous-server", - "popularity": 40.0 + "popularity": 31.0 }, { "name": "rendezvous", @@ -17303,18 +13671,18 @@ "popularity": 0.0 }, { - "name": "tibco-bwce-base", - "url": "https://quay.io/repository/roccqqck/tibco-bwce-base", + "name": "fdo-rendezvous-server", + "url": "https://quay.io/repository/ayosef/fdo-rendezvous-server", "popularity": 0.0 }, { - "name": "fdo-rendezvous-server", - "url": "https://quay.io/repository/ayosef/fdo-rendezvous-server", + "name": "tibco-bwce-base", + "url": "https://quay.io/repository/roccqqck/tibco-bwce-base", "popularity": 0.0 }, { - "name": "fdo-rendezvous-server", - "url": "https://quay.io/repository/runcom/fdo-rendezvous-server", + "name": "rendezvous-server", + "url": "https://quay.io/repository/edge-onboarding/rendezvous-server", "popularity": 0.0 } ] @@ -17336,25 +13704,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -17362,17 +13715,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 7, + "star_count": 9, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/verify-access-snapshotmgr", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-snapshotmgr", + "OS": [ + "linux" ] } ] @@ -17383,27 +13740,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 } ] }, @@ -17511,57 +13868,36 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-keysets", + "name": "couchbase/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-keysets", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-nomad", + "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -17572,32 +13908,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/server-base", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "circleci/server-nomad", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -17608,27 +13930,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -17645,75 +13967,58 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/server-base", + "name": "couchbase/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-nomad", + "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server-sandbox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", + "OS": [ + "linux" + ] + }, + { + "name": "circleci/server-nomad", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -17724,27 +14029,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -17784,27 +14089,27 @@ { "name": "redhat-marketplace-reporter", "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-reporter", - "popularity": 30263.0 + "popularity": 22741.0 }, { "name": "origin-operator-marketplace", "url": "https://quay.io/repository/openshift/origin-operator-marketplace", - "popularity": 9639.0 - }, - { - "name": "redhat-marketplace-operator", - "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-operator", - "popularity": 7877.0 + "popularity": 13241.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { - "name": "redhat-marketplace-operator", - "url": "https://quay.io/repository/operator-pipeline-prod/redhat-marketplace-operator", - "popularity": 1344.0 + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30583.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 14334.0 } ] }, @@ -17827,27 +14132,27 @@ { "name": "build-tools-ci", "url": "https://quay.io/repository/pantheon-public/build-tools-ci", - "popularity": 51401.0 + "popularity": 57353.0 }, { "name": "light-k8s-deploy-tools", "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", - "popularity": 32412.0 + "popularity": 32398.0 }, { - "name": "strimzi-tools", - "url": "https://quay.io/repository/rh_integration/strimzi-tools", - "popularity": 8578.0 + "name": "alpine-tools", + "url": "https://quay.io/repository/vqcomms/alpine-tools", + "popularity": 11620.0 }, { - "name": "cloud-tools", - "url": "https://quay.io/repository/osbuild/cloud-tools", - "popularity": 6369.0 + "name": "k8s-tools-runner", + "url": "https://quay.io/repository/redhat-github-actions/k8s-tools-runner", + "popularity": 25712.0 }, { - "name": "tools", - "url": "https://quay.io/repository/andov_go/tools", - "popularity": 4988.0 + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 222040.0 } ] }, @@ -17870,27 +14175,27 @@ { "name": "vcenter-test-container", "url": "https://quay.io/repository/ansible/vcenter-test-container", - "popularity": 604.0 + "popularity": 593.0 }, { "name": "vcenter-simulator", "url": "https://quay.io/repository/kubevirt/vcenter-simulator", - "popularity": 42.0 - }, - { - "name": "vmware-gateway", - "url": "https://quay.io/repository/amastbau/vmware-gateway", - "popularity": 130.0 + "popularity": 41.0 }, { "name": "kubevirt-vmware", "url": "https://quay.io/repository/kubevirt/kubevirt-vmware", - "popularity": 32.0 + "popularity": 39.0 }, { - "name": "vmware", - "url": "https://quay.io/repository/nickarellano/vmware", - "popularity": 16.0 + "name": "vmware-vsphere-csi-driver-operator", + "url": "https://quay.io/repository/gnufied/vmware-vsphere-csi-driver-operator", + "popularity": 3.0 + }, + { + "name": "prometheus-vcd-sd", + "url": "https://quay.io/repository/promhippie/prometheus-vcd-sd", + "popularity": 150.0 } ] }, @@ -17923,6 +14228,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "okteto/integration", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/integration", + "OS": [ + "linux" + ] + }, { "name": "portainer/integration-starter", "Official image": false, @@ -17931,32 +14247,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/portainer/integration-starter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "grafana/integration-grafana-publisher", + "name": "airbyte/integration-base-singer", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/grafana/integration-grafana-publisher", + "Docker_Url": "https://hub.docker.com/r/airbyte/integration-base-singer", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -17965,29 +14267,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "ai-integration", - "url": "https://quay.io/repository/sisense/ai-integration", - "popularity": 1956.0 + "name": "websocket-integration", + "url": "https://quay.io/repository/vollerchris/websocket-integration", + "popularity": 41715.0 }, { - "name": "ambassador", - "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "name": "falcon-integration-gateway", + "url": "https://quay.io/repository/crowdstrike/falcon-integration-gateway", + "popularity": 6102.0 }, { - "name": "websocket-integration", - "url": "https://quay.io/repository/vollerchris/websocket-integration", - "popularity": 41800.0 + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 337637.0 }, { "name": "falcon-integration-gateway", - "url": "https://quay.io/repository/crowdstrike/falcon-integration-gateway", - "popularity": 6038.0 + "url": "https://quay.io/repository/matosc15/falcon-integration-gateway", + "popularity": 36944.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 101368.0 } ] }, @@ -18008,33 +14310,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 286, + "star_count": 289, "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -18045,30 +14324,7 @@ "star_count": 22, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -18076,33 +14332,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 204, + "star_count": 205, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-traditional", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -18112,15 +14345,17 @@ "Description": "", "star_count": 10, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-portal", + "OS": [] + }, + { + "name": "ibmcom/websphere-liberty-s2i", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty-s2i", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" ] } ] @@ -18131,27 +14366,27 @@ { "name": "app-build-suite", "url": "https://quay.io/repository/giantswarm/app-build-suite", - "popularity": 1013.0 - }, - { - "name": "rust", - "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2351.0 - }, - { - "name": "sap-commerce-operator", - "url": "https://quay.io/repository/openshift-community-operators/sap-commerce-operator", - "popularity": 85.0 + "popularity": 1107.0 }, { "name": "egeria", "url": "https://quay.io/repository/odpi/egeria", - "popularity": 453.0 + "popularity": 581.0 + }, + { + "name": "rust", + "url": "https://quay.io/repository/instrumentisto/rust", + "popularity": 1942.0 }, { "name": "blast", "url": "https://quay.io/repository/biocontainers/blast", - "popularity": 2282.0 + "popularity": 1091.0 + }, + { + "name": "numaresources-operator-tests", + "url": "https://quay.io/repository/openshift-kni/numaresources-operator-tests", + "popularity": 376.0 } ] }, @@ -18172,17 +14407,32 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 9, + "star_count": 10, "Docker_Url": "https://hub.docker.com/r/snyk/broker", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 289, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + "linux" + ] + }, + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + "linux" ] } ] @@ -18193,27 +14443,27 @@ { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19392.0 + "popularity": 14268.0 }, { "name": "message-tagging-service", "url": "https://quay.io/repository/factory2/message-tagging-service", - "popularity": 11616.0 + "popularity": 10443.0 }, { "name": "activemq-artemis-broker", "url": "https://quay.io/repository/artemiscloud/activemq-artemis-broker", - "popularity": 4026.0 + "popularity": 6227.0 }, { "name": "activemq-artemis-broker-kubernetes", "url": "https://quay.io/repository/artemiscloud/activemq-artemis-broker-kubernetes", - "popularity": 6886.0 + "popularity": 6497.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 101368.0 } ] }, @@ -18236,27 +14486,27 @@ { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 - }, - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 + "popularity": 259882.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 112605.0 + "popularity": 111692.0 }, { - "name": "ibm-cert-manager-operator", - "url": "https://quay.io/repository/opencloudio/ibm-cert-manager-operator", - "popularity": 35255.0 + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 26580.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 71385.0 }, { "name": "ubi-quarkus-native-binary-s2i", "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-binary-s2i", - "popularity": 54421.0 + "popularity": 53439.0 } ] }, @@ -18300,17 +14550,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -18321,27 +14564,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 300956.0 + "popularity": 218521.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 329446.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 368485.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 160924.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -18357,30 +14600,48 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "okteto/terminal", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/okteto/terminal", + "OS": [ + "linux" + ] + }, { "name": "kasmweb/terminal", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/kasmweb/terminal", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" ] }, { @@ -18388,17 +14649,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -18409,27 +14663,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -18520,27 +14774,27 @@ { "name": "apicurio-studio-api", "url": "https://quay.io/repository/apicurio/apicurio-studio-api", - "popularity": 13652.0 + "popularity": 15326.0 }, { - "name": "dev-platform-package", - "url": "https://quay.io/repository/failk8s/dev-platform-package", - "popularity": 7043.0 + "name": "apicurio-studio-ui", + "url": "https://quay.io/repository/apicurio/apicurio-studio-ui", + "popularity": 13095.0 }, { - "name": "contour-package", - "url": "https://quay.io/repository/failk8s/contour-package", - "popularity": 7043.0 + "name": "cert-manager-package", + "url": "https://quay.io/repository/failk8s/cert-manager-package", + "popularity": 8939.0 }, { - "name": "apicurio-studio-ui", - "url": "https://quay.io/repository/apicurio/apicurio-studio-ui", - "popularity": 9474.0 + "name": "apicurio-studio-ws", + "url": "https://quay.io/repository/apicurio/apicurio-studio-ws", + "popularity": 10243.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 } ] }, @@ -18560,65 +14814,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4819, + "star_count": 4920, "Docker_Url": "https://hub.docker.com/_/wordpress", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -18626,17 +14825,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 198, + "star_count": 203, "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -18646,17 +14838,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 198, + "star_count": 203, "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -18664,65 +14849,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4819, + "star_count": 4920, "Docker_Url": "https://hub.docker.com/_/wordpress", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -18733,14 +14863,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress-intel", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -18748,17 +14871,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 61, + "star_count": 63, "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress-nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -18768,31 +14884,36 @@ { "name": "wordpress", "url": "https://quay.io/repository/redhattraining/wordpress", - "popularity": 6745.0 + "popularity": 8777.0 }, { "name": "wordpress", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wordpress", - "popularity": 0.0 + "url": "https://quay.io/repository/ashish11_ibm/wordpress", + "popularity": 341.0 }, { "name": "wordpress", - "url": "https://quay.io/repository/uninett/wordpress", - "popularity": 0.0 + "url": "https://quay.io/repository/ibmcanada/wordpress", + "popularity": 168.0 }, { "name": "wordpress", - "url": "https://quay.io/repository/ashish11_ibm/wordpress", - "popularity": 707.0 + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wordpress", + "popularity": 0.0 }, { "name": "wordpress", "url": "https://quay.io/repository/cellosofia/wordpress", - "popularity": 170.0 + "popularity": 0.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/mayadicamora/wordpress", + "popularity": 151.0 }, { "name": "wordpress", - "url": "https://quay.io/repository/swsmirror/wordpress", + "url": "https://quay.io/repository/redhattraining_dev/wordpress", "popularity": 0.0 }, { @@ -18802,12 +14923,12 @@ }, { "name": "wordpress", - "url": "https://quay.io/repository/45air/wordpress", + "url": "https://quay.io/repository/vijay_kumar24/wordpress", "popularity": 0.0 }, { "name": "wordpress", - "url": "https://quay.io/repository/pierreozoux/wordpress", + "url": "https://quay.io/repository/bhagavan_basvani/wordpress", "popularity": 0.0 } ], @@ -18815,27 +14936,27 @@ { "name": "wordpress", "url": "https://quay.io/repository/redhattraining/wordpress", - "popularity": 6745.0 - }, - { - "name": "wordpress-runtime", - "url": "https://quay.io/repository/presslabs/wordpress-runtime", - "popularity": 180.0 + "popularity": 8777.0 }, { "name": "wordpress", "url": "https://quay.io/repository/ashish11_ibm/wordpress", - "popularity": 707.0 + "popularity": 341.0 }, { "name": "fbg-wordpress", "url": "https://quay.io/repository/traber/fbg-wordpress", "popularity": 168.0 }, + { + "name": "wordpress-runtime", + "url": "https://quay.io/repository/presslabs/wordpress-runtime", + "popularity": 207.0 + }, { "name": "wordpress", - "url": "https://quay.io/repository/cellosofia/wordpress", - "popularity": 170.0 + "url": "https://quay.io/repository/ibmcanada/wordpress", + "popularity": 168.0 } ] }, @@ -18872,24 +14993,24 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "jenkins-slave-zap", - "url": "https://quay.io/repository/rht-labs/jenkins-slave-zap", - "popularity": 0.0 - }, { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 9586.0 + "popularity": 73256.0 }, { - "name": "enablement-zap", - "url": "https://quay.io/repository/rht-labs/enablement-zap", + "name": "jenkins-slave-zap", + "url": "https://quay.io/repository/rht-labs/jenkins-slave-zap", "popularity": 0.0 }, { "name": "zap-full-scan", "url": "https://quay.io/repository/trickest/zap-full-scan", + "popularity": 13.0 + }, + { + "name": "zap-api-scan", + "url": "https://quay.io/repository/trickest/zap-api-scan", "popularity": 2.0 }, { @@ -18917,16 +15038,7 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/zeromq", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] + "OS": [] } ], "dockerhub_top_images": [ @@ -18937,15 +15049,17 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/zeromq", + "OS": [] + }, + { + "name": "ibmcom/zeromq-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/zeromq-ppc64le", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" ] } ] @@ -18981,30 +15095,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "virtual-environments", - "url": "https://quay.io/repository/catthehacker/virtual-environments", - "popularity": 62128.0 - }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 101368.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "kata-deploy", "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 21496.0 + "popularity": 49830.0 }, { - "name": "mysqld-exporter", - "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20267.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -19025,33 +15139,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19062,22 +15153,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19088,22 +15164,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -19114,27 +15175,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -19157,26 +15218,26 @@ { "name": "aptible-omnibus-builder", "url": "https://quay.io/repository/aptible/aptible-omnibus-builder", - "popularity": 0.0 + "popularity": 18.0 }, { - "name": "docker-chef-omnibus", - "url": "https://quay.io/repository/darron/docker-chef-omnibus", - "popularity": 2.0 + "name": "bioconductor-geoquery", + "url": "https://quay.io/repository/biocontainers/bioconductor-geoquery", + "popularity": 0.0 }, { - "name": "omnibus-centos", - "url": "https://quay.io/repository/ryandub/omnibus-centos", + "name": "netcool-configuration-share-ee", + "url": "https://quay.io/repository/dongtest/netcool-configuration-share-ee", "popularity": 0.0 }, { - "name": "netcool-gateway-snmp", - "url": "https://quay.io/repository/leesth/netcool-gateway-snmp", + "name": "omnibus-ubuntu", + "url": "https://quay.io/repository/ryandub/omnibus-ubuntu", "popularity": 0.0 }, { - "name": "bioconductor-geoquery", - "url": "https://quay.io/repository/biocontainers/bioconductor-geoquery", + "name": "docker-chef-omnibus", + "url": "https://quay.io/repository/darron/docker-chef-omnibus", "popularity": 0.0 } ] @@ -19198,33 +15259,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19235,22 +15273,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19261,22 +15284,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -19287,27 +15295,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -19328,33 +15336,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19365,22 +15350,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19391,22 +15361,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -19417,27 +15372,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -19458,33 +15413,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19495,22 +15427,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19521,22 +15438,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -19547,27 +15449,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -19588,41 +15490,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 512, + "star_count": 520, "Docker_Url": "https://hub.docker.com/_/elixir", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19633,14 +15504,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/circleci/elixir", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19651,14 +15515,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/cimg/elixir", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -19669,27 +15526,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -19710,33 +15567,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19747,22 +15581,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19773,22 +15592,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -19799,27 +15603,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -19839,30 +15643,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "solver-fedora-34-py39", + "url": "https://quay.io/repository/thoth-station/solver-fedora-34-py39", + "popularity": 1518.0 + }, { "name": "solver-rhel-8-py36", "url": "https://quay.io/repository/thoth-station/solver-rhel-8-py36", - "popularity": 2023.0 + "popularity": 1517.0 }, { "name": "solver-rhel-8-py38", "url": "https://quay.io/repository/thoth-station/solver-rhel-8-py38", - "popularity": 2027.0 - }, - { - "name": "solver-fedora-34-py39", - "url": "https://quay.io/repository/thoth-station/solver-fedora-34-py39", - "popularity": 2027.0 + "popularity": 1515.0 }, { "name": "solver-fedora-35-py310", "url": "https://quay.io/repository/thoth-station/solver-fedora-35-py310", - "popularity": 1181.0 + "popularity": 1179.0 }, { - "name": "solver-project-url-job", - "url": "https://quay.io/repository/thoth-station/solver-project-url-job", - "popularity": 8.0 + "name": "floss", + "url": "https://quay.io/repository/cincan/floss", + "popularity": 137.0 } ] }, @@ -19881,42 +15685,37 @@ }, { "quay_exact_images": [ - { - "name": "sqlite", - "url": "https://quay.io/repository/fale/sqlite", - "popularity": 0.0 - }, { "name": "sqlite", "url": "https://quay.io/repository/biocontainers/sqlite", - "popularity": 0.0 + "popularity": 2.0 } ], "quay_top_images": [ { - "name": "ara-api", - "url": "https://quay.io/repository/recordsansible/ara-api", - "popularity": 1217.0 + "name": "sqlite-web", + "url": "https://quay.io/repository/truecharts/sqlite-web", + "popularity": 121.0 }, { - "name": "mailman-web", - "url": "https://quay.io/repository/maxking/mailman-web", - "popularity": 3.0 + "name": "perl-dbd-sqlite", + "url": "https://quay.io/repository/biocontainers/perl-dbd-sqlite", + "popularity": 24.0 }, { - "name": "bioconductor-annotationdbi", - "url": "https://quay.io/repository/biocontainers/bioconductor-annotationdbi", - "popularity": 522.0 + "name": "ara-api", + "url": "https://quay.io/repository/recordsansible/ara-api", + "popularity": 1084.0 }, { "name": "roundcube", "url": "https://quay.io/repository/instrumentisto/roundcube", - "popularity": 31.0 + "popularity": 1983.0 }, { - "name": "sqlite-web", - "url": "https://quay.io/repository/truecharts/sqlite-web", - "popularity": 8.0 + "name": "taguette", + "url": "https://quay.io/repository/remram44/taguette", + "popularity": 118.0 } ] }, @@ -19939,27 +15738,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "nginx-ingress-controller", - "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1244426.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -19980,17 +15779,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 46, + "star_count": 47, "Docker_Url": "https://hub.docker.com/r/bitnami/tomcat", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -19998,25 +15790,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 3363, + "star_count": 3399, "Docker_Url": "https://hub.docker.com/_/tomcat", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20027,14 +15804,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20045,22 +15815,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20071,14 +15826,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -20089,27 +15837,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -20163,93 +15911,58 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-keysets", + "name": "couchbase/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-keysets", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-nomad", + "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/server-base", + "name": "circleci/server-nomad", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server-sandbox", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -20260,27 +15973,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -20303,14 +16016,7 @@ "star_count": 152, "Docker_Url": "https://hub.docker.com/_/glassfish", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -20323,14 +16029,7 @@ "star_count": 152, "Docker_Url": "https://hub.docker.com/_/glassfish", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20338,17 +16037,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/glassfish-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -20362,6 +16054,11 @@ } ], "quay_top_images": [ + { + "name": "server", + "url": "https://quay.io/repository/glassfish/server", + "popularity": 14.0 + }, { "name": "glassfish-5", "url": "https://quay.io/repository/mlvtito/glassfish-5", @@ -20371,11 +16068,6 @@ "name": "glassfish", "url": "https://quay.io/repository/mohamedf0/glassfish", "popularity": 0.0 - }, - { - "name": "server", - "url": "https://quay.io/repository/glassfish/server", - "popularity": 14.0 } ] }, @@ -20395,73 +16087,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1751, + "star_count": 1772, "Docker_Url": "https://hub.docker.com/_/haproxy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20469,17 +16098,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 4, "Docker_Url": "https://hub.docker.com/r/bitnami/haproxy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20490,14 +16112,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/haproxy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -20510,14 +16125,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/haproxy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20525,17 +16133,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 4, "Docker_Url": "https://hub.docker.com/r/bitnami/haproxy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20543,73 +16144,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1751, + "star_count": 1772, "Docker_Url": "https://hub.docker.com/_/haproxy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -20619,49 +16157,64 @@ { "name": "haproxy", "url": "https://quay.io/repository/jduimovich0/haproxy", - "popularity": 45441.0 + "popularity": 45559.0 }, { "name": "haproxy", "url": "https://quay.io/repository/openstack.kolla/haproxy", - "popularity": 1424.0 + "popularity": 3967.0 }, { "name": "haproxy", - "url": "https://quay.io/repository/official-images/haproxy", - "popularity": 10.0 + "url": "https://quay.io/repository/karmab/haproxy", + "popularity": 1228.0 }, { "name": "haproxy", - "url": "https://quay.io/repository/karmab/haproxy", - "popularity": 773.0 + "url": "https://quay.io/repository/codefresh/haproxy", + "popularity": 751.0 + }, + { + "name": "haproxy", + "url": "https://quay.io/repository/ceph/haproxy", + "popularity": 351.0 + }, + { + "name": "haproxy", + "url": "https://quay.io/repository/osism/haproxy", + "popularity": 354.0 + }, + { + "name": "haproxy", + "url": "https://quay.io/repository/alvaroaleman/haproxy", + "popularity": 168.0 } ], "quay_top_images": [ { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 857217.0 + "popularity": 1013505.0 }, { "name": "haproxy", "url": "https://quay.io/repository/jduimovich0/haproxy", - "popularity": 45441.0 + "popularity": 45559.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13670.0 + "popularity": 18913.0 }, { "name": "origin-haproxy-router", "url": "https://quay.io/repository/openshift/origin-haproxy-router", - "popularity": 6141.0 + "popularity": 6320.0 }, { "name": "haproxy", "url": "https://quay.io/repository/openstack.kolla/haproxy", - "popularity": 1424.0 + "popularity": 3967.0 } ] }, @@ -20685,22 +16238,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20708,33 +16246,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20742,41 +16257,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 19, + "star_count": 22, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -20787,27 +16271,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 } ] }, @@ -20830,27 +16314,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { "name": "jboss-eap-6.4-switchyard", "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", - "popularity": 3349.0 + "popularity": 3356.0 }, { "name": "jboss-kie-mysql-extension-openshift-image", "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", - "popularity": 2662.0 + "popularity": 5374.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 7782.0 + "popularity": 12370.0 }, { - "name": "business-central-workbench-showcase", - "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 657.0 + "name": "wildfly-runtime-jdk11", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-jdk11", + "popularity": 1033.0 } ] }, @@ -20874,14 +16358,7 @@ "star_count": 39, "Docker_Url": "https://hub.docker.com/r/ibmcom/kitura-ubuntu", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -20892,14 +16369,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/kitura-ubuntu14", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -20927,7 +16397,7 @@ { "name": "domino", "url": "https://quay.io/repository/ryan_fuller/domino", - "popularity": 4.0 + "popularity": 0.0 }, { "name": "domino", @@ -20935,19 +16405,19 @@ "popularity": 0.0 }, { - "name": "domino-nab", - "url": "https://quay.io/repository/numenta/domino-nab", + "name": "daftar-situs-judi-domino-99-bandar-q-qiu-online-terpercaya-jp-paus-mudah-jackpot-besar-bonus-new-member-diawal-50-220-resmi-no-1-indonesia-2022", + "url": "https://quay.io/repository/slotgacorhariini/daftar-situs-judi-domino-99-bandar-q-qiu-online-terpercaya-jp-paus-mudah-jackpot-besar-bonus-new-member-diawal-50-220-resmi-no-1-indonesia-2022", "popularity": 0.0 }, { - "name": "lotus", - "url": "https://quay.io/repository/thanhleviet/lotus", - "popularity": 0.0 + "name": "domino", + "url": "https://quay.io/repository/andrew_coleman/domino", + "popularity": 1.0 }, { - "name": "ngc-rapids", - "url": "https://quay.io/repository/domino/ngc-rapids", - "popularity": 2.0 + "name": "lotus", + "url": "https://quay.io/repository/plbertrand/lotus", + "popularity": 0.0 } ] }, @@ -20969,28 +16439,28 @@ { "name": "lucee", "url": "https://quay.io/repository/daemonite/lucee", - "popularity": 7.0 + "popularity": 24.0 } ], "quay_top_images": [ { "name": "lucee-shibboleth", "url": "https://quay.io/repository/daemonite/lucee-shibboleth", - "popularity": 130.0 + "popularity": 198.0 }, { "name": "lucee", "url": "https://quay.io/repository/daemonite/lucee", - "popularity": 7.0 + "popularity": 24.0 }, { - "name": "alpine-lucee", - "url": "https://quay.io/repository/justincarter/alpine-lucee", + "name": "lucee4-nginx", + "url": "https://quay.io/repository/lucee/lucee4-nginx", "popularity": 0.0 }, { - "name": "lucee-helloworld", - "url": "https://quay.io/repository/trevorbox/lucee-helloworld", + "name": "lucee4", + "url": "https://quay.io/repository/lucee/lucee4", "popularity": 0.0 }, { @@ -21012,22 +16482,48 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server-sandbox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", + "OS": [ + "linux" ] }, { @@ -21038,14 +16534,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -21056,27 +16545,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 }, { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 133096.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -21093,57 +16582,58 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "rancher/enterprise", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/enterprise", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" + ] + }, + { + "name": "grafana/enterprise-traces", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-traces", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -21154,27 +16644,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { - "name": "mongodb-enterprise-operator", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 7397692.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -21194,73 +16684,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17129, + "star_count": 17448, "Docker_Url": "https://hub.docker.com/_/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -21268,17 +16695,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 137, + "star_count": 140, "Docker_Url": "https://hub.docker.com/r/bitnami/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -21286,41 +16706,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 55, + "star_count": 61, "Docker_Url": "https://hub.docker.com/r/ubuntu/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -21328,25 +16717,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -21357,94 +16731,42 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/nginx", + "name": "vmware/nginx", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/nginx", + "Docker_Url": "https://hub.docker.com/r/vmware/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "linux" ] } ], "dockerhub_top_images": [ { - "name": "rancher/nginx", - "Official image": false, - "Verified Publisher": true, + "name": "nginx", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/rancher/nginx", + "star_count": 17448, + "Docker_Url": "https://hub.docker.com/_/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/nginx", + "name": "rancher/nginx", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/nginx", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -21452,133 +16774,32 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 137, + "star_count": 140, "Docker_Url": "https://hub.docker.com/r/bitnami/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ubuntu/nginx", + "name": "vmware/nginx", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 55, - "Docker_Url": "https://hub.docker.com/r/ubuntu/nginx", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/vmware/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "nginx", - "Official image": true, - "Verified Publisher": false, + "name": "ubuntu/nginx", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 17129, - "Docker_Url": "https://hub.docker.com/_/nginx", + "star_count": 61, + "Docker_Url": "https://hub.docker.com/r/ubuntu/nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -21588,69 +16809,69 @@ { "name": "nginx", "url": "https://quay.io/repository/openshift-scale/nginx", - "popularity": 95567.0 + "popularity": 177822.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 + "popularity": 61984.0 }, { "name": "nginx", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/nginx", - "popularity": 0.0 + "url": "https://quay.io/repository/cloud-bulldozer/nginx", + "popularity": 12588.0 }, { "name": "nginx", - "url": "https://quay.io/repository/cloud-bulldozer/nginx", - "popularity": 67276.0 + "url": "https://quay.io/repository/bedrock/nginx", + "popularity": 31031.0 }, { "name": "nginx", "url": "https://quay.io/repository/ocsci/nginx", - "popularity": 14259.0 + "popularity": 50572.0 }, { "name": "nginx", - "url": "https://quay.io/repository/bedrock/nginx", - "popularity": 30515.0 + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/nginx", + "popularity": 0.0 }, { "name": "nginx", "url": "https://quay.io/repository/aptible/nginx", - "popularity": 27561.0 + "popularity": 16775.0 }, { "name": "nginx", "url": "https://quay.io/repository/testing-farm/nginx", - "popularity": 7938.0 + "popularity": 97.0 } ], "quay_top_images": [ { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1244426.0 + "popularity": 978141.0 }, { "name": "nginx-116-centos7", "url": "https://quay.io/repository/centos7/nginx-116-centos7", - "popularity": 159422.0 + "popularity": 138283.0 }, { "name": "nginx-proxy", "url": "https://quay.io/repository/ukhomeofficedigital/nginx-proxy", - "popularity": 89461.0 + "popularity": 167839.0 }, { "name": "nginx", "url": "https://quay.io/repository/openshift-scale/nginx", - "popularity": 95567.0 + "popularity": 177822.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 + "popularity": 61984.0 } ] }, @@ -21663,17 +16884,10 @@ "logo_image_id": "aabb3684-3024-4890-a7e1-c09ca17bb4d4", "stars": 0, "display_name": "APIcast", - "description": "APIcast is an API gateway built on top of NGINX. It is part of the 3scale API Management Platform", - "version": "0.4.0", + "description": "APIcast is an API gateway built on top of NGINX. It is part of the Red Hat 3scale API Management Platform", + "version": "0.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 55, - "high": 5, - "medium": 112, - "unknown": 0, - "critical": 3 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, "ts": 1572216000, @@ -21691,7 +16905,7 @@ }, "git_repos": "https://github.com/3scale/apicast-operator", "container_images": [ - "quay.io/3scale/apicast-operator:v0.4.0" + "quay.io/3scale/apicast-operator:v0.6.0" ] } ] @@ -21706,39 +16920,36 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" ] } ] @@ -21749,27 +16960,27 @@ { "name": "okd-content", "url": "https://quay.io/repository/openshift/okd-content", - "popularity": 9323844.0 + "popularity": 9120554.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -21786,75 +16997,58 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/server-base", + "name": "couchbase/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-nomad", + "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server-sandbox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", + "OS": [ + "linux" + ] + }, + { + "name": "circleci/server-nomad", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -21865,27 +17059,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -21906,17 +17100,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" ] }, { @@ -21927,14 +17125,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -21942,30 +17133,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "common-web-ui", - "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 - }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -21986,17 +17177,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -22007,27 +17191,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 }, { - "name": "cap-app-proxy", - "url": "https://quay.io/repository/codefresh/cap-app-proxy", - "popularity": 76639.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -22047,17 +17231,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 108, + "star_count": 116, "Docker_Url": "https://hub.docker.com/r/bitnami/spark", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -22068,14 +17245,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/rancher/spark", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] } ], @@ -22088,14 +17258,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/rancher/spark", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] }, { @@ -22103,17 +17266,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 108, + "star_count": 116, "Docker_Url": "https://hub.docker.com/r/bitnami/spark", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -22124,14 +17280,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/spark-conf", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" + ] + }, + { + "name": "hashicorp/spark-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/hashicorp/spark-nomad", + "OS": [ + "linux" ] } ] @@ -22140,50 +17300,50 @@ "quay_exact_images": [ { "name": "spark", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/spark", - "popularity": 0.0 + "url": "https://quay.io/repository/diem/spark", + "popularity": 2466.0 }, { "name": "spark", - "url": "https://quay.io/repository/diem/spark", - "popularity": 2206.0 + "url": "https://quay.io/repository/domino/spark", + "popularity": 108.0 }, { "name": "spark", - "url": "https://quay.io/repository/domino/spark", - "popularity": 241.0 + "url": "https://quay.io/repository/opendatahub-contrib/spark", + "popularity": 719.0 }, { "name": "spark", - "url": "https://quay.io/repository/iguazio/spark", - "popularity": 30.0 + "url": "https://quay.io/repository/cakkinep/spark", + "popularity": 290.0 } ], "quay_top_images": [ + { + "name": "apache.spark", + "url": "https://quay.io/repository/klovercloud/apache.spark", + "popularity": 144176.0 + }, { "name": "spark-operator", "url": "https://quay.io/repository/radanalyticsio/spark-operator", - "popularity": 25375.0 + "popularity": 22746.0 }, { "name": "s2i-spark-minimal-notebook", "url": "https://quay.io/repository/odh-jupyterhub/s2i-spark-minimal-notebook", - "popularity": 25965.0 + "popularity": 23437.0 }, { "name": "s2i-spark-scipy-notebook", "url": "https://quay.io/repository/odh-jupyterhub/s2i-spark-scipy-notebook", - "popularity": 25113.0 - }, - { - "name": "apache.spark", - "url": "https://quay.io/repository/klovercloud/apache.spark", - "popularity": 20156.0 + "popularity": 20528.0 }, { - "name": "spark-dependencies", - "url": "https://quay.io/repository/jaegertracing/spark-dependencies", - "popularity": 2444.0 + "name": "spark-operator", + "url": "https://quay.io/repository/ml-on-k8s/spark-operator", + "popularity": 3543.0 } ] }, @@ -22303,22 +17463,26 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -22326,30 +17490,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "common-web-ui", - "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 - }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -22369,30 +17533,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "common-web-ui", - "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 - }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -22408,40 +17572,59 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "grafana/integration-grafana-publisher", + "name": "airbyte/integration-base-singer", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/grafana/integration-grafana-publisher", + "Docker_Url": "https://hub.docker.com/r/airbyte/integration-base-singer", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "airbyte/integration-base-python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/integration-base-python", + "OS": [ + "linux" ] } ] @@ -22452,27 +17635,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 }, { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42554.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -22488,22 +17671,37 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + "linux" ] }, { @@ -22511,67 +17709,21 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 286, + "star_count": 289, "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/websphere-liberty", + "name": "ibmcom/websphere-traditional", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "star_count": 205, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-traditional", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -22582,27 +17734,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 }, { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 133096.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -22626,30 +17778,7 @@ "star_count": 22, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -22657,33 +17786,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 286, + "star_count": 289, "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -22694,14 +17800,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty-s2i", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -22712,27 +17811,27 @@ { "name": "open-liberty-certified", "url": "https://quay.io/repository/operator-pipeline-prod/open-liberty-certified", - "popularity": 336.0 + "popularity": 338.0 }, { "name": "open-liberty", "url": "https://quay.io/repository/operatorhubio/open-liberty", - "popularity": 224.0 + "popularity": 189.0 }, { "name": "open-liberty", "url": "https://quay.io/repository/mmondics/open-liberty", - "popularity": 157.0 + "popularity": 169.0 }, { - "name": "liberty-rest", - "url": "https://quay.io/repository/marrober/liberty-rest", - "popularity": 116.0 + "name": "open-liberty", + "url": "https://quay.io/repository/shipwright-samples/open-liberty", + "popularity": 6.0 }, { - "name": "liberty-appimage", - "url": "https://quay.io/repository/kennedn/liberty-appimage", - "popularity": 25.0 + "name": "open-liberty", + "url": "https://quay.io/repository/ohthree/open-liberty", + "popularity": 23.0 } ] }, @@ -22755,15 +17854,39 @@ "Description": "", "star_count": 10, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-portal", + "OS": [] + }, + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" ] } ] @@ -22774,27 +17897,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -22810,22 +17933,26 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -22833,33 +17960,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 286, + "star_count": 289, "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -22870,48 +17974,7 @@ "star_count": 22, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "atlassian/server-client-plugins", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -22922,27 +17985,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2497215.0 + "popularity": 2503206.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -22963,17 +18026,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -22981,25 +18037,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -23007,17 +18048,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -23025,25 +18059,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -23054,27 +18073,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { - "name": "cloud-native-postgresql", - "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 + "name": "kata-deploy", + "url": "https://quay.io/repository/kata-containers/kata-deploy", + "popularity": 49830.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 37098.0 + "popularity": 24992.0 } ] }, @@ -23098,22 +18117,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/api", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -23124,38 +18128,7 @@ "star_count": 66, "Docker_Url": "https://hub.docker.com/_/express-gateway", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -23166,22 +18139,8 @@ "star_count": 62, "Docker_Url": "https://hub.docker.com/_/kaazing-gateway", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "", + "linux" ] }, { @@ -23189,49 +18148,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 24, + "star_count": 26, "Docker_Url": "https://hub.docker.com/r/wallarm/api-firewall", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -23239,33 +18159,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 18, + "star_count": 20, "Docker_Url": "https://hub.docker.com/_/api-firewall", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -23276,27 +18173,27 @@ { "name": "gateway", "url": "https://quay.io/repository/solo-io/gateway", - "popularity": 300044.0 + "popularity": 196128.0 + }, + { + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 26368.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "insights-api", "url": "https://quay.io/repository/fairwinds/insights-api", - "popularity": 39135.0 + "popularity": 53805.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1288147.0 - }, - { - "name": "third-party-api-resolver-server", - "url": "https://quay.io/repository/decentraland/third-party-api-resolver-server", - "popularity": 52906.0 + "popularity": 1268909.0 } ] }, @@ -23320,14 +18217,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -23338,27 +18228,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 139218.0 - }, - { - "name": "citrix-k8s-node-controller", - "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39408.0 + "popularity": 122737.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39170.0 + "popularity": 39563.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41708.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1982.0 + "popularity": 2042.0 }, { - "name": "citrix-ipam-controller", - "url": "https://quay.io/repository/citrix/citrix-ipam-controller", - "popularity": 393.0 + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 378.0 } ] }, @@ -23382,14 +18272,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -23400,27 +18283,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 139218.0 - }, - { - "name": "citrix-k8s-node-controller", - "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39408.0 + "popularity": 122737.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39170.0 + "popularity": 39563.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41708.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1982.0 + "popularity": 2042.0 }, { - "name": "citrix-ipam-controller", - "url": "https://quay.io/repository/citrix/citrix-ipam-controller", - "popularity": 393.0 + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 378.0 } ] }, @@ -23441,28 +18324,28 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "viva99situsjudionline", - "url": "https://quay.io/repository/kimjoohon98/viva99situsjudionline", + "name": "boga88-login-gudang288-link-alternatif-boga-88-daftar-gudang-288-situs-judi-togel-casino-poker-bola-online-terbaru-terbesar-terpercaya-indonesia-bandar-agen-bo-apk-download-wap-mobile-register", + "url": "https://quay.io/repository/slotgacor/boga88-login-gudang288-link-alternatif-boga-88-daftar-gudang-288-situs-judi-togel-casino-poker-bola-online-terbaru-terbesar-terpercaya-indonesia-bandar-agen-bo-apk-download-wap-mobile-register", "popularity": 0.0 }, { - "name": "12", - "url": "https://quay.io/repository/elixirclinictcr1/12", + "name": "total4d-mustang303-kinghorsetoto-jambitoto-vava4d-daftar-situs-total-4d-mustang-303-king-horse-toto-jambi-toto-vava-4d-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022", + "url": "https://quay.io/repository/zulzeagleed/total4d-mustang303-kinghorsetoto-jambitoto-vava4d-daftar-situs-total-4d-mustang-303-king-horse-toto-jambi-toto-vava-4d-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022", "popularity": 0.0 }, { - "name": "hildafrederica", - "url": "https://quay.io/repository/hfredca/hildafrederica", + "name": "98toto-dragon303-pusat4d-islot99-totopedia-daftar-situs-98-toto-dragon-303-pusat-4d-islot-99-toto-pedia-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022-fafa138", + "url": "https://quay.io/repository/zulzeagleed/98toto-dragon303-pusat4d-islot99-totopedia-daftar-situs-98-toto-dragon-303-pusat-4d-islot-99-toto-pedia-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022-fafa138", "popularity": 0.0 }, { - "name": "agen", - "url": "https://quay.io/repository/agen8et/agen", + "name": "lunatogel-ratu303-ngamentogel-dunia777-vivototo-daftar-situs-luna-togel-ratu-303-ngamen-togel-dunia-777-vivo-toto-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022-fafa138", + "url": "https://quay.io/repository/zulzeagleed/lunatogel-ratu303-ngamentogel-dunia777-vivototo-daftar-situs-luna-togel-ratu-303-ngamen-togel-dunia-777-vivo-toto-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022-fafa138", "popularity": 0.0 }, { - "name": "viva99char", - "url": "https://quay.io/repository/viva99char/viva99char", + "name": "nex777-login-slotbiru-link-alternatif-nex-777-daftar-slot-biru-situs-judi-togel-casino-poker-bola-online-terbaru-terbesar-terpercaya-indonesia-bandar-agen-bo-apk-download-wap-mobile-register", + "url": "https://quay.io/repository/slotgacor/nex777-login-slotbiru-link-alternatif-nex-777-daftar-slot-biru-situs-judi-togel-casino-poker-bola-online-terbaru-terbesar-terpercaya-indonesia-bandar-agen-bo-apk-download-wap-mobile-register", "popularity": 0.0 } ] @@ -23484,17 +18367,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 107, + "star_count": 108, "Docker_Url": "https://hub.docker.com/r/ibmcom/datapower", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -23505,14 +18381,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/ibmcom/datapower-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -23523,27 +18392,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 + "popularity": 201368.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "gateway", + "url": "https://quay.io/repository/solo-io/gateway", + "popularity": 196128.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -23566,27 +18435,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 - }, - { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "popularity": 391395.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 201368.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -23608,28 +18477,28 @@ "quay_top_images": [ { "name": "hacbs-jvm-build-request-processor", - "url": "https://quay.io/repository/redhat-appstudio/hacbs-jvm-build-request-processor", - "popularity": 7924.0 - }, - { - "name": "hacbs-jvm-build-request-processor", - "url": "https://quay.io/repository/sdouglas/hacbs-jvm-build-request-processor", - "popularity": 778.0 + "url": "https://quay.io/repository/gabemontero/hacbs-jvm-build-request-processor", + "popularity": 833.0 }, { "name": "visa-processor", "url": "https://quay.io/repository/rhacs-demo/visa-processor", - "popularity": 1653.0 + "popularity": 1362.0 }, { "name": "mastercard-processor", "url": "https://quay.io/repository/rhacs-demo/mastercard-processor", - "popularity": 887.0 + "popularity": 732.0 + }, + { + "name": "sorbay-k8s-events-processor", + "url": "https://quay.io/repository/usp/sorbay-k8s-events-processor", + "popularity": 879.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 } ] }, @@ -23653,14 +18522,18 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/net", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "okteto/net", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/net", + "OS": [ + "linux" ] } ] @@ -23671,27 +18544,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 120126.0 + "popularity": 60413.0 }, { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -23712,17 +18585,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -23730,25 +18596,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -23756,17 +18607,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -23774,25 +18618,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -23803,27 +18632,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3111.0 + "popularity": 8009.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 4180.0 } ] }, @@ -23866,30 +18695,30 @@ } ], "quay_top_images": [ - { - "name": "gawk", - "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 20761.0 - }, { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/vbouchaud/nfs-client-provisioner", - "popularity": 10282.0 + "popularity": 2131.0 + }, + { + "name": "gawk", + "url": "https://quay.io/repository/biocontainers/gawk", + "popularity": 3337.0 }, { "name": "kie-server-showcase", "url": "https://quay.io/repository/kiegroup/kie-server-showcase", - "popularity": 728.0 + "popularity": 436.0 }, { "name": "bioawk", "url": "https://quay.io/repository/biocontainers/bioawk", - "popularity": 206.0 + "popularity": 10.0 }, { "name": "php", "url": "https://quay.io/repository/islamic-network/php", - "popularity": 39.0 + "popularity": 10.0 } ] }, @@ -23911,34 +18740,34 @@ { "name": "basic", "url": "https://quay.io/repository/biocontainers/basic", - "popularity": 290.0 + "popularity": 0.0 } ], "quay_top_images": [ { "name": "nginx-basic-auth-proxy", "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", - "popularity": 6483.0 + "popularity": 5969.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 - }, - { - "name": "basic-ocp-demo", - "url": "https://quay.io/repository/freedomben/basic-ocp-demo", - "popularity": 1740.0 + "popularity": 61984.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13670.0 + "popularity": 18913.0 + }, + { + "name": "basictools", + "url": "https://quay.io/repository/sfhassan/basictools", + "popularity": 5628.0 } ] }, @@ -23949,18 +18778,18 @@ "name": "flink-kubernetes-operator", "normalized_name": "flink-kubernetes-operator", "logo_image_id": "f75201e4-3f1f-44be-b1b6-71a5b969ca37", - "stars": 0, + "stars": 3, "display_name": "Flink Kubernetes Operator", "description": "## Flink Kubernetes Operator\n\nFlink Kubernetes Operator acts as a control plane to manage the complete deployment lifecycle of Apache Flink applications.\n\n## Installation\nThis operator can be installed from [OperatorHub.io](https://operatorhub.io/operator/flink-kubernetes-operator). After the\noperator is successfully installed, start a basic flink application using:\nRestart the flink operator:\n```sh\nkubectl create -f https://raw.githubusercontent.com/apache/flink-kubernetes-operator/release-1.0/examples/basic.yaml\n```", "version": "1.0.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 82, - "high": 25, - "medium": 11, + "low": 85, + "high": 29, + "medium": 34, "unknown": 0, - "critical": 6 + "critical": 12 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -24065,10 +18894,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 7, - "high": 0, - "medium": 7, - "unknown": 1, + "low": 8, + "high": 6, + "medium": 8, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -24102,9 +18931,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -24130,22 +18959,22 @@ "name": "strimzi-kafka-operator", "normalized_name": "strimzi-kafka-operator", "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", - "stars": 18, + "stars": 20, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.30.0", + "version": "0.31.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 277, - "high": 13, - "medium": 348, - "unknown": 5, - "critical": 4 + "low": 527, + "high": 36, + "medium": 472, + "unknown": 7, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657929610, + "ts": 1663708020, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24164,145 +18993,36 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", "quay.io/strimzi/maven-builder" ] }, - { - "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", - "name": "keycloak-operator", - "normalized_name": "keycloak-operator", - "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", - "stars": 14, - "display_name": "Keycloak Operator", - "description": "An Operator for installing and managing Keycloak", - "version": "20.0.0-alpha.3", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 38, - "high": 0, - "medium": 47, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656518437, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/keycloak/keycloak", - "container_images": [ - "quay.io/keycloak/keycloak-operator:18.0.2" - ] - }, - { - "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", - "name": "prometheus", - "normalized_name": "prometheus", - "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", - "stars": 14, - "display_name": "Prometheus Operator", - "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", - "version": "0.47.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 2, - "unknown": 2, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1618530180, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/prometheus-operator/prometheus-operator", - "container_images": [ - "quay.io/prometheus-operator/prometheus-operator:v0.47.0" - ] - }, - { - "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", - "name": "elastic-cloud-eck", - "normalized_name": "elastic-cloud-eck", - "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, - "display_name": "Elasticsearch (ECK) Operator", - "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657006653, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/elastic/cloud-on-k8s", - "container_images": [] - }, { "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", "name": "postgresql", "normalized_name": "postgresql", "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, + "stars": 16, "display_name": "Crunchy Postgres for Kubernetes", "description": "Production Postgres Made Easy", - "version": "5.1.2", + "version": "5.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, + "low": 29, + "high": 2, + "medium": 31, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657571435, + "ts": 1662748237, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24319,19 +19039,26 @@ "container_images": [] }, { - "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", - "name": "knative-operator", - "normalized_name": "knative-operator", - "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, - "display_name": "Knative Operator", - "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 15, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.6", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 40, + "high": 1, + "medium": 46, + "unknown": 0, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1626134400, + "ts": 1663255840, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24344,30 +19071,68 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/knative/operator", + "git_repos": "https://github.com/keycloak/keycloak", + "container_images": [ + "quay.io/keycloak/keycloak-operator:19.0.2" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 14, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 1, + "critical": 1 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1661782377, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", "container_images": [] }, { - "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", - "name": "redis-operator", - "normalized_name": "redis-operator", - "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, - "display_name": "Redis Operator", - "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", - "version": "0.11.0", + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, "high": 0, - "medium": 0, - "unknown": 0, + "medium": 2, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1657396835, + "production_organizations_count": 1, + "ts": 1618530180, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24380,32 +19145,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/ot-container-kit/redis-operator", + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", "container_images": [ - "quay.io/opstree/redis-operator:v0.11.0" + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" ] }, { - "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", - "name": "rook-ceph", - "normalized_name": "rook-ceph", - "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", - "stars": 8, - "display_name": "Rook-Ceph", - "description": "Install and maintain Ceph Storage cluster", - "version": "1.1.1", + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 13, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.7.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 509, - "high": 33, - "medium": 719, + "low": 0, + "high": 1, + "medium": 1, "unknown": 0, - "critical": 7 + "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1621525859, + "ts": 1661385600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24418,30 +19183,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/rook/rook", + "git_repos": "https://github.com/knative/operator", "container_images": [] }, { - "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", - "name": "argocd-operator", - "normalized_name": "argocd-operator", - "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", - "stars": 7, - "display_name": "Argo CD", - "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", - "version": "0.3.0", + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 12, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1650443438, + "ts": 1657396835, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24454,32 +19219,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "git_repos": "https://github.com/ot-container-kit/redis-operator", "container_images": [ - "quay.io/argoprojlabs/argocd-operator" + "quay.io/opstree/redis-operator:v0.11.0" ] }, { - "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", - "name": "grafana-operator", - "normalized_name": "grafana-operator", - "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", - "stars": 7, - "display_name": "Grafana Operator", - "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.5.0", + "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", + "name": "rook-ceph", + "normalized_name": "rook-ceph", + "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", + "stars": 10, + "display_name": "Rook-Ceph", + "description": "Install and maintain Ceph Storage cluster", + "version": "1.1.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 0, - "medium": 3, + "low": 509, + "high": 33, + "medium": 719, "unknown": 0, - "critical": 0 + "critical": 7 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657706412, + "production_organizations_count": 0, + "ts": 1621525859, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24492,17 +19257,15 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/grafana-operator/grafana-operator", - "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.5.0" - ] + "git_repos": "https://github.com/rook/rook", + "container_images": [] }, { "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", "name": "starboard-operator", "normalized_name": "starboard-operator", "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", - "stars": 7, + "stars": 8, "display_name": "Starboard Operator", "description": "Keeps security report resources updated", "version": "0.15.6", @@ -24510,10 +19273,10 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 + "high": 2, + "medium": 2, + "unknown": 3, + "critical": 3 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -24540,18 +19303,18 @@ "name": "tidb-operator", "normalized_name": "tidb-operator", "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", - "stars": 7, + "stars": 8, "display_name": "TiDB Operator", "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", "version": "1.3.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 8, - "medium": 31, - "unknown": 8, - "critical": 2 + "low": 8, + "high": 48, + "medium": 45, + "unknown": 35, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, @@ -24571,12 +19334,50 @@ "git_repos": "https://github.com/pingcap/tidb-operator", "container_images": [] }, + { + "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", + "name": "argocd-operator", + "normalized_name": "argocd-operator", + "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", + "stars": 7, + "display_name": "Argo CD", + "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", + "version": "0.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 0, + "unknown": 2, + "critical": 1 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1659011437, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "container_images": [ + "quay.io/argoprojlabs/argocd-operator" + ] + }, { "package_id": "95833125-3a5b-4da5-a985-21f172238a61", "name": "clickhouse", "normalized_name": "clickhouse", "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", - "stars": 5, + "stars": 7, "display_name": "Altinity Operator for ClickHouse", "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", "version": "0.18.3", @@ -24601,26 +19402,26 @@ "container_images": [] }, { - "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", - "name": "flux", - "normalized_name": "flux", - "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", - "stars": 5, - "display_name": "Flux", - "description": "Flux is a Continuous Delivery solution for Kubernetes.", - "version": "0.31.3", + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.6.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, + "low": 7, + "high": 1, + "medium": 5, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656606635, + "production_organizations_count": 1, + "ts": 1660824012, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24633,30 +19434,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://fluxcd.io/docs/", - "container_images": [] + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.6.0" + ] }, { - "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", - "name": "percona-xtradb-cluster-operator", - "normalized_name": "percona-xtradb-cluster-operator", - "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", - "stars": 5, - "display_name": "Percona Distribution for MySQL Operator", - "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", - "version": "1.10.0", + "package_id": "ed4a8453-75f2-46a4-9743-9f7b12d4d4ea", + "name": "kubeflow", + "normalized_name": "kubeflow", + "logo_image_id": "cb5e7dba-ea2d-4a65-a3b6-7def9d80358f", + "stars": 6, + "display_name": "Kubeflow", + "description": "Kubeflow Operator for deployment and management of Kubeflow", + "version": "1.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, + "low": 15, + "high": 16, + "medium": 24, "unknown": 1, - "critical": 0 + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1640178704, + "ts": 1584576000, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24669,7 +19472,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "git_repos": "https://github.com/kubeflow/kfctl", "container_images": [] }, { @@ -24677,22 +19480,22 @@ "name": "rocketmq-operator", "normalized_name": "rocketmq-operator", "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", - "stars": 5, + "stars": 6, "display_name": "RocketMQ Operator", "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", - "version": "0.2.1", + "version": "0.3.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 142, - "high": 39, - "medium": 107, + "low": 140, + "high": 47, + "medium": 108, "unknown": 3, "critical": 6 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1621525858, + "ts": 1663599600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24706,25 +19509,27 @@ "organization_display_name": "Operator Framework" }, "git_repos": "https://github.com/apache/rocketmq-operator", - "container_images": [] + "container_images": [ + "docker.io/apache/rocketmq-operator:0.3.0" + ] }, { "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", "name": "storageos", "normalized_name": "storageos", "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", - "stars": 5, + "stars": 6, "display_name": "StorageOS", "description": "Cloud-native, persistent storage for containers.", "version": "2.6.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 5, - "medium": 44, - "unknown": 1, - "critical": 0 + "low": 31, + "high": 14, + "medium": 57, + "unknown": 5, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -24743,6 +19548,42 @@ }, "git_repos": "https://github.com/storageos/operator", "container_images": [] + }, + { + "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", + "name": "flux", + "normalized_name": "flux", + "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", + "stars": 5, + "display_name": "Flux", + "description": "Flux is a Continuous Delivery solution for Kubernetes.", + "version": "0.31.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 3, + "medium": 3, + "unknown": 1, + "critical": 1 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1658743238, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://fluxcd.io/docs/", + "container_images": [] } ] } @@ -24762,26 +19603,26 @@ { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4063.0 + "popularity": 3842.0 }, { "name": "visual-regression", "url": "https://quay.io/repository/babylonhealth/visual-regression", - "popularity": 116.0 + "popularity": 587.0 }, { - "name": "ccc", - "url": "https://quay.io/repository/jlospinoso/ccc", + "name": "sqlitebrowser", + "url": "https://quay.io/repository/biocontainers/sqlitebrowser", "popularity": 0.0 }, { - "name": "sqlitebrowser", - "url": "https://quay.io/repository/biocontainers/sqlitebrowser", + "name": "perfume-rigid-boxes", + "url": "https://quay.io/repository/tommygrey57_7/perfume-rigid-boxes", "popularity": 0.0 }, { - "name": "dpp", - "url": "https://quay.io/repository/brainboxdotcc/dpp", + "name": "2022j", + "url": "https://quay.io/repository/july2022/2022j", "popularity": 0.0 } ] @@ -24871,27 +19712,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 - }, - { - "name": "memcached-exporter", - "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 82922.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 + "popularity": 123109.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 45915.0 } ] }, @@ -24914,7 +19755,7 @@ { "name": "bioconductor-clipper", "url": "https://quay.io/repository/biocontainers/bioconductor-clipper", - "popularity": 261.0 + "popularity": 0.0 } ] }, @@ -24955,50 +19796,29 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/adobecoldfusion/coldfusion", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "intel/language-translation", + "name": "intel/language-modeling", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "intel/language-modeling", + "name": "intel/language-translation", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -25009,27 +19829,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 14285.0 + "popularity": 12586.0 }, { - "name": "gawk", - "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 20761.0 + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 14334.0 } ] }, @@ -25050,29 +19870,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "zen-data-sorcerer", - "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 225217.0 + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 29516627.0 }, { "name": "metering-data-manager", "url": "https://quay.io/repository/opencloudio/metering-data-manager", - "popularity": 212512.0 + "popularity": 169109.0 }, { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "name": "zen-data-sorcerer", + "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", + "popularity": 143533.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 } ] }, @@ -25095,7 +19915,7 @@ { "name": "delphi-council-is", "url": "https://quay.io/repository/klenkes74/delphi-council-is", - "popularity": 1881.0 + "popularity": 1721.0 } ] }, @@ -25130,38 +19950,32 @@ "dockerhub_top_images": [] }, { - "quay_exact_images": [ - { - "name": "expect", - "url": "https://quay.io/repository/baseimage/expect", - "popularity": 0.0 - } - ], + "quay_exact_images": [], "quay_top_images": [ { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 - }, - { - "name": "expect", - "url": "https://quay.io/repository/baseimage/expect", - "popularity": 0.0 + "popularity": 82922.0 }, { "name": "roundcube", "url": "https://quay.io/repository/instrumentisto/roundcube", - "popularity": 31.0 + "popularity": 1983.0 + }, + { + "name": "fastq-screen", + "url": "https://quay.io/repository/biocontainers/fastq-screen", + "popularity": 174.0 }, { "name": "php", "url": "https://quay.io/repository/islamic-network/php", - "popularity": 39.0 + "popularity": 10.0 }, { - "name": "fastq-screen", - "url": "https://quay.io/repository/biocontainers/fastq-screen", - "popularity": 8.0 + "name": "exporter-merger", + "url": "https://quay.io/repository/jkreileder/exporter-merger", + "popularity": 0.0 } ] }, @@ -25185,14 +19999,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -25203,14 +20010,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -25221,27 +20021,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20568.0 + "popularity": 21134.0 } ] }, @@ -25265,14 +20065,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -25283,14 +20076,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -25301,27 +20087,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20568.0 + "popularity": 21134.0 } ] }, @@ -25345,14 +20131,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -25363,14 +20142,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -25381,27 +20153,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20568.0 + "popularity": 21134.0 } ] }, @@ -25425,14 +20197,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -25443,14 +20208,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -25461,27 +20219,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20568.0 + "popularity": 21134.0 } ] }, @@ -25508,29 +20266,29 @@ ], "quay_top_images": [ { - "name": "bioconductor-affyio", - "url": "https://quay.io/repository/biocontainers/bioconductor-affyio", - "popularity": 504.0 + "name": "bioconductor-pd.hg.focus", + "url": "https://quay.io/repository/biocontainers/bioconductor-pd.hg.focus", + "popularity": 168.0 }, { - "name": "sogo", - "url": "https://quay.io/repository/sheogorath/sogo", - "popularity": 4.0 + "name": "super-focus", + "url": "https://quay.io/repository/biocontainers/super-focus", + "popularity": 0.0 + }, + { + "name": "focus", + "url": "https://quay.io/repository/biocontainers/focus", + "popularity": 0.0 }, { "name": "uptime-kuma", "url": "https://quay.io/repository/k3rnel-pan1c/uptime-kuma", - "popularity": 333.0 + "popularity": 799.0 }, { "name": "web-archives", "url": "https://quay.io/repository/glamworkbench/web-archives", "popularity": 2.0 - }, - { - "name": "anu-archives", - "url": "https://quay.io/repository/glamworkbench/anu-archives", - "popularity": 2.0 } ] }, @@ -25541,15 +20299,22 @@ "name": "knative-operator", "normalized_name": "knative-operator", "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, + "stars": 13, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", + "version": "1.7.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 0, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1626134400, + "ts": 1661385600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -25587,13 +20352,13 @@ ], "quay_top_images": [ { - "name": "fortran", - "url": "https://quay.io/repository/eriktrent/fortran", + "name": "centos7-gcc", + "url": "https://quay.io/repository/horvathd/centos7-gcc", "popularity": 0.0 }, { - "name": "centos7-gcc", - "url": "https://quay.io/repository/horvathd/centos7-gcc", + "name": "fortran", + "url": "https://quay.io/repository/eriktrent/fortran", "popularity": 0.0 } ] @@ -25617,6 +20382,42 @@ }, { "operators": [ + { + "package_id": "eac3ba55-f650-49b7-af6c-8c6bc2674722", + "name": "kong-gateway-operator", + "normalized_name": "kong-gateway-operator", + "logo_image_id": "55628a62-3a97-409b-9000-69fb689cbb76", + "stars": 0, + "display_name": "Kong Gateway Operator", + "description": "A Kubernetes Operator for the Kong Gateway", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1664006440, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://kong.github.io/gateway-operator-docs", + "container_images": [] + }, { "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", "name": "postgresql-operator-dev4devs-com", @@ -25653,7 +20454,7 @@ "name": "redis-operator", "normalized_name": "redis-operator", "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, + "stars": 12, "display_name": "Redis Operator", "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", "version": "0.11.0", @@ -25661,9 +20462,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -25691,22 +20492,22 @@ "name": "logging-operator", "normalized_name": "logging-operator", "logo_image_id": "0fb27181-3404-4379-a8fc-7ebdbf801340", - "stars": 3, + "stars": 4, "display_name": "Logging Operator", "description": "A golang-based operator to create and manage EFK (Elasticsearch, Fluentd, and Kibana) stack on Kubernetes.", - "version": "0.3.0", + "version": "0.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657182636, + "ts": 1662195638, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -25721,7 +20522,7 @@ }, "git_repos": "https://github.com/ot-container-kit/logging-operator", "container_images": [ - "quay.io/opstree/logging-operator:v0.3.0" + "quay.io/opstree/logging-operator:v0.4.0" ] }, { @@ -25732,14 +20533,14 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.8", + "version": "0.6.0-rc1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 11, - "medium": 52, - "unknown": 5, + "low": 31, + "high": 19, + "medium": 64, + "unknown": 11, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -25809,9 +20610,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, + "high": 6, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -25917,7 +20718,7 @@ "quay_exact_images": [ { "name": "graphql", - "url": "https://quay.io/repository/wasmoffload/graphql", + "url": "https://quay.io/repository/crypto_dax/graphql", "popularity": 0.0 } ], @@ -25925,27 +20726,27 @@ { "name": "model-graphql", "url": "https://quay.io/repository/sisense/model-graphql", - "popularity": 1927.0 + "popularity": 2122.0 }, { "name": "graphql-api", "url": "https://quay.io/repository/stoplight/graphql-api", - "popularity": 2874.0 + "popularity": 2758.0 + }, + { + "name": "hasura-graphql-engine", + "url": "https://quay.io/repository/eskorn/hasura-graphql-engine", + "popularity": 836.0 }, { "name": "concourse-resource-github-list-repos", "url": "https://quay.io/repository/coralogix/concourse-resource-github-list-repos", - "popularity": 55297.0 + "popularity": 33286.0 }, { "name": "hasura-graphql-engine", "url": "https://quay.io/repository/ivanch77/hasura-graphql-engine", - "popularity": 338.0 - }, - { - "name": "hasura-graphql-engine", - "url": "https://quay.io/repository/eskorn/hasura-graphql-engine", - "popularity": 338.0 + "popularity": 336.0 } ] }, @@ -25965,17 +20766,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 130, + "star_count": 135, "Docker_Url": "https://hub.docker.com/_/groovy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -25985,17 +20779,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 130, + "star_count": 135, "Docker_Url": "https://hub.docker.com/_/groovy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -26004,44 +20791,44 @@ "quay_exact_images": [ { "name": "groovy", - "url": "https://quay.io/repository/official-images/groovy", + "url": "https://quay.io/repository/dockerlibrary/groovy", "popularity": 0.0 }, { "name": "groovy", - "url": "https://quay.io/repository/swsmirror/groovy", + "url": "https://quay.io/repository/official-images/groovy", "popularity": 0.0 }, { "name": "groovy", - "url": "https://quay.io/repository/dockerlibrary/groovy", + "url": "https://quay.io/repository/swsmirror/groovy", "popularity": 0.0 } ], "quay_top_images": [ { - "name": "groovy", - "url": "https://quay.io/repository/official-images/groovy", - "popularity": 0.0 + "name": "defectdojo-client", + "url": "https://quay.io/repository/sdase/defectdojo-client", + "popularity": 7794.0 }, { "name": "groovy", - "url": "https://quay.io/repository/swsmirror/groovy", + "url": "https://quay.io/repository/dockerlibrary/groovy", "popularity": 0.0 }, { - "name": "defectdojo-client", - "url": "https://quay.io/repository/sdase/defectdojo-client", - "popularity": 5941.0 + "name": "groovy", + "url": "https://quay.io/repository/official-images/groovy", + "popularity": 0.0 }, { - "name": "groovy", - "url": "https://quay.io/repository/dockerlibrary/groovy", + "name": "popular-halloween-costumes-2022", + "url": "https://quay.io/repository/joshuawilliams2/popular-halloween-costumes-2022", "popularity": 0.0 }, { - "name": "ansible-groovy", - "url": "https://quay.io/repository/andrewrothstein/ansible-groovy", + "name": "groovy-scripts", + "url": "https://quay.io/repository/nikita2206/groovy-scripts", "popularity": 0.0 } ] @@ -26083,14 +20870,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26101,14 +20881,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -26119,27 +20892,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "kafka-bridge", "url": "https://quay.io/repository/strimzi/kafka-bridge", - "popularity": 14164.0 + "popularity": 19967.0 }, { - "name": "spicedb", - "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 14285.0 + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 14334.0 } ] }, @@ -26163,22 +20936,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26186,33 +20944,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26220,41 +20955,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 19, + "star_count": 22, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -26265,27 +20969,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 160435.0 } ] }, @@ -26309,22 +21013,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26332,33 +21021,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26366,41 +21032,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 19, + "star_count": 22, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -26411,27 +21046,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 + "popularity": 201368.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 160435.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -26452,33 +21087,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26489,22 +21101,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26515,22 +21112,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -26541,27 +21123,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -26585,14 +21167,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26603,14 +21178,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26621,14 +21189,7 @@ "star_count": 10, "Docker_Url": "https://hub.docker.com/r/bitnami/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26639,14 +21200,7 @@ "star_count": 1976, "Docker_Url": "https://hub.docker.com/_/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26657,14 +21211,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -26672,30 +21219,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "mongodb-enterprise-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 99140.0 - }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 80188.0 + "popularity": 430133.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "popularity": 222040.0 }, { - "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21441.0 + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 143686.0 + }, + { + "name": "mongodb-enterprise-appdb-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb-database", + "popularity": 179107.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "mongodb-enterprise-init-database-ubi", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-init-database-ubi", + "popularity": 115644.0 } ] }, @@ -26712,21 +21259,14 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "java", - "Official image": true, - "Verified Publisher": false, + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 1976, - "Docker_Url": "https://hub.docker.com/_/java", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26737,50 +21277,30 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/java", - "Official image": false, - "Verified Publisher": true, + "name": "java", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "appdynamics/java-agent", + "name": "circleci/java-nginx", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/circleci/java-nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "", + "linux" ] }, { @@ -26791,22 +21311,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/kasmweb/java-dev", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -26817,27 +21322,27 @@ { "name": "standard-environment", "url": "https://quay.io/repository/domino/standard-environment", - "popularity": 52054.0 + "popularity": 6683.0 }, { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21441.0 + "popularity": 15556.0 + }, + { + "name": "docker-java-swiss-knife", + "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", + "popularity": 7817.0 }, { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 137803.0 + "popularity": 160543.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 126512.0 - }, - { - "name": "ubi-quarkus-native-s2i", - "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", - "popularity": 36193.0 + "popularity": 160924.0 } ] }, @@ -26860,27 +21365,27 @@ { "name": "custom-error-pages-amd64", "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", - "popularity": 2180.0 + "popularity": 21689.0 + }, + { + "name": "gitlab-pages", + "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", + "popularity": 842.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "error-pages", "url": "https://quay.io/repository/fivium/error-pages", - "popularity": 286.0 - }, - { - "name": "gitlab-pages", - "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", - "popularity": 842.0 + "popularity": 244.0 }, { - "name": "javaserver", - "url": "https://quay.io/repository/ctrack/javaserver", - "popularity": 29.0 + "name": "errors", + "url": "https://quay.io/repository/webhippie/errors", + "popularity": 98.0 } ] }, @@ -26903,27 +21408,27 @@ { "name": "custom-error-pages-amd64", "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", - "popularity": 2180.0 + "popularity": 21689.0 + }, + { + "name": "gitlab-pages", + "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", + "popularity": 842.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "error-pages", "url": "https://quay.io/repository/fivium/error-pages", - "popularity": 286.0 - }, - { - "name": "gitlab-pages", - "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", - "popularity": 842.0 + "popularity": 244.0 }, { - "name": "javaserver", - "url": "https://quay.io/repository/ctrack/javaserver", - "popularity": 29.0 + "name": "errors", + "url": "https://quay.io/repository/webhippie/errors", + "popularity": 98.0 } ] }, @@ -26976,14 +21481,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/pachyderm/job-shim", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -26994,14 +21492,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -27012,14 +21503,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -27030,27 +21514,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 - }, - { - "name": "operator", - "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 1083441.0 } ] }, @@ -27090,7 +21574,7 @@ { "name": "lisp-10-ubi8", "url": "https://quay.io/repository/containerlisp/lisp-10-ubi8", - "popularity": 382.0 + "popularity": 510.0 }, { "name": "ruby", @@ -27124,14 +21608,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -27142,14 +21619,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -27160,27 +21630,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 14285.0 + "popularity": 12586.0 }, { - "name": "gawk", - "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 20761.0 + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 14334.0 } ] }, @@ -27203,26 +21673,26 @@ { "name": "sogo", "url": "https://quay.io/repository/sheogorath/sogo", - "popularity": 4.0 + "popularity": 0.0 }, { - "name": "sonar-scanner-cli", - "url": "https://quay.io/repository/ibmz/sonar-scanner-cli", + "name": "javierperry", + "url": "https://quay.io/repository/javierperry/javierperry", "popularity": 0.0 }, { - "name": "sonar-scanner-cli", - "url": "https://quay.io/repository/ibm/sonar-scanner-cli", + "name": "david016", + "url": "https://quay.io/repository/david_crawell/david016", "popularity": 0.0 }, { - "name": "contentwriter", - "url": "https://quay.io/repository/mackheath/contentwriter", + "name": "robertmerritt2", + "url": "https://quay.io/repository/robertmerritt/robertmerritt2", "popularity": 0.0 }, { - "name": "mumbaiescorts", - "url": "https://quay.io/repository/ankita44/mumbaiescorts", + "name": "robertmerritt12", + "url": "https://quay.io/repository/robertmerritt/robertmerritt12", "popularity": 0.0 } ] @@ -27266,7 +21736,30 @@ "Object Pascal": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "intel/object-detection", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/object-detection", + "OS": [ + "linux" + ] + }, + { + "name": "objectscale/object-heads", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/object-heads", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], @@ -27274,27 +21767,27 @@ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 151149.0 + "popularity": 179600.0 }, { "name": "kata-deploy", "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 21496.0 + "popularity": 49830.0 } ] }, @@ -27330,7 +21823,13 @@ }, { "quay_exact_images": [], - "quay_top_images": [] + "quay_top_images": [ + { + "name": "ace-itx-rex", + "url": "https://quay.io/repository/denis_sanches_ibm/ace-itx-rex", + "popularity": 0.0 + } + ] }, { "operators": [] @@ -27368,27 +21867,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 15182.0 + "popularity": 8548.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 146865.0 + "popularity": 176289.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 37098.0 + "popularity": 24992.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 } ] }, @@ -27411,12 +21910,12 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "perl-proc-fork", @@ -27424,39 +21923,40 @@ "popularity": 0.0 }, { - "name": "freshrss", - "url": "https://quay.io/repository/thegeeklab/freshrss", - "popularity": 3.0 + "name": "php-cli", + "url": "https://quay.io/repository/webhippie/php-cli", + "popularity": 0.0 }, { - "name": "php-caddy", - "url": "https://quay.io/repository/webhippie/php-caddy", - "popularity": 31.0 + "name": "php-apache", + "url": "https://quay.io/repository/webhippie/php-apache", + "popularity": 0.0 } ] }, { "operators": [ { - "package_id": "68c1164d-9ca1-4e17-8309-3a18d43bca4d", - "name": "azure-service-operator", - "normalized_name": "azure-service-operator", + "package_id": "7f784d0c-e310-40d6-9dcd-e80b4fb2fe73", + "name": "api-operator", + "normalized_name": "api-operator", + "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", "stars": 2, - "display_name": "Azure Service Operator", - "description": "The Azure Service Operator helps you provision Azure resources and connect your applications to them from within Kubernetes.", - "version": "1.0.28631", + "display_name": "API Operator for Kubernetes", + "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", + "version": "2.0.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, + "low": 225, + "high": 21, + "medium": 380, "unknown": 1, - "critical": 0 + "critical": 3 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1630479633, + "ts": 1619604000, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27469,30 +21969,29 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/Azure/azure-service-operator", + "git_repos": "https://github.com/wso2/k8s-api-operator", "container_images": [] }, { - "package_id": "7f784d0c-e310-40d6-9dcd-e80b4fb2fe73", - "name": "api-operator", - "normalized_name": "api-operator", - "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", - "stars": 1, - "display_name": "API Operator for Kubernetes", - "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", - "version": "2.0.0", + "package_id": "68c1164d-9ca1-4e17-8309-3a18d43bca4d", + "name": "azure-service-operator", + "normalized_name": "azure-service-operator", + "stars": 2, + "display_name": "Azure Service Operator", + "description": "The Azure Service Operator helps you provision Azure resources and connect your applications to them from within Kubernetes.", + "version": "1.0.28631", "deprecated": false, "signed": false, "security_report_summary": { - "low": 225, - "high": 21, - "medium": 380, - "unknown": 1, - "critical": 3 + "low": 0, + "high": 5, + "medium": 1, + "unknown": 2, + "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1619604000, + "ts": 1630479633, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27505,7 +22004,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/wso2/k8s-api-operator", + "git_repos": "https://github.com/Azure/azure-service-operator", "container_images": [] }, { @@ -27521,9 +22020,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 3, + "medium": 1, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -27588,19 +22087,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon API Gateway v2", "description": "AWS API Gateway v2 controller is a service controller for managing API Gateway v2 resources in Kubernetes", - "version": "0.1.2", + "version": "0.1.4", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 3, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655489670, + "ts": 1663002225, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27624,19 +22123,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon Application Auto Scaling", "description": "AWS Application Auto Scaling controller is a service controller for managing Application Auto Scaling resources in Kubernetes", - "version": "0.2.10", + "version": "0.2.14", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655231094, + "ts": 1663019143, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27660,19 +22159,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon DynamoDB", "description": "AWS DynamoDB controller is a service controller for managing DynamoDB resources in Kubernetes", - "version": "0.1.3", + "version": "0.1.6", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657654650, + "ts": 1663023657, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27696,19 +22195,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon EC2", "description": "AWS EC2 controller is a service controller for managing EC2 resources in Kubernetes", - "version": "0.0.16", + "version": "0.0.20", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656446797, + "ts": 1663770074, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27732,19 +22231,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon ECR", "description": "AWS ECR controller is a service controller for managing ECR resources in Kubernetes", - "version": "0.1.4", + "version": "0.1.7", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655988517, + "ts": 1663018422, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27768,19 +22267,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon EKS", "description": "AWS EKS controller is a service controller for managing EKS resources in Kubernetes", - "version": "0.1.3", + "version": "0.1.7", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655938737, + "ts": 1663073829, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27808,10 +22307,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 3, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -27840,19 +22339,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon EMR on EKS", "description": "AWS EMR on EKS controller is a service controller for managing EMR on EKS resources in Kubernetes", - "version": "0.0.4", + "version": "0.0.8", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655988969, + "ts": 1663078431, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27876,19 +22375,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon IAM", "description": "AWS IAM controller is a service controller for managing IAM resources in Kubernetes", - "version": "0.0.18", + "version": "0.0.21", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656049570, + "ts": 1663020652, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27912,19 +22411,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon KMS", "description": "AWS KMS controller is a service controller for managing KMS resources in Kubernetes", - "version": "0.0.18", + "version": "0.1.2", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656002889, + "ts": 1663021123, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27948,19 +22447,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon Lambda", "description": "AWS Lambda controller is a service controller for managing Lambda resources in Kubernetes", - "version": "0.0.16", + "version": "0.1.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1653323992, + "ts": 1663000359, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -27984,19 +22483,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon MQ", "description": "AWS MQ controller is a service controller for managing MQ resources in Kubernetes", - "version": "0.0.19", + "version": "0.0.22", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656049572, + "ts": 1663073749, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28020,19 +22519,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon OpenSearch Service", "description": "AWS OpenSearch Service controller is a service controller for managing OpenSearch Service resources in Kubernetes", - "version": "0.0.13", + "version": "0.0.14", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1648234882, + "ts": 1663088875, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28049,26 +22548,26 @@ "container_images": [] }, { - "package_id": "21e1f0d4-8f58-4c03-be76-d99ee8445483", - "name": "ack-rds-controller", - "normalized_name": "ack-rds-controller", + "package_id": "1a08840c-0e5e-4d58-81cf-f403cb1bcfa5", + "name": "ack-prometheusservice-controller", + "normalized_name": "ack-prometheusservice-controller", "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", "stars": 0, - "display_name": "AWS Controllers for Kubernetes - Amazon RDS", - "description": "AWS RDS controller is a service controller for managing RDS resources in Kubernetes", - "version": "0.0.28", + "display_name": "AWS Controllers for Kubernetes - Amazon Prometheus", + "description": "AWS Prometheus controller is a service controller for managing Prometheus resources in Kubernetes", + "version": "0.1.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 3, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657570374, + "ts": 1663002278, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28085,26 +22584,26 @@ "container_images": [] }, { - "package_id": "7969e4d8-597d-4acb-9131-8deacfb247f7", - "name": "ack-s3-controller", - "normalized_name": "ack-s3-controller", + "package_id": "21e1f0d4-8f58-4c03-be76-d99ee8445483", + "name": "ack-rds-controller", + "normalized_name": "ack-rds-controller", "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", "stars": 0, - "display_name": "AWS Controllers for Kubernetes - Amazon S3", - "description": "AWS S3 controller is a service controller for managing S3 resources in Kubernetes", - "version": "0.1.3", + "display_name": "AWS Controllers for Kubernetes - Amazon RDS", + "description": "AWS RDS controller is a service controller for managing RDS resources in Kubernetes", + "version": "0.1.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655963702, + "ts": 1663176836, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28121,26 +22620,26 @@ "container_images": [] }, { - "package_id": "a6214628-e994-44cd-b56b-68b62e3af314", - "name": "ack-sagemaker-controller", - "normalized_name": "ack-sagemaker-controller", + "package_id": "7969e4d8-597d-4acb-9131-8deacfb247f7", + "name": "ack-s3-controller", + "normalized_name": "ack-s3-controller", "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", "stars": 0, - "display_name": "AWS Controllers for Kubernetes - Amazon SageMaker", - "description": "ACK service controller for Amazon SageMaker manages SageMaker resources in Kubernetes", - "version": "0.3.3", + "display_name": "AWS Controllers for Kubernetes - Amazon S3", + "description": "AWS S3 controller is a service controller for managing S3 resources in Kubernetes", + "version": "0.1.5", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 3, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656091715, + "ts": 1662484129, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28179,22 +22678,22 @@ "name": "strimzi-kafka-operator", "normalized_name": "strimzi-kafka-operator", "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", - "stars": 18, + "stars": 20, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.30.0", + "version": "0.31.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 277, - "high": 13, - "medium": 348, - "unknown": 5, - "critical": 4 + "low": 527, + "high": 36, + "medium": 472, + "unknown": 7, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657929610, + "ts": 1663708020, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28213,6 +22712,9 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -28224,22 +22726,22 @@ "name": "keycloak-operator", "normalized_name": "keycloak-operator", "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", - "stars": 14, + "stars": 15, "display_name": "Keycloak Operator", "description": "An Operator for installing and managing Keycloak", - "version": "20.0.0-alpha.3", + "version": "20.0.0-alpha.6", "deprecated": false, "signed": false, "security_report_summary": { - "low": 38, - "high": 0, - "medium": 47, + "low": 40, + "high": 1, + "medium": 46, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656518437, + "ts": 1663255840, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28254,9 +22756,45 @@ }, "git_repos": "https://github.com/keycloak/keycloak", "container_images": [ - "quay.io/keycloak/keycloak-operator:18.0.2" + "quay.io/keycloak/keycloak-operator:19.0.2" ] }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 14, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 1, + "critical": 1 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1661782377, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, { "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", "name": "prometheus", @@ -28295,56 +22833,27 @@ "quay.io/prometheus-operator/prometheus-operator:v0.47.0" ] }, - { - "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", - "name": "elastic-cloud-eck", - "normalized_name": "elastic-cloud-eck", - "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, - "display_name": "Elasticsearch (ECK) Operator", - "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657006653, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/elastic/cloud-on-k8s", - "container_images": [] - }, { "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", "name": "knative-operator", "normalized_name": "knative-operator", "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, + "stars": 13, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", + "version": "1.7.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 0, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1626134400, + "ts": 1661385600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28365,7 +22874,7 @@ "name": "redis-operator", "normalized_name": "redis-operator", "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, + "stars": 12, "display_name": "Redis Operator", "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", "version": "0.11.0", @@ -28373,9 +22882,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -28403,7 +22912,7 @@ "name": "rook-ceph", "normalized_name": "rook-ceph", "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", - "stars": 8, + "stars": 10, "display_name": "Rook-Ceph", "description": "Install and maintain Ceph Storage cluster", "version": "1.1.1", @@ -28434,50 +22943,12 @@ "git_repos": "https://github.com/rook/rook", "container_images": [] }, - { - "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", - "name": "grafana-operator", - "normalized_name": "grafana-operator", - "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", - "stars": 7, - "display_name": "Grafana Operator", - "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.5.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 4, - "high": 0, - "medium": 3, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657706412, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/grafana-operator/grafana-operator", - "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.5.0" - ] - }, { "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", "name": "starboard-operator", "normalized_name": "starboard-operator", "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", - "stars": 7, + "stars": 8, "display_name": "Starboard Operator", "description": "Keeps security report resources updated", "version": "0.15.6", @@ -28485,10 +22956,10 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 + "high": 2, + "medium": 2, + "unknown": 3, + "critical": 3 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -28515,18 +22986,18 @@ "name": "tidb-operator", "normalized_name": "tidb-operator", "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", - "stars": 7, + "stars": 8, "display_name": "TiDB Operator", "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", "version": "1.3.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 8, - "medium": 31, - "unknown": 8, - "critical": 2 + "low": 8, + "high": 48, + "medium": 45, + "unknown": 35, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, @@ -28546,27 +23017,65 @@ "git_repos": "https://github.com/pingcap/tidb-operator", "container_images": [] }, + { + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 7, + "high": 1, + "medium": 5, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1660824012, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.6.0" + ] + }, { "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", "name": "rocketmq-operator", "normalized_name": "rocketmq-operator", "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", - "stars": 5, + "stars": 6, "display_name": "RocketMQ Operator", "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", - "version": "0.2.1", + "version": "0.3.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 142, - "high": 39, - "medium": 107, + "low": 140, + "high": 47, + "medium": 108, "unknown": 3, "critical": 6 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1621525858, + "ts": 1663599600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28580,7 +23089,9 @@ "organization_display_name": "Operator Framework" }, "git_repos": "https://github.com/apache/rocketmq-operator", - "container_images": [] + "container_images": [ + "docker.io/apache/rocketmq-operator:0.3.0" + ] }, { "package_id": "e84c500f-01ea-4b9e-be93-8f78f5aacb55", @@ -28625,7 +23136,7 @@ "name": "kubemq-operator", "normalized_name": "kubemq-operator", "logo_image_id": "a9c2c636-dbe9-4792-96f4-c9f67cf7db96", - "stars": 3, + "stars": 4, "display_name": "Kubemq Enterprise Operator", "description": "KubeMQ is Kubernetes Message Queue Broker", "version": "0.5.1", @@ -28663,7 +23174,7 @@ "name": "postgres-operator", "normalized_name": "postgres-operator", "logo_image_id": "932e96b3-34be-4e2f-bd53-b30903d20a2d", - "stars": 3, + "stars": 4, "display_name": "Postgres-Operator", "description": "Postgres operator creates and manages PostgreSQL clusters running in Kubernetes.", "version": "1.4.0", @@ -28695,19 +23206,26 @@ "container_images": [] }, { - "package_id": "16bc1125-a2fe-46d0-a5ad-a1d06b0553ae", - "name": "awss3-operator-registry", - "normalized_name": "awss3-operator-registry", - "logo_image_id": "7970f8ac-95a3-41c2-86af-5d227c28289d", - "stars": 2, - "display_name": "AWS S3 Operator", - "description": "Manage the full lifecycle of installing, configuring and managing AWS S3 Provisioner.", + "package_id": "750de553-42cf-4543-a794-32c2ab048f5d", + "name": "flink-kubernetes-operator", + "normalized_name": "flink-kubernetes-operator", + "logo_image_id": "f75201e4-3f1f-44be-b1b6-71a5b969ca37", + "stars": 3, + "display_name": "Flink Kubernetes Operator", + "description": "## Flink Kubernetes Operator\n\nFlink Kubernetes Operator acts as a control plane to manage the complete deployment lifecycle of Apache Flink applications.\n\n## Installation\nThis operator can be installed from [OperatorHub.io](https://operatorhub.io/operator/flink-kubernetes-operator). After the\noperator is successfully installed, start a basic flink application using:\nRestart the flink operator:\n```sh\nkubectl create -f https://raw.githubusercontent.com/apache/flink-kubernetes-operator/release-1.0/examples/basic.yaml\n```", "version": "1.0.1", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 85, + "high": 29, + "medium": 34, + "unknown": 0, + "critical": 12 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1556813520, + "ts": 1656633600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28720,31 +23238,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/yard-turkey/aws-s3-provisioner", + "git_repos": "https://github.com/apache/flink-kubernetes-operator.git", "container_images": [ - "quay.io/screeley44/aws-s3-provisioner:v1.0.0" + "docker.io/apache/flink-kubernetes-operator:1.0.1" ] }, { - "package_id": "68c1164d-9ca1-4e17-8309-3a18d43bca4d", - "name": "azure-service-operator", - "normalized_name": "azure-service-operator", + "package_id": "7f784d0c-e310-40d6-9dcd-e80b4fb2fe73", + "name": "api-operator", + "normalized_name": "api-operator", + "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", "stars": 2, - "display_name": "Azure Service Operator", - "description": "The Azure Service Operator helps you provision Azure resources and connect your applications to them from within Kubernetes.", - "version": "1.0.28631", + "display_name": "API Operator for Kubernetes", + "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", + "version": "2.0.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, + "low": 225, + "high": 21, + "medium": 380, "unknown": 1, - "critical": 0 + "critical": 3 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1630479633, + "ts": 1619604000, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28757,23 +23276,23 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/Azure/azure-service-operator", + "git_repos": "https://github.com/wso2/k8s-api-operator", "container_images": [] }, { - "package_id": "fccfe78b-9c2b-46cc-9e20-ee1424fccacf", - "name": "kube-arangodb", - "normalized_name": "kube-arangodb", - "logo_image_id": "94e231f6-8117-471b-9279-00f9ced197c8", + "package_id": "16bc1125-a2fe-46d0-a5ad-a1d06b0553ae", + "name": "awss3-operator-registry", + "normalized_name": "awss3-operator-registry", + "logo_image_id": "7970f8ac-95a3-41c2-86af-5d227c28289d", "stars": 2, - "display_name": "ArangoDB", - "description": "ArangoDB Kubernetes Operator", - "version": "1.0.2", + "display_name": "AWS S3 Operator", + "description": "Manage the full lifecycle of installing, configuring and managing AWS S3 Provisioner.", + "version": "1.0.1", "deprecated": false, "signed": false, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1575153600, + "ts": 1556813520, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28786,30 +23305,31 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/arangodb/kube-arangodb", - "container_images": [] + "git_repos": "https://github.com/yard-turkey/aws-s3-provisioner", + "container_images": [ + "quay.io/screeley44/aws-s3-provisioner:v1.0.0" + ] }, { - "package_id": "c103653e-b394-447f-bcbe-5c36a9b2fff5", - "name": "redis-enterprise", - "normalized_name": "redis-enterprise", - "logo_image_id": "1c86e9e7-c6f1-4c8f-9f97-c3ca8696e809", + "package_id": "68c1164d-9ca1-4e17-8309-3a18d43bca4d", + "name": "azure-service-operator", + "normalized_name": "azure-service-operator", "stars": 2, - "display_name": "Redis Enterprise", - "description": "An operator to run Redis Enterprise Clusters", - "version": "0.0.1", + "display_name": "Azure Service Operator", + "description": "The Azure Service Operator helps you provision Azure resources and connect your applications to them from within Kubernetes.", + "version": "1.0.28631", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1551008159, + "ts": 1630479633, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28822,30 +23342,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/RedisLabs/redis-enterprise-k8s-docs", + "git_repos": "https://github.com/Azure/azure-service-operator", "container_images": [] }, { - "package_id": "e6087667-2b09-499f-9528-db9e99709020", - "name": "apicurio-registry", - "normalized_name": "apicurio-registry", - "logo_image_id": "a6e7f90d-62dc-4b78-a823-e0a93912ec93", - "stars": 1, - "display_name": "Apicurio Registry Operator", - "description": "Deploy and manage Apicurio Registry on Kubernetes.", - "version": "1.0.0-v2.0.0.final", + "package_id": "e44dc7f9-5d6f-4185-bb53-291a8ee1408d", + "name": "iot-simulator", + "normalized_name": "iot-simulator", + "logo_image_id": "9821068b-f345-4230-a61a-4b14ababd524", + "stars": 2, + "display_name": "IoT simulator", + "description": "An IoT device simulator, simulating producers and consumers using the Eclipse Hono API", + "version": "0.1.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 2, - "medium": 0, - "unknown": 1, - "critical": 0 + "low": 415, + "high": 18, + "medium": 438, + "unknown": 0, + "critical": 3 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1621525858, + "ts": 1552953600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28858,32 +23378,23 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/Apicurio/apicurio-registry-operator", - "container_images": [ - "quay.io/apicurio/apicurio-registry-operator:1.0.0" - ] + "git_repos": "https://github.com/ctron/iot-simulator-operator", + "container_images": [] }, { - "package_id": "7f784d0c-e310-40d6-9dcd-e80b4fb2fe73", - "name": "api-operator", - "normalized_name": "api-operator", - "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", - "stars": 1, - "display_name": "API Operator for Kubernetes", - "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", - "version": "2.0.0", + "package_id": "fccfe78b-9c2b-46cc-9e20-ee1424fccacf", + "name": "kube-arangodb", + "normalized_name": "kube-arangodb", + "logo_image_id": "94e231f6-8117-471b-9279-00f9ced197c8", + "stars": 2, + "display_name": "ArangoDB", + "description": "ArangoDB Kubernetes Operator", + "version": "1.0.2", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 225, - "high": 21, - "medium": 380, - "unknown": 1, - "critical": 3 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1619604000, + "ts": 1575153600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28896,7 +23407,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/wso2/k8s-api-operator", + "git_repos": "https://github.com/arangodb/kube-arangodb", "container_images": [] } ] @@ -28934,7 +23445,17 @@ { "name": "kp-rpg-discord-bot", "url": "https://quay.io/repository/klenkes74/kp-rpg-discord-bot", - "popularity": 1711.0 + "popularity": 10086.0 + }, + { + "name": "genshin_impact_codes", + "url": "https://quay.io/repository/caydenbates/genshin_impact_codes", + "popularity": 0.0 + }, + { + "name": "techtoroms", + "url": "https://quay.io/repository/hodyjones/techtoroms", + "popularity": 0.0 } ] }, @@ -28957,27 +23478,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 151149.0 + "popularity": 179600.0 } ] }, @@ -29000,15 +23521,28 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/sas-base", + "OS": [] + }, + { + "name": "ibmcom/sas-mgmt", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/sas-mgmt", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/sas-api", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/sas-api", + "OS": [ + "linux" ] } ] @@ -29018,38 +23552,38 @@ { "name": "sas", "url": "https://quay.io/repository/domino/sas", - "popularity": 406.0 + "popularity": 1678.0 }, { "name": "sas", - "url": "https://quay.io/repository/fahrettinc/sas", + "url": "https://quay.io/repository/appvia_hub_dev/sas", "popularity": 0.0 }, { "name": "sas", - "url": "https://quay.io/repository/appvia_hub_dev/sas", + "url": "https://quay.io/repository/fahrettinc/sas", "popularity": 0.0 } ], "quay_top_images": [ - { - "name": "sas-fbis-ccf", - "url": "https://quay.io/repository/ukhomeofficedigital/sas-fbis-ccf", - "popularity": 10.0 - }, { "name": "sas", "url": "https://quay.io/repository/domino/sas", - "popularity": 406.0 + "popularity": 1678.0 + }, + { + "name": "sas-fbis-ccf", + "url": "https://quay.io/repository/ukhomeofficedigital/sas-fbis-ccf", + "popularity": 19.0 }, { "name": "egeria-connector-sas-viya", "url": "https://quay.io/repository/odpi/egeria-connector-sas-viya", - "popularity": 0.0 + "popularity": 32.0 }, { - "name": "sas", - "url": "https://quay.io/repository/fahrettinc/sas", + "name": "besar88", + "url": "https://quay.io/repository/besar88/besar88", "popularity": 0.0 }, { @@ -29068,7 +23602,8 @@ "logo_image_id": "b8069ce9-c81e-4b7e-83b0-61115f98f09f", "stars": 0, "display_name": "GitLab", - "version": "0.6.3", + "description": "The GitLab operator is responsible for managing the full lifecycle of GitLab instances in your Kubernetes or Openshift container platforms.", + "version": "0.12.0", "deprecated": false, "signed": false, "all_containers_images_whitelisted": false, @@ -29097,12 +23632,19 @@ "stars": 0, "display_name": "GitLab Runner", "description": "GitLab Runner operator manages lifecycle of GitLab Runner instances", - "version": "1.9.0", + "version": "1.10.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 29, + "high": 10, + "medium": 33, + "unknown": 4, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1607351820, + "ts": 1659971347, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -29134,8 +23676,8 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "clojure-sass", - "url": "https://quay.io/repository/stuarth/clojure-sass", + "name": "website", + "url": "https://quay.io/repository/madirc/website", "popularity": 0.0 }, { @@ -29144,18 +23686,18 @@ "popularity": 0.0 }, { - "name": "node-ruby-sass-grunt-bats", - "url": "https://quay.io/repository/himalayaninstitute/node-ruby-sass-grunt-bats", + "name": "clojure-sass", + "url": "https://quay.io/repository/stuarth/clojure-sass", "popularity": 0.0 }, { - "name": "odagrun-jekyll-build-image", - "url": "https://quay.io/repository/gioxa/odagrun-jekyll-build-image", + "name": "sassc", + "url": "https://quay.io/repository/bzub/sassc", "popularity": 0.0 }, { - "name": "sassc", - "url": "https://quay.io/repository/bzub/sassc", + "name": "node-ruby-sass-grunt-bats", + "url": "https://quay.io/repository/himalayaninstitute/node-ruby-sass-grunt-bats", "popularity": 0.0 } ] @@ -29180,16 +23722,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/scala-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, + { + "name": "ibmcom/scala-logging", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/scala-logging", + "OS": [] + }, { "name": "ibmcom/scala-guice", "Official image": false, @@ -29197,15 +23741,28 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/scala-guice", + "OS": [] + }, + { + "name": "ibmcom/scala-s390x", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/scala-s390x", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/scala-logging-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/scala-logging-ppc64le", + "OS": [ + "linux" ] } ] @@ -29214,45 +23771,50 @@ "quay_exact_images": [ { "name": "scala", - "url": "https://quay.io/repository/azavea/scala", + "url": "https://quay.io/repository/opaqnetworks/scala", "popularity": 0.0 }, { "name": "scala", - "url": "https://quay.io/repository/reviewtrackers/scala", + "url": "https://quay.io/repository/biocontainers/scala", + "popularity": 2.0 + }, + { + "name": "scala", + "url": "https://quay.io/repository/azavea/scala", "popularity": 0.0 }, { "name": "scala", - "url": "https://quay.io/repository/opaqnetworks/scala", - "popularity": 3.0 + "url": "https://quay.io/repository/reviewtrackers/scala", + "popularity": 0.0 } ], "quay_top_images": [ - { - "name": "scala-sbt", - "url": "https://quay.io/repository/ukhomeofficedigital/scala-sbt", - "popularity": 4.0 - }, - { - "name": "scala-sbt", - "url": "https://quay.io/repository/opaqnetworks/scala-sbt", - "popularity": 2.0 - }, { "name": "cimg-scala-builder", "url": "https://quay.io/repository/whisk/cimg-scala-builder", - "popularity": 27.0 + "popularity": 23.0 }, { - "name": "scala", - "url": "https://quay.io/repository/opaqnetworks/scala", - "popularity": 3.0 + "name": "sandbox-scala", + "url": "https://quay.io/repository/redsift/sandbox-scala", + "popularity": 24.0 + }, + { + "name": "scala-sbt", + "url": "https://quay.io/repository/ukhomeofficedigital/scala-sbt", + "popularity": 10.0 }, { "name": "scala-sbt-nodejs", "url": "https://quay.io/repository/ukhomeofficedigital/scala-sbt-nodejs", - "popularity": 6.0 + "popularity": 4.0 + }, + { + "name": "scala", + "url": "https://quay.io/repository/biocontainers/scala", + "popularity": 2.0 } ] }, @@ -29271,10 +23833,10 @@ "signed": false, "security_report_summary": { "low": 11, - "high": 1, - "medium": 0, - "unknown": 0, - "critical": 0 + "high": 3, + "medium": 3, + "unknown": 1, + "critical": 2 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -29337,25 +23899,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 600, + "star_count": 609, "Docker_Url": "https://hub.docker.com/_/swift", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -29365,25 +23912,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 600, + "star_count": 609, "Docker_Url": "https://hub.docker.com/_/swift", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -29394,14 +23926,7 @@ "star_count": 32, "Docker_Url": "https://hub.docker.com/r/ibmcom/swift-ubuntu", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -29412,22 +23937,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/swift-ubuntu-xenial", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -29438,27 +23948,27 @@ { "name": "swift-pipeline", "url": "https://quay.io/repository/greninger-lab/swift-pipeline", - "popularity": 5368.0 + "popularity": 2945.0 }, { "name": "centos-binary-swift-account", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-account", - "popularity": 403.0 + "popularity": 204.0 }, { - "name": "centos-binary-swift-object", - "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-object", - "popularity": 403.0 + "name": "centos-binary-swift-proxy-server", + "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-proxy-server", + "popularity": 207.0 }, { - "name": "centos-binary-swift-container", - "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-container", - "popularity": 403.0 + "name": "openstack-swift-object", + "url": "https://quay.io/repository/tripleomastercentos9/openstack-swift-object", + "popularity": 204.0 }, { - "name": "centos-binary-swift-proxy-server", - "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-proxy-server", - "popularity": 402.0 + "name": "kubernetes-etp-rpcr-swift", + "url": "https://quay.io/repository/rackspace/kubernetes-etp-rpcr-swift", + "popularity": 252.0 } ] }, @@ -29571,27 +24081,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 15182.0 + "popularity": 8548.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 146865.0 + "popularity": 176289.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 37098.0 + "popularity": 24992.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 } ] }, @@ -29625,27 +24135,27 @@ { "name": "hmpps-template-typescript", "url": "https://quay.io/repository/hmpps/hmpps-template-typescript", - "popularity": 18.0 - }, - { - "name": "typescript-docker", - "url": "https://quay.io/repository/datalogue/typescript-docker", - "popularity": 0.0 + "popularity": 40.0 }, { - "name": "openshift-s2i-typescript-example", - "url": "https://quay.io/repository/evanshortiss/openshift-s2i-typescript-example", + "name": "typescript-time-test", + "url": "https://quay.io/repository/radwan/typescript-time-test", "popularity": 0.0 }, { - "name": "typescript", - "url": "https://quay.io/repository/ellerbrock/typescript", + "name": "typescript-basic-get", + "url": "https://quay.io/repository/radwan/typescript-basic-get", "popularity": 0.0 }, { "name": "che-e2e", "url": "https://quay.io/repository/eclipse/che-e2e", - "popularity": 13.0 + "popularity": 37.0 + }, + { + "name": "typescript-docker", + "url": "https://quay.io/repository/datalogue/typescript-docker", + "popularity": 0.0 } ] }, @@ -29668,27 +24178,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 120126.0 + "popularity": 60413.0 }, { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -29728,27 +24238,27 @@ { "name": "nginx-basic-auth-proxy", "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", - "popularity": 6483.0 - }, - { - "name": "visual-qontract", - "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4063.0 + "popularity": 5969.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 + "popularity": 61984.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13670.0 + "popularity": 18913.0 + }, + { + "name": "basictools", + "url": "https://quay.io/repository/sfhassan/basictools", + "popularity": 5628.0 } ] }, @@ -29771,27 +24281,27 @@ { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 126512.0 + "popularity": 160924.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "popularity": 222040.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 + "popularity": 61984.0 }, { - "name": "soketi", - "url": "https://quay.io/repository/soketi/soketi", - "popularity": 37098.0 + "name": "ubi-quarkus-native-s2i", + "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", + "popularity": 39332.0 } ] }, @@ -29814,26 +24324,26 @@ { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4063.0 + "popularity": 3842.0 }, { "name": "visual-regression", "url": "https://quay.io/repository/babylonhealth/visual-regression", - "popularity": 116.0 + "popularity": 587.0 }, { - "name": "ccc", - "url": "https://quay.io/repository/jlospinoso/ccc", + "name": "sqlitebrowser", + "url": "https://quay.io/repository/biocontainers/sqlitebrowser", "popularity": 0.0 }, { - "name": "sqlitebrowser", - "url": "https://quay.io/repository/biocontainers/sqlitebrowser", + "name": "perfume-rigid-boxes", + "url": "https://quay.io/repository/tommygrey57_7/perfume-rigid-boxes", "popularity": 0.0 }, { - "name": "dpp", - "url": "https://quay.io/repository/brainboxdotcc/dpp", + "name": "2022j", + "url": "https://quay.io/repository/july2022/2022j", "popularity": 0.0 } ] @@ -29892,14 +24402,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -29910,22 +24413,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -29936,14 +24424,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -29954,27 +24435,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -29998,14 +24479,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30016,14 +24490,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/xerces-c-s390x", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30034,58 +24501,29 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/xerces-c-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/apache-exporter", + "name": "pingidentity/apache-jmeter", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "pingidentity/apache-jmeter", + "name": "bitnami/apache-exporter", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -30096,27 +24534,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -30139,27 +24577,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 - }, - { - "name": "memcached-exporter", - "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 82922.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 + "popularity": 123109.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 45915.0 } ] }, @@ -30183,14 +24621,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30201,22 +24632,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30227,14 +24643,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -30245,27 +24654,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -30279,19 +24688,19 @@ "stars": 1, "display_name": "Camel K Operator", "description": "Apache Camel K is a lightweight integration platform, born on Kubernetes, with serverless superpowers.", - "version": "1.9.2", + "version": "1.10.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 115, - "high": 19, - "medium": 233, - "unknown": 2, + "low": 131, + "high": 21, + "medium": 254, + "unknown": 1, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1653296722, + "ts": 1662356049, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -30306,7 +24715,7 @@ }, "git_repos": "https://github.com/apache/camel-k", "container_images": [ - "docker.io/apache/camel-k:1.9.2" + "docker.io/apache/camel-k:1.10.0" ] } ] @@ -30328,14 +24737,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30346,22 +24748,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30372,14 +24759,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -30390,27 +24770,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -30434,14 +24814,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30452,22 +24825,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30478,14 +24836,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -30496,27 +24847,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -30540,14 +24891,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30558,14 +24902,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -30576,27 +24913,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -30637,14 +24974,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30655,14 +24985,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-logs", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30673,14 +24996,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-traces", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30691,48 +25007,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "grafana/grafana-enterprise", + "name": "formio/formio-enterprise", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 11, - "Docker_Url": "https://hub.docker.com/r/grafana/grafana-enterprise", + "star_count": 14, + "Docker_Url": "https://hub.docker.com/r/formio/formio-enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -30740,30 +25026,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "mongodb-enterprise-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 99140.0 - }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 80188.0 + "popularity": 430133.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "popularity": 222040.0 + }, + { + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 143686.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "mongodb-enterprise-appdb-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb-database", + "popularity": 179107.0 }, { - "name": "mongodb-enterprise-init-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-init-database", - "popularity": 19861.0 + "name": "mongodb-enterprise-init-database-ubi", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-init-database-ubi", + "popularity": 115644.0 } ] }, @@ -30803,27 +25089,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 + "popularity": 313212.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { - "name": "busybox", - "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "name": "nginx-proxy", + "url": "https://quay.io/repository/ukhomeofficedigital/nginx-proxy", + "popularity": 167839.0 } ] }, @@ -30847,14 +25133,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/hibernate-s390x", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -30865,11 +25144,16 @@ { "name": "hibernate-github-bot", "url": "https://quay.io/repository/hibernate/hibernate-github-bot", - "popularity": 0.0 + "popularity": 10.0 }, { - "name": "hibernate-orm-panache-quickstart", - "url": "https://quay.io/repository/pmacik/hibernate-orm-panache-quickstart", + "name": "awestruct-build-env", + "url": "https://quay.io/repository/hibernate/awestruct-build-env", + "popularity": 13.0 + }, + { + "name": "product-service", + "url": "https://quay.io/repository/froberge/product-service", "popularity": 0.0 }, { @@ -30881,11 +25165,6 @@ "name": "hibernate-orm-resteasy-native", "url": "https://quay.io/repository/nmalvankar/hibernate-orm-resteasy-native", "popularity": 0.0 - }, - { - "name": "awestruct-build-env", - "url": "https://quay.io/repository/hibernate/awestruct-build-env", - "popularity": 12.0 } ] }, @@ -30906,33 +25185,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30943,22 +25199,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -30969,22 +25210,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -30995,27 +25221,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -31039,14 +25265,7 @@ "star_count": 1976, "Docker_Url": "https://hub.docker.com/_/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -31057,14 +25276,7 @@ "star_count": 10, "Docker_Url": "https://hub.docker.com/r/bitnami/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -31072,17 +25284,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, + "star_count": 9, "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -31091,29 +25296,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21441.0 - }, - { - "name": "docker-java-swiss-knife", - "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", - "popularity": 5522.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 }, { - "name": "java", - "url": "https://quay.io/repository/reishost/java", - "popularity": 4864.0 + "name": "centos-development", + "url": "https://quay.io/repository/sdase/centos-development", + "popularity": 54828.0 }, { "name": "bench-army-knife", "url": "https://quay.io/repository/rkrawitz/bench-army-knife", - "popularity": 793587.0 + "popularity": 16745.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 101368.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 123109.0 } ] }, @@ -31129,24 +25334,6 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ - { - "name": "bitnami/java", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/bitnami/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "circleci/java", "Official image": false, @@ -31155,14 +25342,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -31173,14 +25353,18 @@ "star_count": 1976, "Docker_Url": "https://hub.docker.com/_/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + "linux" ] }, { @@ -31191,14 +25375,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/bitnami/service-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -31209,30 +25386,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/service-catalog-service-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -31243,27 +25397,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 300956.0 + "popularity": 218521.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 329446.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 368485.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 160924.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -31279,6 +25433,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + "linux" + ] + }, { "name": "java", "Official image": true, @@ -31287,32 +25452,18 @@ "star_count": 1976, "Docker_Url": "https://hub.docker.com/_/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/java", + "name": "circleci/java", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -31320,17 +25471,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, + "star_count": 9, "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -31341,27 +25485,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 + "popularity": 313212.0 }, { "name": "mongodb-kubernetes-operator-version-upgrade-post-start-hook", "url": "https://quay.io/repository/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook", - "popularity": 86954.0 + "popularity": 84345.0 }, { - "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21441.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 }, { - "name": "windup-web-openshift", - "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47530.0 + "name": "windup-web-openshift-messaging-executor", + "url": "https://quay.io/repository/windupeng/windup-web-openshift-messaging-executor", + "popularity": 17258.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 } ] }, @@ -31381,29 +25525,29 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "javaserver", + "url": "https://quay.io/repository/ctrack/javaserver", + "popularity": 30.0 + }, { "name": "tomcat", "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/tomcat", "popularity": 0.0 }, { - "name": "javaserver", - "url": "https://quay.io/repository/ctrack/javaserver", - "popularity": 29.0 - }, - { - "name": "antennae", - "url": "https://quay.io/repository/antmounds/antennae", + "name": "ritusharma", + "url": "https://quay.io/repository/ritusharma/ritusharma", "popularity": 0.0 }, { - "name": "tomcat-s2i-okd", - "url": "https://quay.io/repository/venatrix/tomcat-s2i-okd", + "name": "blog_writing", + "url": "https://quay.io/repository/andygray123/blog_writing", "popularity": 0.0 }, { - "name": "alpine-tomcat-s2i-okd", - "url": "https://quay.io/repository/venatrix/alpine-tomcat-s2i-okd", + "name": "antennae", + "url": "https://quay.io/repository/antmounds/antennae", "popularity": 0.0 } ] @@ -31425,29 +25569,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "strimzi-debezium-mysql-jdbc", - "url": "https://quay.io/repository/btison/strimzi-debezium-mysql-jdbc", - "popularity": 0.0 + "name": "admin", + "url": "https://quay.io/repository/opencast/admin", + "popularity": 21.0 }, { - "name": "logstash-jdbc", - "url": "https://quay.io/repository/ukhomeofficedigital/logstash-jdbc", - "popularity": 0.0 + "name": "allinone", + "url": "https://quay.io/repository/opencast/allinone", + "popularity": 301.0 }, { - "name": "jdbc-sink", - "url": "https://quay.io/repository/pmereddy/jdbc-sink", - "popularity": 0.0 + "name": "worker", + "url": "https://quay.io/repository/opencast/worker", + "popularity": 37.0 }, { - "name": "elasticsearch-jdbc-river", - "url": "https://quay.io/repository/v4lproik/elasticsearch-jdbc-river", - "popularity": 0.0 + "name": "presentation", + "url": "https://quay.io/repository/opencast/presentation", + "popularity": 21.0 }, { - "name": "build", - "url": "https://quay.io/repository/opencast/build", - "popularity": 17.0 + "name": "adminpresentation", + "url": "https://quay.io/repository/opencast/adminpresentation", + "popularity": 30.0 } ] }, @@ -31471,22 +25615,7 @@ "star_count": 109, "Docker_Url": "https://hub.docker.com/_/jruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -31497,14 +25626,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/circleci/jruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -31515,32 +25637,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/jruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "kasmweb/core", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 9, - "Docker_Url": "https://hub.docker.com/r/kasmweb/core", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -31551,14 +25648,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/jruby-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -31569,27 +25659,27 @@ { "name": "core", "url": "https://quay.io/repository/pterodactyl/core", - "popularity": 98353.0 + "popularity": 65463.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "viral-core", - "url": "https://quay.io/repository/broadinstitute/viral-core", - "popularity": 6281.0 + "popularity": 5835615.0 }, { "name": "ansible-core-test-container", "url": "https://quay.io/repository/ansible/ansible-core-test-container", - "popularity": 7711.0 + "popularity": 8830.0 + }, + { + "name": "core-dump-handler", + "url": "https://quay.io/repository/icdh/core-dump-handler", + "popularity": 20477.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -31612,15 +25702,17 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/log4j-jsonevent-layout", + "OS": [] + }, + { + "name": "ibmcom/log4j-jsonevent-layout-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/log4j-jsonevent-layout-ppc64le", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" ] } ] @@ -31631,18 +25723,23 @@ "name": "log4j", "url": "https://quay.io/repository/crozzy/log4j", "popularity": 0.0 + }, + { + "name": "log4j", + "url": "https://quay.io/repository/dawnskyliu/log4j", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "log4j-vul-image", "url": "https://quay.io/repository/nvsecurity/log4j-vul-image", - "popularity": 127.0 + "popularity": 0.0 }, { - "name": "kubernetes-log4j-cve-2021-44228-node-agent", - "url": "https://quay.io/repository/pengli1707/kubernetes-log4j-cve-2021-44228-node-agent", - "popularity": 0.0 + "name": "log4j-test", + "url": "https://quay.io/repository/wahaj_syed/log4j-test", + "popularity": 136.0 }, { "name": "log4j", @@ -31652,12 +25749,12 @@ { "name": "log4j-scan", "url": "https://quay.io/repository/trickest/log4j-scan", - "popularity": 0.0 + "popularity": 2.0 }, { - "name": "log4shell", - "url": "https://quay.io/repository/swains/log4shell", - "popularity": 6.0 + "name": "perl-log-log4perl", + "url": "https://quay.io/repository/biocontainers/perl-log-log4perl", + "popularity": 0.0 } ] }, @@ -31704,14 +25801,40 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/docker/remote", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "okteto/remote", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/remote", + "OS": [ + "linux" + ] + }, + { + "name": "okteto/remote-ssh", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/remote-ssh", + "OS": [ + "linux" + ] + }, + { + "name": "objectscale/remote-access", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/remote-access", + "OS": [ + "linux" ] } ] @@ -31720,29 +25843,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 222040.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 101368.0 }, { - "name": "mongodb-enterprise-operator", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { - "name": "ubuntu", - "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79482.0 + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -31768,23 +25891,23 @@ "popularity": 0.0 }, { - "name": "was8-java8-dq", - "url": "https://quay.io/repository/dqdevs/was8-java8-dq", + "name": "was9-java8-dq", + "url": "https://quay.io/repository/dqdevs/was9-java8-dq", "popularity": 0.0 }, { - "name": "tomcat-s2i-okd", - "url": "https://quay.io/repository/venatrix/tomcat-s2i-okd", + "name": "was8-java8-dq", + "url": "https://quay.io/repository/dqdevs/was8-java8-dq", "popularity": 0.0 }, { - "name": "alpine-tomcat-s2i-okd", - "url": "https://quay.io/repository/venatrix/alpine-tomcat-s2i-okd", + "name": "jar-deploy-example", + "url": "https://quay.io/repository/openshift-examples/jar-deploy-example", "popularity": 0.0 }, { - "name": "was9-java8-dq", - "url": "https://quay.io/repository/dqdevs/was9-java8-dq", + "name": "tomcat-s2i-okd", + "url": "https://quay.io/repository/venatrix/tomcat-s2i-okd", "popularity": 0.0 } ] @@ -31809,14 +25932,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-dataflow", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -31827,45 +25943,49 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-skipper", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] }, { - "quay_exact_images": [], + "quay_exact_images": [ + { + "name": "spring", + "url": "https://quay.io/repository/biocontainers/spring", + "popularity": 168.0 + }, + { + "name": "spring", + "url": "https://quay.io/repository/sachin_hegde/spring", + "popularity": 0.0 + } + ], "quay_top_images": [ { "name": "spring-petclinic", "url": "https://quay.io/repository/service-binding/spring-petclinic", - "popularity": 17361.0 + "popularity": 7490.0 }, { "name": "spring-petclinic", "url": "https://quay.io/repository/siamaksade/spring-petclinic", - "popularity": 6009.0 - }, - { - "name": "spring-sample", - "url": "https://quay.io/repository/enesk/spring-sample", - "popularity": 2760.0 + "popularity": 5955.0 }, { "name": "spring-boot-admin", "url": "https://quay.io/repository/evryfs/spring-boot-admin", - "popularity": 1120.0 + "popularity": 1723.0 + }, + { + "name": "spring-sample", + "url": "https://quay.io/repository/enesk/spring-sample", + "popularity": 517.0 }, { - "name": "spring-boot-sample", - "url": "https://quay.io/repository/efeluzy/spring-boot-sample", - "popularity": 347.0 + "name": "spring-petclinic", + "url": "https://quay.io/repository/bmuthuka/spring-petclinic", + "popularity": 538.0 } ] }, @@ -31987,7 +26107,7 @@ "stars": 0, "display_name": "Kogito", "description": "Kogito Operator for deployment and management of Kogito services.", - "version": "1.24.0", + "version": "1.27.0", "deprecated": false, "signed": false, "all_containers_images_whitelisted": false, @@ -32007,7 +26127,7 @@ }, "git_repos": "https://github.com/kiegroup/kogito-operator", "container_images": [ - "quay.io/kiegroup/kogito-operator:1.24.0" + "quay.io/kiegroup/kogito-operator:1.27.0" ] } ] @@ -32028,15 +26148,28 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/boot", + "OS": [] + }, + { + "name": "okteto/spring-boot-jib", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/spring-boot-jib", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/boot-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/boot-ppc64le", + "OS": [ + "linux" ] } ] @@ -32047,27 +26180,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "spring-petclinic", "url": "https://quay.io/repository/service-binding/spring-petclinic", - "popularity": 17361.0 - }, - { - "name": "alpine-ext-kernel-boot-demo", - "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", - "popularity": 7326.0 + "popularity": 7490.0 }, { "name": "spring-petclinic", "url": "https://quay.io/repository/siamaksade/spring-petclinic", - "popularity": 6009.0 + "popularity": 5955.0 }, { - "name": "spring-sample", - "url": "https://quay.io/repository/enesk/spring-sample", - "popularity": 2760.0 + "name": "alpine-ext-kernel-boot-demo", + "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", + "popularity": 4668.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/wildfly/wildfly", + "popularity": 12370.0 } ] }, @@ -32090,27 +26223,27 @@ { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1158880.0 + "popularity": 1917609.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 619283.0 + "popularity": 734625.0 }, { - "name": "zen-data-sorcerer", - "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 225217.0 + "name": "metering-data-manager", + "url": "https://quay.io/repository/opencloudio/metering-data-manager", + "popularity": 169109.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 } ] }, @@ -32134,14 +26267,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-dataflow", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -32152,14 +26278,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-skipper", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -32170,27 +26289,27 @@ { "name": "spring-petclinic", "url": "https://quay.io/repository/service-binding/spring-petclinic", - "popularity": 17361.0 + "popularity": 7490.0 }, { "name": "spring-petclinic", "url": "https://quay.io/repository/siamaksade/spring-petclinic", - "popularity": 6009.0 - }, - { - "name": "spring-sample", - "url": "https://quay.io/repository/enesk/spring-sample", - "popularity": 2760.0 + "popularity": 5955.0 }, { "name": "spring-boot-admin", "url": "https://quay.io/repository/evryfs/spring-boot-admin", - "popularity": 1120.0 + "popularity": 1723.0 }, { - "name": "spring-boot-sample", - "url": "https://quay.io/repository/efeluzy/spring-boot-sample", - "popularity": 347.0 + "name": "spring-sample", + "url": "https://quay.io/repository/enesk/spring-sample", + "popularity": 517.0 + }, + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/bmuthuka/spring-petclinic", + "popularity": 538.0 } ] }, @@ -32237,13 +26356,13 @@ "popularity": 0.0 }, { - "name": "struts-app", - "url": "https://quay.io/repository/smileyfritz/struts-app", + "name": "struts", + "url": "https://quay.io/repository/araalinetworks/struts", "popularity": 0.0 }, { - "name": "struts", - "url": "https://quay.io/repository/araalinetworks/struts", + "name": "struts-app", + "url": "https://quay.io/repository/smileyfritz/struts-app", "popularity": 0.0 } ] @@ -32264,6 +26383,11 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "auchterlonies", + "url": "https://quay.io/repository/auchterlonies/auchterlonies", + "popularity": 0.0 + }, { "name": "savvyspender", "url": "https://quay.io/repository/dunnesstores/savvyspender", @@ -32330,26 +26454,26 @@ { "name": "agbiz-logic", "url": "https://quay.io/repository/seanhammond/agbiz-logic", - "popularity": 0.0 + "popularity": 14.0 }, { - "name": "functional-angularjs", - "url": "https://quay.io/repository/alecmerdler/functional-angularjs", + "name": "lims-frontend", + "url": "https://quay.io/repository/tamu_cpt/lims-frontend", "popularity": 0.0 }, { - "name": "cacao-frontend", - "url": "https://quay.io/repository/tamu_cpt/cacao-frontend", + "name": "aroundbika", + "url": "https://quay.io/repository/crs4/aroundbika", "popularity": 0.0 }, { - "name": "lims-frontend", - "url": "https://quay.io/repository/tamu_cpt/lims-frontend", + "name": "laravel", + "url": "https://quay.io/repository/appcontainers/laravel", "popularity": 0.0 }, { - "name": "aroundbika", - "url": "https://quay.io/repository/crs4/aroundbika", + "name": "cacao-frontend", + "url": "https://quay.io/repository/tamu_cpt/cacao-frontend", "popularity": 0.0 } ] @@ -32390,27 +26514,27 @@ { "name": "express-microservice", "url": "https://quay.io/repository/codefresh_sa/express-microservice", - "popularity": 1074.0 + "popularity": 1133.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "express-microservice-cache", "url": "https://quay.io/repository/codefresh_sa/express-microservice-cache", - "popularity": 354.0 - }, - { - "name": "rabbitmq", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq", - "popularity": 2.0 + "popularity": 378.0 }, { "name": "express-sample-app", "url": "https://quay.io/repository/waynecabanto/express-sample-app", - "popularity": 172.0 + "popularity": 171.0 + }, + { + "name": "freeipa-server", + "url": "https://quay.io/repository/freeipa/freeipa-server", + "popularity": 1863.0 } ] }, @@ -32425,7 +26549,19 @@ "Ext JS": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "slimdotai/dd-ext", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/slimdotai/dd-ext", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], @@ -32433,27 +26569,27 @@ { "name": "alpine-ext-kernel-boot-demo", "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", - "popularity": 7326.0 + "popularity": 4668.0 }, { "name": "ibm-monitoring-prometheus-operator-ext-bundle", "url": "https://quay.io/repository/opencloudio/ibm-monitoring-prometheus-operator-ext-bundle", - "popularity": 343.0 - }, - { - "name": "ext-auth-service", - "url": "https://quay.io/repository/solo-io/ext-auth-service", - "popularity": 145.0 + "popularity": 299.0 }, { "name": "pam-oracledb-ext-img", "url": "https://quay.io/repository/mmaset/pam-oracledb-ext-img", - "popularity": 369.0 + "popularity": 335.0 + }, + { + "name": "ext-auth-service", + "url": "https://quay.io/repository/solo-io/ext-auth-service", + "popularity": 588.0 }, { "name": "egeria", "url": "https://quay.io/repository/odpi/egeria", - "popularity": 453.0 + "popularity": 581.0 } ] }, @@ -32486,6 +26622,24 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "ibmcom/jquery-deparam", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-deparam", + "OS": [] + }, + { + "name": "ibmcom/jquery-cookie", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-cookie", + "OS": [] + }, { "name": "ibmcom/jquery-ui", "Official image": false, @@ -32493,16 +26647,7 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-ui", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] + "OS": [] } ] }, @@ -32512,12 +26657,7 @@ { "name": "tradr-node-jquery-cp4i", "url": "https://quay.io/repository/clouddragons/tradr-node-jquery-cp4i", - "popularity": 0.0 - }, - { - "name": "spellchecker", - "url": "https://quay.io/repository/cvlibrary/spellchecker", - "popularity": 0.0 + "popularity": 2.0 }, { "name": "sqlalchemy-datatables", @@ -32525,14 +26665,19 @@ "popularity": 0.0 }, { - "name": "r-nozzle.r1", - "url": "https://quay.io/repository/biocontainers/r-nozzle.r1", + "name": "website", + "url": "https://quay.io/repository/madirc/website", "popularity": 0.0 }, { "name": "laravel", "url": "https://quay.io/repository/appcontainers/laravel", "popularity": 0.0 + }, + { + "name": "r-nozzle.r1", + "url": "https://quay.io/repository/biocontainers/r-nozzle.r1", + "popularity": 0.0 } ] }, @@ -32556,14 +26701,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-ui-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -32574,32 +26712,29 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/rancher/ui", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/jquery-deparam", + "name": "ibmcom/jquery-cookie-ppc64le", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-deparam", + "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-cookie-ppc64le", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/jquery-deparam-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-deparam-ppc64le", + "OS": [ + "linux" ] } ] @@ -32610,12 +26745,7 @@ { "name": "tradr-node-jquery-cp4i", "url": "https://quay.io/repository/clouddragons/tradr-node-jquery-cp4i", - "popularity": 0.0 - }, - { - "name": "spellchecker", - "url": "https://quay.io/repository/cvlibrary/spellchecker", - "popularity": 0.0 + "popularity": 2.0 }, { "name": "sqlalchemy-datatables", @@ -32623,14 +26753,19 @@ "popularity": 0.0 }, { - "name": "r-nozzle.r1", - "url": "https://quay.io/repository/biocontainers/r-nozzle.r1", + "name": "website", + "url": "https://quay.io/repository/madirc/website", "popularity": 0.0 }, { "name": "laravel", "url": "https://quay.io/repository/appcontainers/laravel", "popularity": 0.0 + }, + { + "name": "r-nozzle.r1", + "url": "https://quay.io/repository/biocontainers/r-nozzle.r1", + "popularity": 0.0 } ] }, @@ -32653,14 +26788,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/react", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -32673,14 +26801,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/react", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -32691,14 +26812,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/react-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "okteto/react-getting-started", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/okteto/react-getting-started", + "OS": [ + "linux" ] } ] @@ -32708,44 +26833,39 @@ { "name": "react", "url": "https://quay.io/repository/profects/react", - "popularity": 13.0 + "popularity": 5.0 }, { "name": "react", "url": "https://quay.io/repository/masoud_rahimi/react", "popularity": 0.0 - }, - { - "name": "react", - "url": "https://quay.io/repository/agiagoulas/react", - "popularity": 0.0 } ], "quay_top_images": [ - { - "name": "react-native-android", - "url": "https://quay.io/repository/profects/react-native-android", - "popularity": 0.0 - }, { "name": "egeria-react-ui", "url": "https://quay.io/repository/odpi/egeria-react-ui", - "popularity": 217.0 - }, - { - "name": "react", - "url": "https://quay.io/repository/profects/react", - "popularity": 13.0 + "popularity": 255.0 }, { - "name": "react-app", - "url": "https://quay.io/repository/rtaneja/react-app", - "popularity": 0.0 + "name": "cuelib-react", + "url": "https://quay.io/repository/trustacks/cuelib-react", + "popularity": 53.0 }, { "name": "dashboard-app-react", "url": "https://quay.io/repository/telescope/dashboard-app-react", - "popularity": 30.0 + "popularity": 183.0 + }, + { + "name": "react", + "url": "https://quay.io/repository/profects/react", + "popularity": 5.0 + }, + { + "name": "farm-intro-backend", + "url": "https://quay.io/repository/mongodb/farm-intro-backend", + "popularity": 2861.0 } ] }, @@ -32768,27 +26888,27 @@ { "name": "startup-script", "url": "https://quay.io/repository/cilium/startup-script", - "popularity": 272890.0 + "popularity": 257975.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 + "popularity": 61984.0 }, { "name": "podman", "url": "https://quay.io/repository/containers/podman", - "popularity": 21358.0 - }, - { - "name": "ubuntu", - "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79482.0 + "popularity": 6017.0 }, { "name": "netbox", "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 10714.0 + "popularity": 13083.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -32811,27 +26931,27 @@ { "name": "concourse-file-resource", "url": "https://quay.io/repository/henry40408/concourse-file-resource", - "popularity": 662317.0 + "popularity": 751555.0 }, { "name": "insights-uploader", "url": "https://quay.io/repository/fairwinds/insights-uploader", - "popularity": 787790.0 + "popularity": 679876.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 } ] }, @@ -32855,22 +26975,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/api", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -32881,14 +26986,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -32899,22 +26997,7 @@ "star_count": 4, "Docker_Url": "https://hub.docker.com/r/rancher/security-scan", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -32922,30 +27005,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "mongodb-enterprise-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 99140.0 - }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 80188.0 + "popularity": 430133.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "popularity": 222040.0 }, { - "name": "insights-api", - "url": "https://quay.io/repository/fairwinds/insights-api", - "popularity": 39135.0 + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 143686.0 + }, + { + "name": "mongodb-enterprise-appdb-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb-database", + "popularity": 179107.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1288147.0 + "popularity": 1268909.0 } ] }, @@ -32982,17 +27065,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 72, + "star_count": 73, "Docker_Url": "https://hub.docker.com/r/circleci/android", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -33000,17 +27076,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, + "star_count": 4, "Docker_Url": "https://hub.docker.com/r/cimg/android", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -33020,17 +27089,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, + "star_count": 4, "Docker_Url": "https://hub.docker.com/r/cimg/android", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -33038,17 +27100,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 72, + "star_count": 73, "Docker_Url": "https://hub.docker.com/r/circleci/android", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -33058,49 +27113,39 @@ { "name": "android", "url": "https://quay.io/repository/bitriseio/android", - "popularity": 127.0 - }, - { - "name": "android", - "url": "https://quay.io/repository/opaqnetworks/android", - "popularity": 0.0 + "popularity": 204.0 }, { "name": "android", "url": "https://quay.io/repository/amal5alshaikh/android", - "popularity": 26.0 - }, - { - "name": "android", - "url": "https://quay.io/repository/logistio/android", - "popularity": 0.0 + "popularity": 4.0 } ], "quay_top_images": [ - { - "name": "android", - "url": "https://quay.io/repository/bitriseio/android", - "popularity": 127.0 - }, - { - "name": "android-ndk", - "url": "https://quay.io/repository/bitriseio/android-ndk", - "popularity": 52.0 - }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "popularity": 71385.0 }, { "name": "build-environment-android", "url": "https://quay.io/repository/callsign/build-environment-android", - "popularity": 353.0 + "popularity": 438.0 }, { "name": "android", - "url": "https://quay.io/repository/amal5alshaikh/android", - "popularity": 26.0 + "url": "https://quay.io/repository/bitriseio/android", + "popularity": 204.0 + }, + { + "name": "android-8-0", + "url": "https://quay.io/repository/truecharts/android-8-0", + "popularity": 203.0 + }, + { + "name": "android-ndk", + "url": "https://quay.io/repository/bitriseio/android-ndk", + "popularity": 30.0 } ] }, @@ -33140,21 +27185,21 @@ { "name": "cisco-hxcsi-operator", "url": "https://quay.io/repository/operator-pipeline-prod/cisco-hxcsi-operator", - "popularity": 183.0 + "popularity": 338.0 }, { "name": "cisco-hxcsi-operator-index", "url": "https://quay.io/repository/operator-pipeline-prod/cisco-hxcsi-operator-index", - "popularity": 8.0 + "popularity": 0.0 }, { - "name": "cisco-200-301-dumps", - "url": "https://quay.io/repository/dumps4free/cisco-200-301-dumps", + "name": "lumbung88-login-lapak303-slot-lumbung-88-link-lapak-303-daftar-kumpulan-judi-kartu-live-casino-poker--slot-togel-toto-sabung-ayam-esport-bola-sbobet-online-tebaruterlengkap-indonesia-2022-live-chat-apk-download-wap-mobile-via-android-ios", + "url": "https://quay.io/repository/bandarbettingonline30/lumbung88-login-lapak303-slot-lumbung-88-link-lapak-303-daftar-kumpulan-judi-kartu-live-casino-poker--slot-togel-toto-sabung-ayam-esport-bola-sbobet-online-tebaruterlengkap-indonesia-2022-live-chat-apk-download-wap-mobile-via-android-ios", "popularity": 0.0 }, { - "name": "z-push", - "url": "https://quay.io/repository/baschte/z-push", + "name": "sbobet88-login-togelcc-link-alternatif-sobet-88-daftar-togel-cc-kumpulan-agen-judi-slot-togel-toto-bola-poker-online-24jam-resmi-terpercaya-indonesia-2022-live-chat-apk-download-wap-mobile-via-android-ios-terbaru-terlengkap", + "url": "https://quay.io/repository/bandarbettingonline30/sbobet88-login-togelcc-link-alternatif-sobet-88-daftar-togel-cc-kumpulan-agen-judi-slot-togel-toto-bola-poker-online-24jam-resmi-terpercaya-indonesia-2022-live-chat-apk-download-wap-mobile-via-android-ios-terbaru-terlengkap", "popularity": 0.0 }, { @@ -33180,33 +27225,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 69, + "star_count": 80, "Docker_Url": "https://hub.docker.com/_/dart", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -33217,14 +27239,7 @@ "star_count": 88, "Docker_Url": "https://hub.docker.com/r/google/dart", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -33237,14 +27252,7 @@ "star_count": 88, "Docker_Url": "https://hub.docker.com/r/google/dart", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -33252,33 +27260,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 69, + "star_count": 80, "Docker_Url": "https://hub.docker.com/_/dart", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -33289,14 +27274,7 @@ "star_count": 33, "Docker_Url": "https://hub.docker.com/r/google/dart-runtime", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -33307,14 +27285,7 @@ "star_count": 16, "Docker_Url": "https://hub.docker.com/r/google/dart-hello", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -33328,22 +27299,22 @@ }, { "name": "dart", - "url": "https://quay.io/repository/official-images/dart", + "url": "https://quay.io/repository/spivegin/dart", "popularity": 0.0 }, { "name": "dart", - "url": "https://quay.io/repository/spivegin/dart", + "url": "https://quay.io/repository/official-images/dart", "popularity": 0.0 }, { "name": "dart", - "url": "https://quay.io/repository/sustainable_computing_io/dart", + "url": "https://quay.io/repository/gitpodified-workspace-images/dart", "popularity": 0.0 }, { "name": "dart", - "url": "https://quay.io/repository/gitpodified-workspace-images/dart", + "url": "https://quay.io/repository/sustainable_computing_io/dart", "popularity": 0.0 } ], @@ -33351,22 +27322,22 @@ { "name": "dart-caps-listen", "url": "https://quay.io/repository/geonet/dart-caps-listen", - "popularity": 1021.0 - }, - { - "name": "dart-tilde-listen", - "url": "https://quay.io/repository/geonet/dart-tilde-listen", - "popularity": 681.0 + "popularity": 1008.0 }, { "name": "dart-rapid", "url": "https://quay.io/repository/geonet/dart-rapid", - "popularity": 681.0 + "popularity": 672.0 + }, + { + "name": "dart-tilde-listen", + "url": "https://quay.io/repository/geonet/dart-tilde-listen", + "popularity": 672.0 }, { "name": "bioconductor-dart", "url": "https://quay.io/repository/biocontainers/bioconductor-dart", - "popularity": 261.0 + "popularity": 0.0 }, { "name": "dart", @@ -33388,21 +27359,14 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/os", + "name": "objectscale/fabric-proxy", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 55, - "Docker_Url": "https://hub.docker.com/r/rancher/os", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/fabric-proxy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -33413,27 +27377,27 @@ { "name": "flannel", "url": "https://quay.io/repository/coreos/flannel", - "popularity": 1741937.0 + "popularity": 1217038.0 }, { "name": "fabric-peer", "url": "https://quay.io/repository/kfsoftware/fabric-peer", - "popularity": 124.0 + "popularity": 700.0 }, { - "name": "netop-fabric-manager", - "url": "https://quay.io/repository/noirolabs/netop-fabric-manager", - "popularity": 8.0 + "name": "runtime-fabric-operator", + "url": "https://quay.io/repository/operator-pipeline-prod/runtime-fabric-operator", + "popularity": 1352.0 }, { - "name": "cortex-fabric-operator-image", - "url": "https://quay.io/repository/cleecs/cortex-fabric-operator-image", - "popularity": 0.0 + "name": "runtime-fabric-operator", + "url": "https://quay.io/repository/mulesoft/runtime-fabric-operator", + "popularity": 243.0 }, { - "name": "flannel", - "url": "https://quay.io/repository/microshift/flannel", - "popularity": 42.0 + "name": "runtime-fabric-operator-index", + "url": "https://quay.io/repository/dcurran/runtime-fabric-operator-index", + "popularity": 532.0 } ] }, @@ -33456,27 +27420,27 @@ { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "popularity": 71385.0 }, { "name": "postgresql", "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 19350.0 + "popularity": 22536.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 43577.0 + "popularity": 7129.0 }, { - "name": "gawk", - "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 20761.0 + "name": "rseqc", + "url": "https://quay.io/repository/biocontainers/rseqc", + "popularity": 6505.0 } ] }, @@ -33497,33 +27461,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -33534,22 +27475,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -33560,22 +27486,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -33586,27 +27497,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -33617,7 +27528,7 @@ "name": "kubeflow", "normalized_name": "kubeflow", "logo_image_id": "cb5e7dba-ea2d-4a65-a3b6-7def9d80358f", - "stars": 4, + "stars": 6, "display_name": "Kubeflow", "description": "Kubeflow Operator for deployment and management of Kubeflow", "version": "1.2.0", @@ -33874,14 +27785,14 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.8", + "version": "0.6.0-rc1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 11, - "medium": 52, - "unknown": 5, + "low": 31, + "high": 19, + "medium": 64, + "unknown": 11, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -33952,10 +27863,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 2, - "medium": 32, - "unknown": 0, + "low": 31, + "high": 7, + "medium": 44, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -33984,19 +27895,19 @@ "stars": 0, "display_name": "IBM block storage CSI driver operator", "description": "Run IBM block storage CSI driver.", - "version": "1.9.0", + "version": "1.10.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 3, - "medium": 44, + "low": 29, + "high": 6, + "medium": 34, "unknown": 1, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1640430000, + "ts": 1648724400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -34010,7 +27921,9 @@ "organization_display_name": "Operator Framework" }, "git_repos": "https://github.com/IBM/ibm-block-csi-operator", - "container_images": [] + "container_images": [ + "docker.io/ibmcom/ibm-block-csi-operator:1.10.0" + ] }, { "package_id": "730af2fd-ace8-4ab8-b17f-6535c0283a4b", @@ -34061,9 +27974,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 1, - "unknown": 1, + "high": 7, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -34128,9 +28041,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 1, - "medium": 0, - "unknown": 1, + "high": 9, + "medium": 2, + "unknown": 4, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -34164,9 +28077,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 4, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -34238,9 +28151,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 2, - "medium": 1, - "unknown": 1, + "high": 10, + "medium": 3, + "unknown": 5, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -34279,29 +28192,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "z-push", - "url": "https://quay.io/repository/baschte/z-push", + "name": "lumbung88-login-lapak303-slot-lumbung-88-link-lapak-303-daftar-kumpulan-judi-kartu-live-casino-poker--slot-togel-toto-sabung-ayam-esport-bola-sbobet-online-tebaruterlengkap-indonesia-2022-live-chat-apk-download-wap-mobile-via-android-ios", + "url": "https://quay.io/repository/bandarbettingonline30/lumbung88-login-lapak303-slot-lumbung-88-link-lapak-303-daftar-kumpulan-judi-kartu-live-casino-poker--slot-togel-toto-sabung-ayam-esport-bola-sbobet-online-tebaruterlengkap-indonesia-2022-live-chat-apk-download-wap-mobile-via-android-ios", "popularity": 0.0 }, { - "name": "ee-general-image", - "url": "https://quay.io/repository/nleiva/ee-general-image", - "popularity": 2.0 + "name": "sbobet88-login-togelcc-link-alternatif-sobet-88-daftar-togel-cc-kumpulan-agen-judi-slot-togel-toto-bola-poker-online-24jam-resmi-terpercaya-indonesia-2022-live-chat-apk-download-wap-mobile-via-android-ios-terbaru-terlengkap", + "url": "https://quay.io/repository/bandarbettingonline30/sbobet88-login-togelcc-link-alternatif-sobet-88-daftar-togel-cc-kumpulan-agen-judi-slot-togel-toto-bola-poker-online-24jam-resmi-terpercaya-indonesia-2022-live-chat-apk-download-wap-mobile-via-android-ios-terbaru-terlengkap", + "popularity": 0.0 }, { - "name": "cisco_exporter", - "url": "https://quay.io/repository/danhawker/cisco_exporter", + "name": "jayapoker-togel-macantogel-online-link-alternatif-jaya-poker-macan-togel-daftar-login-wap-agen-betting-online24jam-resmi-terpercaya-no-1-indonesia-kumpulan-situs-judi-slot-toto-togel-live-casino-sbobet-poker-bola-online-download-apk-mobile-android-ios", + "url": "https://quay.io/repository/slotgacorhariini/jayapoker-togel-macantogel-online-link-alternatif-jaya-poker-macan-togel-daftar-login-wap-agen-betting-online24jam-resmi-terpercaya-no-1-indonesia-kumpulan-situs-judi-slot-toto-togel-live-casino-sbobet-poker-bola-online-download-apk-mobile-android-ios", "popularity": 0.0 }, { - "name": "xr-genie", - "url": "https://quay.io/repository/nleiva/xr-genie", + "name": "rgotogoel-hk-rgopoker-online-link-alternatif-rgo-togel-poker-daftar-login-wap-agen-betting-online24jam-resmi-terpercaya-no-1-indonesia-kumpulan-situs-judi-slot-toto-togel-live-casino-sbobet-poker-bola-online-download-apk-mobile-android-ios", + "url": "https://quay.io/repository/slotgacorhariini/rgotogoel-hk-rgopoker-online-link-alternatif-rgo-togel-poker-daftar-login-wap-agen-betting-online24jam-resmi-terpercaya-no-1-indonesia-kumpulan-situs-judi-slot-toto-togel-live-casino-sbobet-poker-bola-online-download-apk-mobile-android-ios", "popularity": 0.0 }, { - "name": "iphoneapplication", - "url": "https://quay.io/repository/samarthkhurana068/iphoneapplication", - "popularity": 0.0 + "name": "ee-general-image", + "url": "https://quay.io/repository/nleiva/ee-general-image", + "popularity": 2.0 } ] }, @@ -34321,33 +28234,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7248, + "star_count": 7330, "Docker_Url": "https://hub.docker.com/_/centos", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -34357,69 +28247,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7248, + "star_count": 7330, "Docker_Url": "https://hub.docker.com/_/centos", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "datadog/centos-i386", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/datadog/centos-i386", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } - ] - }, - { - "name": "kasmweb/centos-7-desktop", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/kasmweb/centos-7-desktop", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -34429,49 +28260,64 @@ { "name": "centos", "url": "https://quay.io/repository/centos/centos", - "popularity": 414990.0 + "popularity": 492769.0 }, { "name": "centos", "url": "https://quay.io/repository/containerdisks/centos", - "popularity": 11125.0 + "popularity": 8453.0 + }, + { + "name": "centos", + "url": "https://quay.io/repository/startx/centos", + "popularity": 4264.0 }, { "name": "centos", "url": "https://quay.io/repository/openshifttest/centos", - "popularity": 1289.0 + "popularity": 1132.0 }, { "name": "centos", "url": "https://quay.io/repository/libpod/centos", - "popularity": 2030.0 + "popularity": 2240.0 + }, + { + "name": "centos", + "url": "https://quay.io/repository/bedrock/centos", + "popularity": 1561.0 + }, + { + "name": "centos", + "url": "https://quay.io/repository/nvlab/centos", + "popularity": 659.0 } ], "quay_top_images": [ { "name": "centos", "url": "https://quay.io/repository/centos/centos", - "popularity": 414990.0 + "popularity": 492769.0 }, { "name": "centos-base", "url": "https://quay.io/repository/ukhomeofficedigital/centos-base", - "popularity": 43160.0 + "popularity": 43137.0 }, { - "name": "centos-stream", - "url": "https://quay.io/repository/containerdisks/centos-stream", - "popularity": 14141.0 + "name": "centos-development", + "url": "https://quay.io/repository/sdase/centos-development", + "popularity": 54828.0 }, { - "name": "centos", - "url": "https://quay.io/repository/containerdisks/centos", - "popularity": 11125.0 + "name": "centos-stream", + "url": "https://quay.io/repository/containerdisks/centos-stream", + "popularity": 16533.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 } ] }, @@ -34492,17 +28338,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/docker/ip-util-check", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -34513,27 +28352,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "check-aws-tags", - "url": "https://quay.io/repository/sergioballesteros/check-aws-tags", - "popularity": 30674.0 + "popularity": 5835615.0 }, { - "name": "invidious", - "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 71385.0 }, { "name": "kata-deploy", "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 21496.0 + "popularity": 49830.0 } ] }, @@ -34553,81 +28392,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4384, + "star_count": 4444, "Docker_Url": "https://hub.docker.com/_/debian", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "riscv64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -34637,81 +28405,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4384, + "star_count": 4444, "Docker_Url": "https://hub.docker.com/_/debian", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "riscv64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -34722,61 +28419,49 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/datadog/debian-i386", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] } ] }, { "quay_exact_images": [ - { - "name": "debian", - "url": "https://quay.io/repository/official-images/debian", - "popularity": 82.0 - }, { "name": "debian", "url": "https://quay.io/repository/libpod/debian", - "popularity": 1168.0 + "popularity": 1218.0 }, { "name": "debian", - "url": "https://quay.io/repository/broadstripes/debian", - "popularity": 33.0 + "url": "https://quay.io/repository/nvlab/debian", + "popularity": 417.0 } ], "quay_top_images": [ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 + }, + { + "name": "images-debian-nodejs-16", + "url": "https://quay.io/repository/snaildos/images-debian-nodejs-16", + "popularity": 2352.0 }, { "name": "debian", "url": "https://quay.io/repository/libpod/debian", - "popularity": 1168.0 + "popularity": 1218.0 }, { "name": "debian-source-haproxy", "url": "https://quay.io/repository/openstack.kolla/debian-source-haproxy", - "popularity": 255.0 - }, - { - "name": "debian-tall", - "url": "https://quay.io/repository/gravitational/debian-tall", - "popularity": 503.0 + "popularity": 534.0 } ] }, @@ -34800,14 +28485,7 @@ "star_count": 55, "Docker_Url": "https://hub.docker.com/r/rancher/os", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -34832,18 +28510,9 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 320, + "star_count": 324, "Docker_Url": "https://hub.docker.com/_/opensuse", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] + "OS": [] } ], "dockerhub_top_images": [ @@ -34852,64 +28521,67 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 320, + "star_count": 324, "Docker_Url": "https://hub.docker.com/_/opensuse", + "OS": [] + }, + { + "name": "kasmweb/core-opensuse-15", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-opensuse-15", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "kasmweb/opensuse-15-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/opensuse-15-desktop", + "OS": [ + "linux" ] } ] }, { "quay_exact_images": [ - { - "name": "opensuse", - "url": "https://quay.io/repository/wstein/opensuse", - "popularity": 0.0 - }, { "name": "opensuse", "url": "https://quay.io/repository/ucomesdag/opensuse", "popularity": 0.0 - }, - { - "name": "opensuse", - "url": "https://quay.io/repository/quay-qetest/opensuse", - "popularity": 2.0 } ], "quay_top_images": [ { - "name": "opensuse-systemd", - "url": "https://quay.io/repository/gotmax23/opensuse-systemd", - "popularity": 30.0 + "name": "core-opensuse-rke2", + "url": "https://quay.io/repository/c3os/core-opensuse-rke2", + "popularity": 108.0 }, { - "name": "vm-opensuse-leap-15", - "url": "https://quay.io/repository/kubespray/vm-opensuse-leap-15", - "popularity": 56.0 + "name": "core-opensuse", + "url": "https://quay.io/repository/kairos/core-opensuse", + "popularity": 310.0 }, { - "name": "opensuse-tumbleweed-systemd", - "url": "https://quay.io/repository/gotmax23/opensuse-tumbleweed-systemd", - "popularity": 14.0 + "name": "core-opensuse-rke2", + "url": "https://quay.io/repository/kairos/core-opensuse-rke2", + "popularity": 477.0 }, { - "name": "opensuse-leap-systemd", - "url": "https://quay.io/repository/gotmax23/opensuse-leap-systemd", - "popularity": 8.0 + "name": "core-opensuse-arm-rpi", + "url": "https://quay.io/repository/kairos/core-opensuse-arm-rpi", + "popularity": 122.0 }, { - "name": "opensuse-15-container-disk", - "url": "https://quay.io/repository/edgestack/opensuse-15-container-disk", - "popularity": 5.0 + "name": "core-opensuse-k3s", + "url": "https://quay.io/repository/kairos/core-opensuse-k3s", + "popularity": 256.0 } ] }, @@ -34924,7 +28596,19 @@ "Oracle Linux": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], @@ -34932,27 +28616,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 - }, - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 + "popularity": 162027.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 126512.0 + "popularity": 160924.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -34976,14 +28660,7 @@ "star_count": 55, "Docker_Url": "https://hub.docker.com/r/rancher/os", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -34996,15 +28673,10 @@ "url": "https://quay.io/repository/klovercloud/goharbor-clair-photon", "popularity": 1005.0 }, - { - "name": "nginx-photon", - "url": "https://quay.io/repository/rackspace/nginx-photon", - "popularity": 84.0 - }, { "name": "notary-server-photon", "url": "https://quay.io/repository/rackspace/notary-server-photon", - "popularity": 84.0 + "popularity": 85.0 }, { "name": "registry-photon", @@ -35014,6 +28686,11 @@ { "name": "notary-signer-photon", "url": "https://quay.io/repository/rackspace/notary-signer-photon", + "popularity": 85.0 + }, + { + "name": "redis-photon", + "url": "https://quay.io/repository/rackspace/redis-photon", "popularity": 84.0 } ] @@ -35038,14 +28715,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -35056,14 +28726,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-logs", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -35074,27 +28737,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "mongodb-enterprise-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 99140.0 + "popularity": 29516627.0 }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 80188.0 + "popularity": 430133.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "popularity": 222040.0 + }, + { + "name": "mongodb-enterprise-appdb-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb-database", + "popularity": 179107.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 } ] }, @@ -35117,27 +28780,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { - "name": "mongodb-enterprise-operator", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 7397692.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -35157,57 +28820,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 14629, + "star_count": 15005, "Docker_Url": "https://hub.docker.com/_/ubuntu", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "riscv64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -35217,75 +28833,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 14629, + "star_count": 15005, "Docker_Url": "https://hub.docker.com/_/ubuntu", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "riscv64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ubuntu-upstart", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 112, - "Docker_Url": "https://hub.docker.com/_/ubuntu-upstart", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "linux" ] }, { @@ -35296,32 +28847,18 @@ "star_count": 46, "Docker_Url": "https://hub.docker.com/_/ubuntu-debootstrap", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] }, { - "name": "bitnami/ubuntu-base-buildpack", - "Official image": false, - "Verified Publisher": true, + "name": "ubuntu-upstart", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/bitnami/ubuntu-base-buildpack", + "star_count": 112, + "Docker_Url": "https://hub.docker.com/_/ubuntu-upstart", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "" ] }, { @@ -35332,22 +28869,7 @@ "star_count": 31, "Docker_Url": "https://hub.docker.com/r/kasmweb/ubuntu-bionic-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -35357,59 +28879,54 @@ { "name": "ubuntu", "url": "https://quay.io/repository/libpod/ubuntu", - "popularity": 29019.0 - }, - { - "name": "ubuntu", - "url": "https://quay.io/repository/tamr/ubuntu", - "popularity": 495.0 + "popularity": 33107.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/bedrock/ubuntu", - "popularity": 28403.0 + "popularity": 29331.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79482.0 + "popularity": 551.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/cybozu/ubuntu", - "popularity": 5114.0 + "popularity": 3690.0 }, { "name": "ubuntu", - "url": "https://quay.io/repository/widen/ubuntu", - "popularity": 0.0 + "url": "https://quay.io/repository/lifebitai/ubuntu", + "popularity": 320.0 } ], "quay_top_images": [ { "name": "ubuntu", "url": "https://quay.io/repository/libpod/ubuntu", - "popularity": 29019.0 + "popularity": 33107.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/bedrock/ubuntu", - "popularity": 28403.0 - }, - { - "name": "ubuntu", - "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79482.0 + "popularity": 29331.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/cybozu/ubuntu", - "popularity": 5114.0 + "popularity": 3690.0 }, { "name": "ubuntu-debug", "url": "https://quay.io/repository/cybozu/ubuntu-debug", - "popularity": 2626.0 + "popularity": 2235.0 + }, + { + "name": "ubuntu-source-kolla-toolbox", + "url": "https://quay.io/repository/openstack.kolla/ubuntu-source-kolla-toolbox", + "popularity": 1390.0 } ] }, @@ -35449,12 +28966,12 @@ { "name": "bowtie2", "url": "https://quay.io/repository/biocontainers/bowtie2", - "popularity": 2502.0 + "popularity": 779.0 }, { "name": "rhel8_runtime", "url": "https://quay.io/repository/openvino/rhel8_runtime", - "popularity": 0.0 + "popularity": 1.0 }, { "name": "rust", @@ -35462,8 +28979,8 @@ "popularity": 0.0 }, { - "name": "ccc", - "url": "https://quay.io/repository/jlospinoso/ccc", + "name": "rhel8_dev", + "url": "https://quay.io/repository/openvino/rhel8_dev", "popularity": 0.0 }, { @@ -35604,27 +29121,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3159.0 + "popularity": 5127.0 }, { - "name": "freebsd", - "url": "https://quay.io/repository/uchida/freebsd", - "popularity": 0.0 + "name": "freebsd-minimal", + "url": "https://quay.io/repository/dougrabson/freebsd-minimal", + "popularity": 4.0 }, { - "name": "freebsd-container-disk-demo", - "url": "https://quay.io/repository/karmab/freebsd-container-disk-demo", + "name": "freebsd-pkgbase", + "url": "https://quay.io/repository/dougrabson/freebsd-pkgbase", "popularity": 0.0 }, { - "name": "fpm", - "url": "https://quay.io/repository/tenzerdk/fpm", - "popularity": 4.0 + "name": "freebsd", + "url": "https://quay.io/repository/uchida/freebsd", + "popularity": 0.0 } ] }, @@ -35679,17 +29196,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -35700,27 +29210,27 @@ { "name": "desktop", "url": "https://quay.io/repository/capesos/desktop", - "popularity": 901357.0 + "popularity": 7278.0 }, { "name": "desktop", "url": "https://quay.io/repository/mocaccino/desktop", - "popularity": 224100.0 + "popularity": 28862.0 }, { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7652.0 + "popularity": 18032.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3159.0 + "popularity": 5127.0 }, { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2358.0 + "popularity": 2441.0 } ] }, @@ -35736,40 +29246,59 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/windows-scheduler", + "name": "rancher/server-base", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + "linux" ] } ] @@ -35780,27 +29309,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -35820,49 +29349,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1073, + "star_count": 1088, "Docker_Url": "https://hub.docker.com/_/fedora", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -35872,49 +29362,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1073, + "star_count": 1088, "Docker_Url": "https://hub.docker.com/_/fedora", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -35925,22 +29376,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/fhe-toolkit-fedora", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -35950,54 +29386,59 @@ { "name": "fedora", "url": "https://quay.io/repository/fedora/fedora", - "popularity": 26834.0 + "popularity": 27557.0 }, { "name": "fedora", "url": "https://quay.io/repository/containerdisks/fedora", - "popularity": 6866.0 + "popularity": 8652.0 + }, + { + "name": "fedora", + "url": "https://quay.io/repository/startx/fedora", + "popularity": 8002.0 }, { "name": "fedora", "url": "https://quay.io/repository/kubevirtci/fedora", - "popularity": 8025.0 + "popularity": 5190.0 }, { "name": "fedora", "url": "https://quay.io/repository/libpod/fedora", - "popularity": 5118.0 + "popularity": 4746.0 }, { "name": "fedora", - "url": "https://quay.io/repository/startx/fedora", - "popularity": 8496.0 + "url": "https://quay.io/repository/bedrock/fedora", + "popularity": 1190.0 } ], "quay_top_images": [ { "name": "fedora", "url": "https://quay.io/repository/fedora/fedora", - "popularity": 26834.0 + "popularity": 27557.0 }, { "name": "fedora-for-psi-ocp-monitoring", "url": "https://quay.io/repository/psi-ocp/fedora-for-psi-ocp-monitoring", - "popularity": 17069.0 + "popularity": 17291.0 }, { "name": "fedora", - "url": "https://quay.io/repository/kubevirtci/fedora", - "popularity": 8025.0 + "url": "https://quay.io/repository/containerdisks/fedora", + "popularity": 8652.0 }, { "name": "fedora", "url": "https://quay.io/repository/startx/fedora", - "popularity": 8496.0 + "popularity": 8002.0 }, { "name": "stable", "url": "https://quay.io/repository/buildah/stable", - "popularity": 55856.0 + "popularity": 103088.0 } ] }, @@ -36018,25 +29459,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 90, + "star_count": 94, "Docker_Url": "https://hub.docker.com/r/amazon/amazon-ecs-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36044,17 +29470,23 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 25, + "star_count": 28, "Docker_Url": "https://hub.docker.com/r/amazon/amazon-ecs-sample", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "amazon/amazon-ec2-metadata-mock", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/amazon/amazon-ec2-metadata-mock", + "OS": [ + "darwin", + "linux", + "windows" ] } ] @@ -36065,27 +29497,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 - }, - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 + "popularity": 162027.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 126512.0 + "popularity": 160924.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -36108,27 +29540,27 @@ { "name": "nginx-basic-auth-proxy", "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", - "popularity": 6483.0 + "popularity": 5969.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 - }, - { - "name": "basic-ocp-demo", - "url": "https://quay.io/repository/freedomben/basic-ocp-demo", - "popularity": 1740.0 + "popularity": 61984.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13670.0 + "popularity": 18913.0 + }, + { + "name": "basictools", + "url": "https://quay.io/repository/sfhassan/basictools", + "popularity": 5628.0 } ] }, @@ -36152,30 +29584,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36186,30 +29595,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-ui", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36220,30 +29606,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-db", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -36254,27 +29617,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "backend-atlas", "url": "https://quay.io/repository/rhacs-demo/backend-atlas", - "popularity": 1518.0 + "popularity": 1463.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 - }, - { - "name": "mongodb-atlas-kubernetes-operator-catalog", - "url": "https://quay.io/repository/igorkarpukhin/mongodb-atlas-kubernetes-operator-catalog", - "popularity": 1850.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 + }, + { + "name": "spicedb", + "url": "https://quay.io/repository/authzed/spicedb", + "popularity": 12586.0 } ] }, @@ -36298,32 +29661,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/cimg/deploy", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "percona/pmm-client", + "name": "airbyte/tool-link-checker", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/percona/pmm-client", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/tool-link-checker", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -36334,27 +29683,27 @@ { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", - "popularity": 708674.0 + "popularity": 448146.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "nfs-client-provisioner-arm", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", - "popularity": 89108.0 + "popularity": 94610.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 783797.0 + "popularity": 784111.0 } ] }, @@ -36377,27 +29726,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "jaeger-query", - "url": "https://quay.io/repository/jaegertracing/jaeger-query", - "popularity": 9826.0 - }, - { - "name": "k8s-config-connector-extended", - "url": "https://quay.io/repository/cloud104/k8s-config-connector-extended", - "popularity": 3828.0 + "popularity": 5835615.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 + "popularity": 123109.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30583.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 16654.0 } ] }, @@ -36420,27 +29769,27 @@ { "name": "discovery", "url": "https://quay.io/repository/solo-io/discovery", - "popularity": 239563.0 + "popularity": 144985.0 }, { "name": "node-feature-discovery", "url": "https://quay.io/repository/kubernetes_incubator/node-feature-discovery", - "popularity": 50581.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 129345.0 }, { "name": "origin-node-feature-discovery", "url": "https://quay.io/repository/openshift/origin-node-feature-discovery", - "popularity": 69847.0 + "popularity": 64560.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 + "popularity": 123109.0 } ] }, @@ -36456,6 +29805,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "okteto/api", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/api", + "OS": [ + "linux" + ] + }, { "name": "kasmweb/api", "Official image": false, @@ -36464,22 +29824,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/api", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36487,33 +29832,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 18, + "star_count": 20, "Docker_Url": "https://hub.docker.com/_/api-firewall", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36521,49 +29843,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 24, + "star_count": 26, "Docker_Url": "https://hub.docker.com/r/wallarm/api-firewall", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -36574,27 +29857,27 @@ { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 35108.0 + "popularity": 26368.0 + }, + { + "name": "virt-api", + "url": "https://quay.io/repository/kubevirt/virt-api", + "popularity": 23329.0 }, { "name": "insights-api", "url": "https://quay.io/repository/fairwinds/insights-api", - "popularity": 39135.0 + "popularity": 53805.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1288147.0 - }, - { - "name": "third-party-api-resolver-server", - "url": "https://quay.io/repository/decentraland/third-party-api-resolver-server", - "popularity": 52906.0 + "popularity": 1268909.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "popularity": 337637.0 } ] }, @@ -36618,14 +29901,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/percona/pmm-client", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36633,17 +29909,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/bitnami/minio-client", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36654,14 +29923,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/google/apigee-cassandra-client", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36672,14 +29934,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/secure-gateway-client", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36690,14 +29945,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -36708,27 +29956,27 @@ { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", - "popularity": 708674.0 + "popularity": 448146.0 }, { "name": "nfs-client-provisioner-arm", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", - "popularity": 89108.0 + "popularity": 94610.0 }, { "name": "defectdojo-client", "url": "https://quay.io/repository/sdase/defectdojo-client", - "popularity": 5941.0 + "popularity": 7794.0 }, { - "name": "kubernetes-vault-client", - "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", - "popularity": 8244.0 + "name": "quobyte-client", + "url": "https://quay.io/repository/quobyte/quobyte-client", + "popularity": 5166.0 }, { - "name": "nfs-client-provisioner", - "url": "https://quay.io/repository/vbouchaud/nfs-client-provisioner", - "popularity": 10282.0 + "name": "origin-kube-client-agent", + "url": "https://quay.io/repository/openshift/origin-kube-client-agent", + "popularity": 3711.0 } ] }, @@ -36749,65 +29997,11 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 89, + "star_count": 98, "Docker_Url": "https://hub.docker.com/r/datadog/agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.17763.3165", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.18363.1556", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.19041.1415", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.19042.1706", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.20348.825", - "Type": "windows", - "Subtype": "" - } + "linux", + "windows" ] }, { @@ -36818,14 +30012,7 @@ "star_count": 17, "Docker_Url": "https://hub.docker.com/r/sysdig/agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -36833,73 +30020,11 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 158, + "star_count": 168, "Docker_Url": "https://hub.docker.com/r/portainer/agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.17763.3046", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.18363.1556", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.19041.1415", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.19042.1766", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.20348.768", - "Type": "windows", - "Subtype": "" - } + "linux", + "windows" ] }, { @@ -36910,64 +30035,18 @@ "star_count": 89, "Docker_Url": "https://hub.docker.com/r/rancher/agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "grafana/agent", + "name": "kasmweb/agent", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/grafana/agent", - "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/agent", + "OS": [ + "linux" ] } ] @@ -36978,27 +30057,27 @@ { "name": "signalfx-agent", "url": "https://quay.io/repository/signalfx/signalfx-agent", - "popularity": 4302999.0 + "popularity": 6471969.0 + }, + { + "name": "mongodb-agent", + "url": "https://quay.io/repository/mongodb/mongodb-agent", + "popularity": 311594.0 }, { "name": "agent", "url": "https://quay.io/repository/sysdig/agent", - "popularity": 256894.0 + "popularity": 185519.0 }, { - "name": "mongodb-agent", - "url": "https://quay.io/repository/mongodb/mongodb-agent", - "popularity": 260822.0 + "name": "agent-kmodule", + "url": "https://quay.io/repository/sysdig/agent-kmodule", + "popularity": 483197.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "workload-agent", - "url": "https://quay.io/repository/sysdig/workload-agent", - "popularity": 247186.0 + "popularity": 5835615.0 } ] }, @@ -37013,7 +30092,19 @@ "VSS Requestor": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "vmware/vss-remediation-worker", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/vmware/vss-remediation-worker", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], @@ -37021,16 +30112,16 @@ { "name": "requestor", "url": "https://quay.io/repository/cdis/requestor", - "popularity": 2703.0 + "popularity": 4346.0 }, { - "name": "qpid-requestor", - "url": "https://quay.io/repository/lslavkov/qpid-requestor", + "name": "goproxy", + "url": "https://quay.io/repository/jsparrow/goproxy", "popularity": 0.0 }, { - "name": "goproxy", - "url": "https://quay.io/repository/jsparrow/goproxy", + "name": "qpid-requestor", + "url": "https://quay.io/repository/lslavkov/qpid-requestor", "popularity": 0.0 } ] @@ -37054,27 +30145,27 @@ { "name": "explorer-bff", "url": "https://quay.io/repository/decentraland/explorer-bff", - "popularity": 232.0 + "popularity": 33187.0 }, { - "name": "pso-explorer", - "url": "https://quay.io/repository/purestorage/pso-explorer", - "popularity": 480.0 + "name": "splunk-network-explorer-kernel-collector", + "url": "https://quay.io/repository/signalfx/splunk-network-explorer-kernel-collector", + "popularity": 36368.0 }, { "name": "explorer", "url": "https://quay.io/repository/jkunstle/explorer", - "popularity": 878.0 + "popularity": 1009.0 }, { "name": "bitcoin-explorer", "url": "https://quay.io/repository/hirosystems/bitcoin-explorer", - "popularity": 129.0 + "popularity": 188.0 }, { - "name": "cnv-version-explorer", - "url": "https://quay.io/repository/orenc/cnv-version-explorer", - "popularity": 7.0 + "name": "bioconductor-scatac.explorer", + "url": "https://quay.io/repository/biocontainers/bioconductor-scatac.explorer", + "popularity": 168.0 } ] }, @@ -37091,39 +30182,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "gooddata/sql-executor", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" ] } ] @@ -37134,27 +30233,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -37178,30 +30277,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-ui", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -37212,30 +30288,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-db", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -37246,30 +30299,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -37280,27 +30310,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 1442128.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 857217.0 + "popularity": 1013505.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 - }, - { - "name": "cilium", - "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 337637.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 } ] }, @@ -37324,14 +30354,53 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/rancher/log-aggregator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "vmware/log-intelligence-fluentd", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/vmware/log-intelligence-fluentd", + "OS": [ + "linux" + ] + }, + { + "name": "portainer/agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 168, + "Docker_Url": "https://hub.docker.com/r/portainer/agent", + "OS": [ + "linux", + "windows" + ] + }, + { + "name": "datadog/agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 98, + "Docker_Url": "https://hub.docker.com/r/datadog/agent", + "OS": [ + "linux", + "windows" + ] + }, + { + "name": "sysdig/agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 17, + "Docker_Url": "https://hub.docker.com/r/sysdig/agent", + "OS": [ + "linux" ] } ] @@ -37342,27 +30411,27 @@ { "name": "signalfx-agent", "url": "https://quay.io/repository/signalfx/signalfx-agent", - "popularity": 4302999.0 + "popularity": 6471969.0 }, { - "name": "bored-agent", - "url": "https://quay.io/repository/k8slens/bored-agent", - "popularity": 168372.0 + "name": "mongodb-agent", + "url": "https://quay.io/repository/mongodb/mongodb-agent", + "popularity": 311594.0 }, { "name": "agent", "url": "https://quay.io/repository/sysdig/agent", - "popularity": 256894.0 + "popularity": 185519.0 }, { - "name": "mongodb-agent", - "url": "https://quay.io/repository/mongodb/mongodb-agent", - "popularity": 260822.0 + "name": "agent-kmodule", + "url": "https://quay.io/repository/sysdig/agent-kmodule", + "popularity": 483197.0 }, { - "name": "workload-agent", - "url": "https://quay.io/repository/sysdig/workload-agent", - "popularity": 247186.0 + "name": "agent-slim", + "url": "https://quay.io/repository/sysdig/agent-slim", + "popularity": 162806.0 } ] }, @@ -37379,39 +30448,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "gooddata/sql-executor", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" ] } ] @@ -37422,27 +30499,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -37465,27 +30542,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { - "name": "mongodb-enterprise-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 99140.0 + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 7397692.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -37502,39 +30579,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "gooddata/sql-executor", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" ] } ] @@ -37545,27 +30630,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 }, { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42554.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -37586,17 +30671,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -37607,27 +30685,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 7397692.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -37643,58 +30721,59 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "cockroachdb/builder", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/cockroachdb/builder", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "gooddata/sql-executor", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/builder-base", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/circleci/builder-base", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -37705,27 +30784,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { - "name": "cf-docker-builder", - "url": "https://quay.io/repository/codefresh/cf-docker-builder", - "popularity": 84473.0 + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 7397692.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -37742,39 +30821,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "gooddata/sql-executor", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -37785,27 +30872,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -37845,27 +30932,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 43570374.0 + "popularity": 91532409.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2497215.0 + "popularity": 2503206.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -37888,27 +30975,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3639.0 + "popularity": 157.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 102.0 + "popularity": 82.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7567.0 + "popularity": 8233.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6669.0 + "popularity": 3531.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 170.0 + "popularity": 168.0 } ] }, @@ -37932,22 +31019,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/docker/for-desktop-kernel", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -37955,25 +31027,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/docker/for-desktop-kernel-grpcfuse", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -37984,27 +31041,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { - "name": "alpine-ext-kernel-boot-demo", - "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", - "popularity": 7326.0 + "name": "splunk-network-explorer-kernel-collector", + "url": "https://quay.io/repository/signalfx/splunk-network-explorer-kernel-collector", + "popularity": 36368.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 - }, - { - "name": "container-image-registry", - "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7567.0 + "popularity": 123109.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 8233.0 } ] }, @@ -38055,27 +31112,27 @@ { "name": "central-db", "url": "https://quay.io/repository/stackrox-io/central-db", - "popularity": 569.0 - }, - { - "name": "centos-binary-ceilometer-central", - "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-ceilometer-central", - "popularity": 404.0 + "popularity": 536.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 657.0 - }, - { - "name": "openstack-ceilometer-central", - "url": "https://quay.io/repository/tripleomastercentos9/openstack-ceilometer-central", - "popularity": 395.0 + "popularity": 699.0 }, { "name": "business-central-workbench", "url": "https://quay.io/repository/kiegroup/business-central-workbench", - "popularity": 646.0 + "popularity": 777.0 + }, + { + "name": "designate-central", + "url": "https://quay.io/repository/osism/designate-central", + "popularity": 372.0 + }, + { + "name": "openstack-ceilometer-central", + "url": "https://quay.io/repository/tripleowallaby/openstack-ceilometer-central", + "popularity": 182.0 } ] }, @@ -38115,27 +31172,27 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 - }, - { - "name": "cloud-native-postgresql", - "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 + "popularity": 30583.0 }, { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 9586.0 + "popularity": 73256.0 }, { "name": "freeipa-server", "url": "https://quay.io/repository/freeipa/freeipa-server", - "popularity": 911.0 + "popularity": 1863.0 + }, + { + "name": "wildfly-s2i-jdk11", + "url": "https://quay.io/repository/wildfly/wildfly-s2i-jdk11", + "popularity": 1320.0 } ] }, @@ -38159,14 +31216,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/google/apigee-runtime", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -38177,14 +31227,8 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/snyk/runtime-fixtures", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux", + "windows" ] }, { @@ -38195,30 +31239,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/rancher/library-traefik", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -38229,54 +31250,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/library-busybox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -38287,46 +31261,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/library-nginx", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -38337,27 +31272,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 + "popularity": 313212.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 } ] }, @@ -38397,27 +31332,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 120126.0 + "popularity": 60413.0 }, { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -38438,17 +31373,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -38458,15 +31386,17 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/windows-runtime-base", + "OS": [] + }, + { + "name": "grafana/ci-build-windows", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/grafana/ci-build-windows", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "windows" ] } ] @@ -38477,27 +31407,27 @@ { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7652.0 - }, - { - "name": "community-windows-machine-config-operator", - "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", - "popularity": 180.0 + "popularity": 18032.0 }, { - "name": "community-windows-machine-config-operator", - "url": "https://quay.io/repository/openshift-community-operators/community-windows-machine-config-operator", - "popularity": 253.0 + "name": "splunk-otel-collector-windows", + "url": "https://quay.io/repository/signalfx/splunk-otel-collector-windows", + "popularity": 758.0 }, { "name": "che-machine-exec", "url": "https://quay.io/repository/eclipse/che-machine-exec", - "popularity": 7943.0 + "popularity": 8099.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3159.0 + "popularity": 5127.0 + }, + { + "name": "server", + "url": "https://quay.io/repository/codimd/server", + "popularity": 2441.0 } ] }, @@ -38518,35 +31448,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/windows-runtime-base", + "name": "grafana/ci-build-windows", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/windows-runtime-base", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/grafana/ci-build-windows", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "windows" ] } ] @@ -38557,27 +31473,27 @@ { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1172724.0 - }, - { - "name": "workflow-service", - "url": "https://quay.io/repository/ukhomeofficedigital/workflow-service", - "popularity": 246.0 + "popularity": 1118580.0 }, { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7652.0 + "popularity": 18032.0 }, { - "name": "workflow-helpers", - "url": "https://quay.io/repository/thoth-station/workflow-helpers", - "popularity": 2533.0 + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 21134.0 }, { - "name": "workflow-controller", - "url": "https://quay.io/repository/codefresh/workflow-controller", - "popularity": 2381.0 + "name": "netbox", + "url": "https://quay.io/repository/netboxcommunity/netbox", + "popularity": 13083.0 + }, + { + "name": "kubectl", + "url": "https://quay.io/repository/zenlab/kubectl", + "popularity": 10691.0 } ] }, @@ -38620,11 +31536,6 @@ } ], "quay_top_images": [ - { - "name": "ado-image-updater", - "url": "https://quay.io/repository/mrethers/ado-image-updater", - "popularity": 0.0 - }, { "name": "ray", "url": "https://quay.io/repository/charlizeray/ray", @@ -38634,6 +31545,11 @@ "name": "ado", "url": "https://quay.io/repository/scottlezberg/ado", "popularity": 0.0 + }, + { + "name": "ado-image-updater", + "url": "https://quay.io/repository/mrethers/ado-image-updater", + "popularity": 0.0 } ] }, @@ -38650,55 +31566,36 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/migration-tools", + "name": "airbyte/migration", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/migration-tools", + "Docker_Url": "https://hub.docker.com/r/airbyte/migration", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/migration-agent", + "name": "airbyte/tool-link-checker", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/migration-agent", + "Docker_Url": "https://hub.docker.com/r/airbyte/tool-link-checker", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "rancher/migration-tools", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/migration-tools", + "OS": [ + "linux" ] } ] @@ -38709,27 +31606,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "insights-db-migration", - "url": "https://quay.io/repository/fairwinds/insights-db-migration", - "popularity": 58201.0 + "popularity": 5835615.0 }, { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 783797.0 - }, - { - "name": "knative-serving-storage-version-migration", - "url": "https://quay.io/repository/openshift-knative/knative-serving-storage-version-migration", - "popularity": 3011.0 + "popularity": 784111.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 126512.0 + "popularity": 160924.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 123109.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 71385.0 } ] }, @@ -38753,14 +31650,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/request-promise", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "vmware/routing-controller-example", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/vmware/routing-controller-example", + "OS": [ + "linux" ] } ] @@ -38768,30 +31669,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 133096.0 - }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 165365.0 + "popularity": 252177.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 117328.0 + "popularity": 167566.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/cilium/operator", + "popularity": 91249.0 } ] }, @@ -38812,93 +31713,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-identity-manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", - "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/icp-image-manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-image-manager", - "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -38909,27 +31727,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 } ] }, @@ -38952,27 +31770,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { "name": "jboss-eap-6.4-switchyard", "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", - "popularity": 3349.0 + "popularity": 3356.0 }, { "name": "jboss-kie-mysql-extension-openshift-image", "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", - "popularity": 2662.0 + "popularity": 5374.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 7782.0 + "popularity": 12370.0 }, { - "name": "business-central-workbench-showcase", - "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 657.0 + "name": "wildfly-runtime-jdk11", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-jdk11", + "popularity": 1033.0 } ] }, @@ -38992,17 +31810,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 19, + "star_count": 21, "Docker_Url": "https://hub.docker.com/r/bitnami/wildfly", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -39012,17 +31823,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 19, + "star_count": 21, "Docker_Url": "https://hub.docker.com/r/bitnami/wildfly", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -39033,14 +31837,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/wildfly-s390x", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -39050,54 +31847,54 @@ { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 7782.0 + "popularity": 12370.0 }, { "name": "wildfly", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly", - "popularity": 0.0 + "url": "https://quay.io/repository/halconsole/wildfly", + "popularity": 756.0 }, { "name": "wildfly", "url": "https://quay.io/repository/operatorhubio/wildfly", - "popularity": 256.0 + "popularity": 243.0 }, { "name": "wildfly", - "url": "https://quay.io/repository/halconsole/wildfly", - "popularity": 519.0 + "url": "https://quay.io/repository/alousta_us/wildfly", + "popularity": 174.0 }, { "name": "wildfly", - "url": "https://quay.io/repository/alousta_us/wildfly", - "popularity": 173.0 + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "wildfly-centos7", "url": "https://quay.io/repository/wildfly/wildfly-centos7", - "popularity": 2841120.0 + "popularity": 2857919.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 7782.0 + "popularity": 12370.0 }, { "name": "wildfly-s2i-jdk11", "url": "https://quay.io/repository/wildfly/wildfly-s2i-jdk11", - "popularity": 704.0 + "popularity": 1320.0 }, { - "name": "wildfly", - "url": "https://quay.io/repository/halconsole/wildfly", - "popularity": 519.0 + "name": "wildfly-runtime-jdk11", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-jdk11", + "popularity": 1033.0 } ] }, @@ -39111,15 +31908,15 @@ "stars": 1, "display_name": "WildFly", "description": "Operator that deploys and manages Java applications running on WildFly.", - "version": "0.5.3", + "version": "0.5.6", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 4, - "medium": 45, - "unknown": 1, - "critical": 0 + "low": 29, + "high": 10, + "medium": 36, + "unknown": 5, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -39138,7 +31935,7 @@ }, "git_repos": "https://github.com/wildfly/wildfly-operator", "container_images": [ - "quay.io/wildfly/wildfly-operator:0.5.3" + "quay.io/wildfly/wildfly-operator:0.5.6" ] } ] @@ -39157,17 +31954,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -39175,25 +31965,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -39204,27 +31979,27 @@ { "name": "gateway", "url": "https://quay.io/repository/solo-io/gateway", - "popularity": 300044.0 + "popularity": 196128.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { - "name": "oracle-12c", - "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 337637.0 }, { - "name": "gateway", - "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20568.0 + "name": "falcon-integration-gateway", + "url": "https://quay.io/repository/matosc15/falcon-integration-gateway", + "popularity": 36944.0 }, { - "name": "ambassador", - "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "name": "aes", + "url": "https://quay.io/repository/datawire/aes", + "popularity": 87151.0 } ] }, @@ -39241,21 +32016,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/script.js", + "name": "circleci/postgres-script-enhance", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/script.js", + "Docker_Url": "https://hub.docker.com/r/circleci/postgres-script-enhance", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/script.js-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/script.js-ppc64le", + "OS": [ + "linux" ] } ] @@ -39266,27 +32045,27 @@ { "name": "startup-script", "url": "https://quay.io/repository/cilium/startup-script", - "popularity": 272890.0 + "popularity": 257975.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 + "popularity": 61984.0 }, { "name": "podman", "url": "https://quay.io/repository/containers/podman", - "popularity": 21358.0 - }, - { - "name": "ubuntu", - "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79482.0 + "popularity": 6017.0 }, { "name": "netbox", "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 10714.0 + "popularity": 13083.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -39305,7 +32084,13 @@ }, { "quay_exact_images": [], - "quay_top_images": [] + "quay_top_images": [ + { + "name": "sap", + "url": "https://quay.io/repository/syevale111/sap", + "popularity": 0.0 + } + ] }, { "operators": [] @@ -39326,27 +32111,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 120126.0 + "popularity": 60413.0 } ] }, @@ -39357,15 +32142,22 @@ "name": "knative-operator", "normalized_name": "knative-operator", "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, + "stars": 13, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", + "version": "1.7.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 0, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1626134400, + "ts": 1661385600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -39386,7 +32178,7 @@ "name": "submariner", "normalized_name": "submariner", "logo_image_id": "a1089d5b-f3d3-4579-a6c3-e9ac7209a9bc", - "stars": 3, + "stars": 5, "display_name": "Submariner", "description": "Creates and manages Submariner deployments.", "version": "0.11.0", @@ -39490,9 +32282,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 2, - "medium": 0, - "unknown": 4, + "high": 9, + "medium": 2, + "unknown": 8, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -39557,19 +32349,19 @@ "stars": 0, "display_name": "BeeGFS CSI Driver", "description": "Install and manage the BeeGFS CSI driver", - "version": "1.2.2", + "version": "1.3.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 2, "medium": 0, - "unknown": 0, + "unknown": 1, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652301036, + "ts": 1661374838, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -39583,7 +32375,9 @@ "organization_display_name": "Operator Framework" }, "git_repos": "https://github.com/netapp/beegfs-csi-driver", - "container_images": [] + "container_images": [ + "docker.io/netapp/beegfs-csi-driver-operator:v1.3.0" + ] }, { "package_id": "67b7c1bc-ba55-4d2e-9531-cdf006e6ef9b", @@ -39597,10 +32391,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 81, - "high": 17, - "medium": 231, - "unknown": 1, + "low": 96, + "high": 24, + "medium": 249, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -39635,8 +32429,8 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, + "high": 1, + "medium": 1, "unknown": 0, "critical": 0 }, @@ -39671,9 +32465,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 2, + "medium": 1, + "unknown": 1, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -39694,6 +32488,42 @@ "git_repos": "https://github.com/k8gb-io/k8gb", "container_images": [] }, + { + "package_id": "eac3ba55-f650-49b7-af6c-8c6bc2674722", + "name": "kong-gateway-operator", + "normalized_name": "kong-gateway-operator", + "logo_image_id": "55628a62-3a97-409b-9000-69fb689cbb76", + "stars": 0, + "display_name": "Kong Gateway Operator", + "description": "A Kubernetes Operator for the Kong Gateway", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1664006440, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://kong.github.io/gateway-operator-docs", + "container_images": [] + }, { "package_id": "e0706291-0fad-4836-b85b-4d75f0d38837", "name": "kubernetes-nmstate-operator", @@ -39732,6 +32562,44 @@ "quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0" ] }, + { + "package_id": "8701a44f-3ae3-4c70-b7f3-a99c9449d828", + "name": "lbconfig-operator", + "normalized_name": "lbconfig-operator", + "logo_image_id": "0a0d1220-98a4-43b0-bffb-e14cea28093c", + "stars": 0, + "display_name": "External Load-Balancer Configuration Operator", + "description": "The LBConfig Operator, manages the configuration of External Load Balancer instances (on third-party equipment) and creates VIPs and IP Pools dynamically via API.", + "version": "0.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1660564800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/carlosedp/lbconfig-operator", + "container_images": [ + "docker.io/carlosedp/lbconfig-operator:v0.4.0" + ] + }, { "package_id": "f216c2a1-86fd-4904-97b1-1c36928a92ca", "name": "marin3r", @@ -39794,6 +32662,41 @@ "quay.io/metallb/metallb-operator" ] }, + { + "package_id": "db436e18-57ff-4502-a1bd-5bdbcd7131ab", + "name": "multi-nic-cni-operator", + "normalized_name": "multi-nic-cni-operator", + "logo_image_id": "f6df573e-dd38-4e69-8f4a-77312c8f82ba", + "stars": 0, + "display_name": "multi-nic-cni-operator", + "version": "1.0.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 1, + "unknown": 2, + "critical": 1 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1662723040, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, { "package_id": "22f61c65-b233-43ac-92fe-256a3afa5f5f", "name": "netobserv-operator", @@ -39802,19 +32705,19 @@ "stars": 0, "display_name": "NetObserv Operator", "description": "Network flows collector and monitoring solution", - "version": "0.1.3", + "version": "0.1.4", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, - "unknown": 0, - "critical": 0 + "low": 29, + "high": 3, + "medium": 30, + "unknown": 2, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656486425, + "ts": 1659974545, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -39829,7 +32732,7 @@ }, "git_repos": "https://github.com/netobserv/network-observability-operator", "container_images": [ - "quay.io/netobserv/network-observability-operator:0.1.3" + "quay.io/netobserv/network-observability-operator:0.1.4" ] }, { @@ -39911,10 +32814,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 47, - "high": 11, - "medium": 103, - "unknown": 1, + "low": 87, + "high": 23, + "medium": 131, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -39936,118 +32839,6 @@ "container_images": [ "quay.io/prismacloud/pcc-operator" ] - }, - { - "package_id": "0eebc475-fb58-4079-93f6-0adbfb246d3c", - "name": "routernetes-operator", - "normalized_name": "routernetes-operator", - "logo_image_id": "1688e00c-16af-4fc8-8a21-239609e2d091", - "stars": 0, - "display_name": "Routernetes", - "version": "0.0.5", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 42, - "high": 1, - "medium": 56, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1657636238, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/routernetes/routernetes-operator", - "container_images": [ - "quay.io/routernetes/routernetes-operator:0.0.5" - ] - }, - { - "package_id": "c133a83c-6ea9-47cd-8816-450e8be1ab90", - "name": "skydive-operator", - "normalized_name": "skydive-operator", - "stars": 0, - "display_name": "skydive-operator", - "description": "An operator to run the Skydive network monitoring tool", - "version": "0.0.50", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 1, - "medium": 0, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1619864460, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/skydive-project/skydive-golang-operator", - "container_images": [ - "docker.io/skydive/skydive-operator:0.0.50" - ] - }, - { - "package_id": "94f05a93-d55d-41dc-a561-6bfe8684d677", - "name": "tf-operator", - "normalized_name": "tf-operator", - "logo_image_id": "1db71532-0b76-41f7-abed-0aea95ecc8a3", - "stars": 0, - "display_name": "Tf Operator", - "description": "Manages Tungsten Fabric, secure software defined networking project designed for the cloud native, multicloud environment.", - "version": "1.0.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 67, - "high": 10, - "medium": 137, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1626708786, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/tungstenfabric/tf-operator", - "container_images": [ - "docker.io/tungstenfabric/tf-operator:latest" - ] } ] } @@ -40067,27 +32858,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 + "popularity": 61984.0 }, { "name": "chart-testing", "url": "https://quay.io/repository/helmpack/chart-testing", - "popularity": 38259.0 + "popularity": 50156.0 }, { - "name": "soketi", - "url": "https://quay.io/repository/soketi/soketi", - "popularity": 37098.0 + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -40128,14 +32919,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -40146,22 +32930,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -40172,14 +32941,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -40190,27 +32952,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -40233,7 +32995,7 @@ { "name": "cics-pipeline-demo-ansible", "url": "https://quay.io/repository/ivandov1/cics-pipeline-demo-ansible", - "popularity": 0.0 + "popularity": 110.0 }, { "name": "mf-cics-ts-operator", @@ -40273,25 +33035,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1990, + "star_count": 2060, "Docker_Url": "https://hub.docker.com/_/docker", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -40301,25 +33048,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1990, + "star_count": 2060, "Docker_Url": "https://hub.docker.com/_/docker", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -40327,30 +33059,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "gitlab-runner-docker-cleanup", - "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 783797.0 - }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2497215.0 + "popularity": 2503206.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -40437,10 +33169,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 46, - "high": 14, - "medium": 112, - "unknown": 5, + "low": 52, + "high": 23, + "medium": 125, + "unknown": 11, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -40475,10 +33207,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 47, - "high": 11, - "medium": 103, - "unknown": 1, + "low": 87, + "high": 23, + "medium": 131, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -40513,39 +33245,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "kasmweb/firefox-flash", + "name": "kasmweb/chrome-flash", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/firefox-flash", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/kasmweb/chrome-flash", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/chrome-flash", + "name": "kasmweb/firefox-flash", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/kasmweb/chrome-flash", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/firefox-flash", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -40555,26 +33273,26 @@ { "name": "flash", "url": "https://quay.io/repository/biocontainers/flash", - "popularity": 14.0 + "popularity": 17.0 }, { "name": "flash", - "url": "https://quay.io/repository/logiq/flash", + "url": "https://quay.io/repository/staphb/flash", "popularity": 0.0 }, { "name": "flash", - "url": "https://quay.io/repository/refgenomics/flash", + "url": "https://quay.io/repository/kmhernan/flash", "popularity": 0.0 }, { "name": "flash", - "url": "https://quay.io/repository/kmhernan/flash", + "url": "https://quay.io/repository/logiq/flash", "popularity": 0.0 }, { "name": "flash", - "url": "https://quay.io/repository/staphb/flash", + "url": "https://quay.io/repository/refgenomics/flash", "popularity": 0.0 } ], @@ -40582,26 +33300,26 @@ { "name": "flash", "url": "https://quay.io/repository/biocontainers/flash", - "popularity": 14.0 + "popularity": 17.0 }, { "name": "flash", - "url": "https://quay.io/repository/logiq/flash", + "url": "https://quay.io/repository/staphb/flash", "popularity": 0.0 }, { - "name": "flash-brew-beetle", - "url": "https://quay.io/repository/logiq/flash-brew-beetle", + "name": "the-most-essential-functions-of-your-car-that-you-should-be-aware-of", + "url": "https://quay.io/repository/ahlammajid298/the-most-essential-functions-of-your-car-that-you-should-be-aware-of", "popularity": 0.0 }, { - "name": "flash-brew-coffee", - "url": "https://quay.io/repository/logiq/flash-brew-coffee", + "name": "memorysuppliers", + "url": "https://quay.io/repository/memorysuppliers1234/memorysuppliers", "popularity": 0.0 }, { "name": "flash", - "url": "https://quay.io/repository/refgenomics/flash", + "url": "https://quay.io/repository/kmhernan/flash", "popularity": 0.0 } ] @@ -40618,22 +33336,37 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "hashicorp/http-echo", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 50, + "Docker_Url": "https://hub.docker.com/r/hashicorp/http-echo", + "OS": [ + "linux" ] } ] @@ -40644,27 +33377,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "nginx-ingress-controller", - "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1244426.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -40688,14 +33421,19 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/snyk/runtime-fixtures", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux", + "windows" + ] + }, + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + "linux" ] }, { @@ -40706,14 +33444,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -40724,32 +33455,7 @@ "star_count": 10, "Docker_Url": "https://hub.docker.com/r/bitnami/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "java", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 1976, - "Docker_Url": "https://hub.docker.com/_/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -40760,27 +33466,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "standard-environment", - "url": "https://quay.io/repository/domino/standard-environment", - "popularity": 52054.0 + "popularity": 5835615.0 }, { "name": "astro-runtime", "url": "https://quay.io/repository/astronomer/astro-runtime", - "popularity": 33764.0 + "popularity": 25702.0 }, { "name": "vuln-runtime-scanner", "url": "https://quay.io/repository/sysdig/vuln-runtime-scanner", - "popularity": 32686.0 + "popularity": 30691.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 15556.0 } ] }, @@ -40797,21 +33503,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "bitnami/node", + "name": "vmware/node", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 64, - "Docker_Url": "https://hub.docker.com/r/bitnami/node", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/vmware/node", + "OS": [ + "" + ] + }, + { + "name": "circleci/node", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 129, + "Docker_Url": "https://hub.docker.com/r/circleci/node", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -40822,32 +33532,18 @@ "star_count": 13, "Docker_Url": "https://hub.docker.com/r/cimg/node", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/node", + "name": "bitnami/node", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 130, - "Docker_Url": "https://hub.docker.com/r/circleci/node", + "star_count": 66, + "Docker_Url": "https://hub.docker.com/r/bitnami/node", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -40855,57 +33551,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 11713, + "star_count": 11948, "Docker_Url": "https://hub.docker.com/_/node", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -40916,27 +33565,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "node", "url": "https://quay.io/repository/calico/node", - "popularity": 15180319.0 + "popularity": 10455738.0 }, { "name": "csi-node-driver-registrar", "url": "https://quay.io/repository/k8scsi/csi-node-driver-registrar", - "popularity": 1098883.0 + "popularity": 1005970.0 }, { "name": "node-image-analyzer", "url": "https://quay.io/repository/sysdig/node-image-analyzer", - "popularity": 332278.0 + "popularity": 331946.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171910.0 + "popularity": 200677.0 } ] }, @@ -40953,39 +33602,26 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "bitnami/rails", - "Official image": false, - "Verified Publisher": true, + "name": "rails", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 29, - "Docker_Url": "https://hub.docker.com/r/bitnami/rails", + "star_count": 903, + "Docker_Url": "https://hub.docker.com/_/rails", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "", + "linux" ] }, { - "name": "rails", - "Official image": true, - "Verified Publisher": false, + "name": "bitnami/rails", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 902, - "Docker_Url": "https://hub.docker.com/_/rails", + "star_count": 29, + "Docker_Url": "https://hub.docker.com/r/bitnami/rails", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -40993,65 +33629,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2150, + "star_count": 2171, "Docker_Url": "https://hub.docker.com/_/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -41062,14 +33643,7 @@ "star_count": 21, "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -41077,17 +33651,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/cimg/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -41098,27 +33665,27 @@ { "name": "ruby-27-centos7", "url": "https://quay.io/repository/centos7/ruby-27-centos7", - "popularity": 259203.0 + "popularity": 265602.0 }, { "name": "ruby-26-centos7", "url": "https://quay.io/repository/centos7/ruby-26-centos7", - "popularity": 172628.0 + "popularity": 160457.0 }, { "name": "ruby-25-centos7", "url": "https://quay.io/repository/centos7/ruby-25-centos7", - "popularity": 73632.0 + "popularity": 64600.0 }, { "name": "ruby-27", "url": "https://quay.io/repository/openshifttest/ruby-27", - "popularity": 17897.0 + "popularity": 21506.0 }, { "name": "ruby-cron", "url": "https://quay.io/repository/palettecloud/ruby-cron", - "popularity": 9561.0 + "popularity": 5870.0 } ] }, @@ -41158,7 +33725,7 @@ { "name": "powerstore_exporter", "url": "https://quay.io/repository/kckecheng/powerstore_exporter", - "popularity": 11.0 + "popularity": 0.0 }, { "name": "emc-neo-antigen", @@ -41183,7 +33750,19 @@ "Application Lifecycle Management": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "objectscale/management-gateway", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/management-gateway", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], @@ -41191,27 +33770,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 + "popularity": 1788665.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 } ] }, @@ -41264,14 +33843,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -41282,14 +33854,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -41300,27 +33865,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "coreos-assembler", "url": "https://quay.io/repository/coreos-assembler/coreos-assembler", - "popularity": 25254.0 + "popularity": 85682.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { - "name": "rust", - "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2351.0 + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 14334.0 } ] }, @@ -41341,17 +33906,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 266, + "star_count": 279, "Docker_Url": "https://hub.docker.com/r/atlassian/jira-software", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "objectscale/management-gateway", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/management-gateway", + "OS": [ + "linux" ] } ] @@ -41362,27 +33931,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { - "name": "postgresql-10-centos7", - "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 252177.0 } ] }, @@ -41397,7 +33966,19 @@ "Business Object Reports": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "objectscale/object-heads", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/object-heads", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], @@ -41405,27 +33986,27 @@ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 - }, - { - "name": "teleport", - "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 137803.0 + "popularity": 261792.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 + }, + { + "name": "teleport", + "url": "https://quay.io/repository/gravitational/teleport", + "popularity": 160543.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 151149.0 + "popularity": 179600.0 } ] }, @@ -41441,6 +34022,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "kong/kong-gateway", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 15, + "Docker_Url": "https://hub.docker.com/r/kong/kong-gateway", + "OS": [ + "linux" + ] + }, { "name": "express-gateway", "Official image": true, @@ -41449,38 +34041,7 @@ "star_count": 66, "Docker_Url": "https://hub.docker.com/_/express-gateway", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -41491,76 +34052,30 @@ "star_count": 62, "Docker_Url": "https://hub.docker.com/_/kaazing-gateway", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "", + "linux" ] }, { - "name": "ibmcom/voice-gateway-so", + "name": "couchbase/sync-gateway", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 11, - "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-so", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/voice-gateway-mr", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 9, - "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-mr", + "star_count": 46, + "Docker_Url": "https://hub.docker.com/r/couchbase/sync-gateway", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/secure-gateway-client", + "name": "ibmcom/voice-gateway-so", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/ibmcom/secure-gateway-client", + "star_count": 11, + "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-so", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -41568,30 +34083,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 313212.0 + }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "ambassador", - "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "popularity": 5835615.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 337637.0 } ] }, @@ -41607,6 +34122,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "objectscale/object-heads", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/object-heads", + "OS": [ + "linux" + ] + }, { "name": "intel/object-detection", "Official image": false, @@ -41615,14 +34141,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/object-detection", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -41633,27 +34152,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 151149.0 + "popularity": 179600.0 } ] }, @@ -41674,17 +34193,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 9, + "star_count": 10, "Docker_Url": "https://hub.docker.com/r/snyk/broker", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -41695,14 +34207,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/object-detection", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -41713,27 +34218,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 + "popularity": 313212.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 367678.0 } ] }, @@ -41757,14 +34262,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -41775,14 +34273,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -41793,27 +34284,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { - "name": "cloud-native-postgresql", - "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 } ] }, @@ -41833,30 +34324,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "zen-data-sorcerer", - "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 225217.0 - }, { "name": "metering-data-manager", "url": "https://quay.io/repository/opencloudio/metering-data-manager", - "popularity": 212512.0 + "popularity": 169109.0 }, { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "name": "zen-data-sorcerer", + "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", + "popularity": 143533.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 } ] }, @@ -41877,54 +34368,41 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 48, + "star_count": 49, "Docker_Url": "https://hub.docker.com/r/ibmcom/informix-developer-database", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] }, { - "quay_exact_images": [ - { - "name": "database", - "url": "https://quay.io/repository/deisci/database", - "popularity": 0.0 - } - ], + "quay_exact_images": [], "quay_top_images": [ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 - }, - { - "name": "billing-sidecar", - "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 216548.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 151149.0 + "popularity": 179600.0 + }, + { + "name": "vault-creds", + "url": "https://quay.io/repository/uswitch/vault-creds", + "popularity": 238374.0 } ] }, @@ -41935,18 +34413,18 @@ "name": "tidb-operator", "normalized_name": "tidb-operator", "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", - "stars": 7, + "stars": 8, "display_name": "TiDB Operator", "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", "version": "1.3.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 8, - "medium": 31, - "unknown": 8, - "critical": 2 + "low": 8, + "high": 48, + "medium": 45, + "unknown": 35, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, @@ -42071,19 +34549,19 @@ "stars": 0, "display_name": "VerticaDB Operator", "description": "Operator that manages a Vertica Eon Mode database.", - "version": "1.6.0", + "version": "1.7.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 + "high": 2, + "medium": 1, + "unknown": 2, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656569037, + "ts": 1661525075, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -42098,30 +34576,30 @@ }, "git_repos": "https://github.com/vertica/vertica-kubernetes", "container_images": [ - "docker.io/vertica/verticadb-operator:1.6.0" + "docker.io/vertica/verticadb-operator:1.7.0" ] }, { - "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", - "name": "elastic-cloud-eck", - "normalized_name": "elastic-cloud-eck", - "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, - "display_name": "Elasticsearch (ECK) Operator", - "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 16, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, + "low": 29, + "high": 2, + "medium": 31, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657006653, + "ts": 1662748237, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -42134,30 +34612,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/elastic/cloud-on-k8s", + "git_repos": "https://github.com/CrunchyData/postgres-operator", "container_images": [] }, { - "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", - "name": "postgresql", - "normalized_name": "postgresql", - "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, - "display_name": "Crunchy Postgres for Kubernetes", - "description": "Production Postgres Made Easy", - "version": "5.1.2", + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 14, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.4.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, - "unknown": 0, - "critical": 0 + "low": 0, + "high": 1, + "medium": 0, + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657571435, + "ts": 1661782377, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -42170,7 +34648,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/CrunchyData/postgres-operator", + "git_repos": "https://github.com/elastic/cloud-on-k8s", "container_images": [] }, { @@ -42178,7 +34656,7 @@ "name": "redis-operator", "normalized_name": "redis-operator", "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, + "stars": 12, "display_name": "Redis Operator", "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", "version": "0.11.0", @@ -42186,9 +34664,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -42216,7 +34694,7 @@ "name": "clickhouse", "normalized_name": "clickhouse", "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", - "stars": 5, + "stars": 7, "display_name": "Altinity Operator for ClickHouse", "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", "version": "0.18.3", @@ -42252,10 +34730,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, - "unknown": 1, + "low": 31, + "high": 13, + "medium": 61, + "unknown": 4, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -42281,7 +34759,7 @@ "name": "postgres-operator", "normalized_name": "postgres-operator", "logo_image_id": "932e96b3-34be-4e2f-bd53-b30903d20a2d", - "stars": 3, + "stars": 4, "display_name": "Postgres-Operator", "description": "Postgres operator creates and manages PostgreSQL clusters running in Kubernetes.", "version": "1.4.0", @@ -42317,7 +34795,7 @@ "name": "couchbase-enterprise", "normalized_name": "couchbase-enterprise", "logo_image_id": "de10af36-40f2-4816-bb42-577c8297b14e", - "stars": 2, + "stars": 3, "display_name": "Couchbase Operator", "description": "The Couchbase Autonomous Operator allows users to easily deploy, manage, and maintain Couchbase deployments", "version": "2.3.0", @@ -42325,8 +34803,8 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, + "high": 1, + "medium": 1, "unknown": 0, "critical": 0 }, @@ -42394,19 +34872,19 @@ "stars": 1, "display_name": "EDB Postgres for Kubernetes", "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", - "version": "1.15.1", + "version": "1.17.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, + "low": 29, "high": 1, - "medium": 32, - "unknown": 0, - "critical": 0 + "medium": 26, + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1654016342, + "ts": 1662658187, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -42467,10 +34945,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 1, - "medium": 1, - "unknown": 2, + "low": 1, + "high": 10, + "medium": 4, + "unknown": 8, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -42504,9 +34982,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 2, - "medium": 0, - "unknown": 4, + "high": 9, + "medium": 2, + "unknown": 8, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -42566,19 +35044,19 @@ "stars": 0, "display_name": "Hazelcast Platform Operator", "description": "Install Hazelcast clusters in Kubernetes environments.", - "version": "5.3.0", + "version": "5.4.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, - "unknown": 1, + "low": 29, + "high": 7, + "medium": 27, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655899199, + "ts": 1662379199, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -42593,7 +35071,7 @@ }, "git_repos": "https://docs.hazelcast.com/operator/latest/", "container_images": [ - "docker.io/hazelcast/hazelcast-platform-operator:5.3" + "docker.io/hazelcast/hazelcast-platform-operator:5.4" ] }, { @@ -42604,19 +35082,19 @@ "stars": 0, "display_name": "Infinispan Operator", "description": "Create and manage Infinispan clusters.", - "version": "2.2.4", + "version": "2.2.5", "deprecated": false, "signed": false, "security_report_summary": { - "low": 46, - "high": 6, - "medium": 89, - "unknown": 1, + "low": 29, + "high": 10, + "medium": 35, + "unknown": 5, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1647352835, + "ts": 1659432638, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -42631,7 +35109,7 @@ }, "git_repos": "https://github.com/infinispan/infinispan-operator", "container_images": [ - "quay.io/infinispan/operator:2.2.4.Final" + "quay.io/infinispan/operator:2.2.5.Final" ] } ] @@ -42649,30 +35127,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "zen-data-sorcerer", - "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 225217.0 - }, { "name": "metering-data-manager", "url": "https://quay.io/repository/opencloudio/metering-data-manager", - "popularity": 212512.0 + "popularity": 169109.0 }, { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "name": "zen-data-sorcerer", + "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", + "popularity": 143533.0 }, { - "name": "s2i-generic-data-science-notebook", - "url": "https://quay.io/repository/thoth-station/s2i-generic-data-science-notebook", - "popularity": 22218.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 101368.0 } ] }, @@ -42692,30 +35170,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "common-web-ui", - "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 - }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -42738,27 +35216,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21441.0 + "popularity": 5835615.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 162027.0 } ] }, @@ -42779,17 +35257,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 7, + "star_count": 9, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -42797,17 +35268,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -42815,35 +35279,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, + "star_count": 4, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-openldap", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/verify-access-operator", + "name": "ibmcom/verify-access-runtime", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-operator", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-runtime", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -42851,17 +35301,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -42872,27 +35315,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "popularity": 337637.0 }, { "name": "concourse-ssh-resource", "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", - "popularity": 160391.0 + "popularity": 142479.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 112605.0 + "popularity": 111692.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 } ] }, @@ -42915,27 +35358,27 @@ { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1359497.0 - }, - { - "name": "ambassador", - "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "popularity": 1788665.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 337637.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 } ] }, @@ -42952,29 +35395,14 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/system-upgrade-controller", + "name": "rancher/system-agent-installer-k3s", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/rancher/system-upgrade-controller", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-k3s", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -42985,38 +35413,8 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rke2", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.17763.3165", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.20348.825", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux", + "windows" ] } ] @@ -43027,27 +35425,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 5835615.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 } ] }, @@ -43068,17 +35466,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -43086,25 +35477,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -43115,27 +35491,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 395380.0 + "popularity": 313212.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 1442128.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 857217.0 + "popularity": 1013505.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "popularity": 337637.0 }, { - "name": "cilium", - "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 270648.0 } ] }, @@ -43159,14 +35535,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/astronomerinc/ap-kube-state", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -43177,27 +35546,27 @@ { "name": "kube-state-metrics", "url": "https://quay.io/repository/coreos/kube-state-metrics", - "popularity": 958588.0 + "popularity": 801542.0 }, { "name": "origin-openshift-state-metrics", "url": "https://quay.io/repository/openshift/origin-openshift-state-metrics", - "popularity": 5975.0 - }, - { - "name": "origin-kube-state-metrics", - "url": "https://quay.io/repository/openshift/origin-kube-state-metrics", - "popularity": 3507.0 + "popularity": 3948.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 16654.0 }, { "name": "kafka-bridge", "url": "https://quay.io/repository/strimzi/kafka-bridge", - "popularity": 14164.0 + "popularity": 19967.0 } ] }, @@ -43220,27 +35589,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 300956.0 + "popularity": 218521.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 329446.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 368485.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 160924.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -43255,35 +35624,47 @@ "Simple Object Access Protocol": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "objectscale/object-heads", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/objectscale/object-heads", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], "quay_top_images": [ - { - "name": "ambassador", - "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 - }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { - "name": "postgresql-12-centos7", - "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 337637.0 }, { - "name": "concourse-ssh-resource", - "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", - "popularity": 160391.0 + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 261792.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 179600.0 } ] }, @@ -43306,27 +35687,27 @@ { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 101368.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 + "popularity": 123109.0 }, { - "name": "che-plugin-artifacts-broker", - "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19392.0 + "name": "kata-deploy", + "url": "https://quay.io/repository/kata-containers/kata-deploy", + "popularity": 49830.0 }, { "name": "spark-operator", "url": "https://quay.io/repository/radanalyticsio/spark-operator", - "popularity": 25375.0 + "popularity": 22746.0 }, { - "name": "kata-deploy", - "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 21496.0 + "name": "centos-stream", + "url": "https://quay.io/repository/containerdisks/centos-stream", + "popularity": 16533.0 } ] }, @@ -43342,22 +35723,48 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server-sandbox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", + "OS": [ + "linux" ] }, { @@ -43368,14 +35775,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -43386,27 +35786,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 }, { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 133096.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -43459,40 +35859,37 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "okteto/cloud-proxy", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/cloud-proxy", + "OS": [ + "linux" + ] + }, { "name": "google/cloud-sdk", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 383, + "star_count": 388, "Docker_Url": "https://hub.docker.com/r/google/cloud-sdk", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/cloud-builders-gcs-fetcher-ppc64le", + "name": "airbyte/cloud-temporal-migrator", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/cloud-builders-gcs-fetcher-ppc64le", + "Docker_Url": "https://hub.docker.com/r/airbyte/cloud-temporal-migrator", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -43503,27 +35900,27 @@ { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1158880.0 + "popularity": 1917609.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 619283.0 + "popularity": 734625.0 }, { "name": "cloud-scanning", "url": "https://quay.io/repository/sysdig/cloud-scanning", - "popularity": 167557.0 + "popularity": 167992.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 } ] }, @@ -43542,9 +35939,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 1, - "unknown": 1, + "high": 7, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -43577,10 +35974,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 47, - "high": 11, - "medium": 103, - "unknown": 1, + "low": 87, + "high": 23, + "medium": 131, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -43647,15 +36044,15 @@ "stars": 1, "display_name": "Sosivio Autonomuous Cloud Native", "description": "Sosivio Autonomuous Cloud Native", - "version": "1.4.1", + "version": "1.4.4", "deprecated": false, "signed": false, "security_report_summary": { - "low": 56, - "high": 2, - "medium": 69, + "low": 8, + "high": 31, + "medium": 18, "unknown": 12, - "critical": 0 + "critical": 2 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -43674,7 +36071,7 @@ }, "git_repos": "https://github.com/Sosivio/operator", "container_images": [ - "quay.io/sosivio/sosivio-operator:v1.4.1-78", + "quay.io/sosivio/sosivio-operator:v1.4.4-85", "quay.io/sosivio/sosivio-operator", "quay.io/sosivio/kube-rbac-proxy", "quay.io/sosivio/nsq", @@ -43709,10 +36106,10 @@ "signed": false, "security_report_summary": { "low": 2, - "high": 31, - "medium": 11, - "unknown": 1, - "critical": 5 + "high": 41, + "medium": 13, + "unknown": 4, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -43776,19 +36173,19 @@ "stars": 1, "display_name": "EDB Postgres for Kubernetes", "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", - "version": "1.15.1", + "version": "1.17.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, + "low": 29, "high": 1, - "medium": 32, - "unknown": 0, - "critical": 0 + "medium": 26, + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1654016342, + "ts": 1662658187, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -43811,22 +36208,22 @@ "name": "elastic-cloud-eck", "normalized_name": "elastic-cloud-eck", "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, + "stars": 14, "display_name": "Elasticsearch (ECK) Operator", "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", + "version": "2.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 1, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657006653, + "ts": 1661782377, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -43847,7 +36244,7 @@ "name": "api-operator", "normalized_name": "api-operator", "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", - "stars": 1, + "stars": 2, "display_name": "API Operator for Kubernetes", "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", "version": "2.0.0", @@ -43925,9 +36322,9 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, + "low": 71, + "high": 3, + "medium": 85, "unknown": 0, "critical": 0 }, @@ -44028,15 +36425,22 @@ "name": "knative-operator", "normalized_name": "knative-operator", "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, + "stars": 13, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", + "version": "1.7.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 0, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1626134400, + "ts": 1661385600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -44064,9 +36468,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, + "high": 5, + "medium": 1, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -44100,9 +36504,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 2, - "medium": 0, - "unknown": 4, + "high": 9, + "medium": 2, + "unknown": 8, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -44280,27 +36684,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 43570374.0 + "popularity": 91532409.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -44323,27 +36727,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "device-plugin-network-bridge", "url": "https://quay.io/repository/kubevirt/device-plugin-network-bridge", - "popularity": 170756.0 + "popularity": 131664.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171910.0 + "popularity": 200677.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 104567.0 + "popularity": 222040.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 + "popularity": 123109.0 } ] }, @@ -44366,27 +36770,27 @@ { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { - "name": "business-central-workbench-showcase", - "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 657.0 + "name": "business-central-workbench", + "url": "https://quay.io/repository/kiegroup/business-central-workbench", + "popularity": 777.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 }, { "name": "vouch-proxy", "url": "https://quay.io/repository/vouch/vouch-proxy", - "popularity": 24227.0 + "popularity": 10093.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 } ] }, @@ -44410,32 +36814,7 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "grafana/enterprise-metrics", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -44446,14 +36825,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-logs", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -44464,32 +36836,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-traces", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/service-catalog", + "name": "grafana/enterprise-metrics", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/bitnami/service-catalog", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -44497,30 +36855,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "common-service-operator", - "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 300956.0 - }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 329446.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 368485.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 430133.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 222040.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -44536,22 +36894,37 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -44562,32 +36935,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server-sandbox", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -44595,30 +36954,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "concourse-file-resource", - "url": "https://quay.io/repository/henry40408/concourse-file-resource", - "popularity": 662317.0 - }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -44641,27 +37000,27 @@ { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "popularity": 71385.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 43577.0 + "popularity": 7129.0 }, { "name": "rseqc", "url": "https://quay.io/repository/biocontainers/rseqc", - "popularity": 8903.0 + "popularity": 6505.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 } ] }, @@ -44678,21 +37037,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "bitnami/http-trigger-controller", + "name": "percona/pmm-client", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/bitnami/http-trigger-controller", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/percona/pmm-client", + "OS": [ + "linux" + ] + }, + { + "name": "hashicorp/http-echo", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 50, + "Docker_Url": "https://hub.docker.com/r/hashicorp/http-echo", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -44703,27 +37066,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { - "name": "nginx-ingress-controller", - "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1244426.0 - }, - { - "name": "haproxy-ingress", - "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 857217.0 + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 1442128.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 + }, + { + "name": "haproxy-ingress", + "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", + "popularity": 1013505.0 } ] }, @@ -44746,27 +37109,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "ambassador", - "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "popularity": 5835615.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 337637.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 } ] }, @@ -44789,27 +37152,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "monitoring-stack-operator-catalog", - "url": "https://quay.io/repository/tsisodia10/monitoring-stack-operator-catalog", - "popularity": 19064.0 + "popularity": 5835615.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 101368.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "popularity": 71385.0 + }, + { + "name": "aes", + "url": "https://quay.io/repository/datawire/aes", + "popularity": 87151.0 } ] }, @@ -44830,89 +37193,54 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 7, + "star_count": 9, "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/verify-access-postgresql", + "name": "ibmcom/verify-access-openldap", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-postgresql", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-openldap", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/verify-access-openldap", + "name": "ibmcom/verify-access-postgresql", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-openldap", + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/verify-access-wrp", + "name": "ibmcom/verify-access-dsc", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/verify-access-dsc", + "name": "ibmcom/verify-access-runtime", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-runtime", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -44923,27 +37251,27 @@ { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "popularity": 337637.0 }, { "name": "concourse-ssh-resource", "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", - "popularity": 160391.0 + "popularity": 142479.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 112605.0 - }, - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 111692.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 101368.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 82922.0 } ] }, @@ -44965,16 +37293,7 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/json", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] + "OS": [] } ], "dockerhub_top_images": [ @@ -44985,15 +37304,46 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/json", + "OS": [] + }, + { + "name": "ibmcom/json-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/json-ppc64le", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/json-simple", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/json-simple", + "OS": [] + }, + { + "name": "ibmcom/json-smart", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/json-smart", + "OS": [] + }, + { + "name": "ibmcom/json-smart-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/json-smart-ppc64le", + "OS": [ + "linux" ] } ] @@ -45004,27 +37354,27 @@ { "name": "json-mock", "url": "https://quay.io/repository/cilium/json-mock", - "popularity": 16628.0 + "popularity": 60459.0 }, { "name": "json-exporter", "url": "https://quay.io/repository/prometheuscommunity/json-exporter", - "popularity": 21442.0 + "popularity": 22970.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 126512.0 - }, - { - "name": "cloud-native-postgresql", - "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 + "popularity": 160924.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13670.0 + "popularity": 18913.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 14334.0 } ] }, @@ -45043,9 +37393,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, + "high": 4, + "medium": 1, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -45079,22 +37429,48 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server-sandbox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", + "OS": [ + "linux" ] }, { @@ -45105,14 +37481,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -45123,27 +37492,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 }, { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 133096.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -45159,22 +37528,37 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -45185,32 +37569,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server-sandbox", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -45218,30 +37588,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "concourse-file-resource", - "url": "https://quay.io/repository/henry40408/concourse-file-resource", - "popularity": 662317.0 - }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -45257,58 +37627,59 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-nomad", + "name": "couchbase/server-sandbox", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "circleci/server-nomad", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -45319,27 +37690,27 @@ { "name": "oauth2-proxy", "url": "https://quay.io/repository/oauth2-proxy/oauth2-proxy", - "popularity": 3254647.0 + "popularity": 2989452.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -45386,38 +37757,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/system-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -45428,22 +37768,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/system-upgrade-controller", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -45454,14 +37779,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rancher", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -45472,22 +37790,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-k3s", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -45498,38 +37801,8 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rke2", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.17763.3165", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.20348.825", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux", + "windows" ] } ] @@ -45540,27 +37813,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 } ] }, @@ -45575,34 +37848,57 @@ "Mobile": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "couchbase/mobile-testkit", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/couchbase/mobile-testkit", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/qe-mobile-greenboard", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/couchbase/qe-mobile-greenboard", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], "quay_top_images": [ { - "name": "mobile-developer-console-operator", - "url": "https://quay.io/repository/aerogear/mobile-developer-console-operator", - "popularity": 0.0 + "name": "mobile-security-framework-mobsf", + "url": "https://quay.io/repository/amal5alshaikh/mobile-security-framework-mobsf", + "popularity": 1932.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 - }, - { - "name": "mobile-security-framework-mobsf", - "url": "https://quay.io/repository/amal5alshaikh/mobile-security-framework-mobsf", - "popularity": 1947.0 + "popularity": 71385.0 }, { "name": "mobile-simulator", "url": "https://quay.io/repository/wdovey/mobile-simulator", + "popularity": 1.0 + }, + { + "name": "boga88-login-gudang288-link-alternatif-boga-88-daftar-gudang-288-situs-judi-togel-casino-poker-bola-online-terbaru-terbesar-terpercaya-indonesia-bandar-agen-bo-apk-download-wap-mobile-register", + "url": "https://quay.io/repository/slotgacor/boga88-login-gudang288-link-alternatif-boga-88-daftar-gudang-288-situs-judi-togel-casino-poker-bola-online-terbaru-terbesar-terpercaya-indonesia-bandar-agen-bo-apk-download-wap-mobile-register", "popularity": 0.0 }, { - "name": "mobile-developer-console", - "url": "https://quay.io/repository/aerogear/mobile-developer-console", + "name": "total4d-mustang303-kinghorsetoto-jambitoto-vava4d-daftar-situs-total-4d-mustang-303-king-horse-toto-jambi-toto-vava-4d-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022", + "url": "https://quay.io/repository/zulzeagleed/total4d-mustang303-kinghorsetoto-jambitoto-vava4d-daftar-situs-total-4d-mustang-303-king-horse-toto-jambi-toto-vava-4d-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022", "popularity": 0.0 } ] @@ -45643,27 +37939,27 @@ { "name": "saas-operator-catalog", "url": "https://quay.io/repository/3scale/saas-operator-catalog", - "popularity": 1010.0 + "popularity": 1017.0 }, { "name": "push-saas-metrics", "url": "https://quay.io/repository/app-sre/push-saas-metrics", - "popularity": 260.0 + "popularity": 210.0 }, { - "name": "trial-saas", - "url": "https://quay.io/repository/opsmxpublic/trial-saas", - "popularity": 36.0 + "name": "saas-operator", + "url": "https://quay.io/repository/3scale/saas-operator", + "popularity": 2.0 }, { "name": "kiwi", "url": "https://quay.io/repository/kiwitcms/kiwi", - "popularity": 8.0 + "popularity": 2.0 }, { "name": "testssl", "url": "https://quay.io/repository/jumanjiman/testssl", - "popularity": 8.0 + "popularity": 2.0 } ] }, @@ -45679,6 +37975,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "rancher/network-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/network-manager", + "OS": [ + "linux" + ] + }, { "name": "rancher/network-diagnostics", "Official image": false, @@ -45687,32 +37994,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/network-diagnostics", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/network-manager", + "name": "rancher/network-policy-manager", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/rancher/network-manager", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/network-policy-manager", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -45723,27 +38016,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "flannel", "url": "https://quay.io/repository/coreos/flannel", - "popularity": 1741937.0 + "popularity": 1217038.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 } ] }, @@ -45766,27 +38059,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 }, { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 133096.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -45806,30 +38099,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "virtual-environments", - "url": "https://quay.io/repository/catthehacker/virtual-environments", - "popularity": 62128.0 - }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "kata-deploy", "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 21496.0 - }, - { - "name": "appliance", - "url": "https://quay.io/repository/ubersmith/appliance", - "popularity": 5.0 + "popularity": 49830.0 }, { "name": "chlaus", "url": "https://quay.io/repository/appuio/chlaus", - "popularity": 1475.0 + "popularity": 672.0 + }, + { + "name": "federatorai-operator-ubi", + "url": "https://quay.io/repository/prophetstor/federatorai-operator-ubi", + "popularity": 236.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/catthehacker/ubuntu", + "popularity": 81.0 } ] }, @@ -45851,19 +38144,29 @@ { "name": "webtop", "url": "https://quay.io/repository/linuxserver.io/webtop", - "popularity": 539.0 + "popularity": 315.0 }, { "name": "webtop", "url": "https://quay.io/repository/truecharts/webtop", - "popularity": 6.0 + "popularity": 159.0 + }, + { + "name": "webtop", + "url": "https://quay.io/repository/techprober/webtop", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "webtop", "url": "https://quay.io/repository/linuxserver.io/webtop", - "popularity": 539.0 + "popularity": 315.0 + }, + { + "name": "webtop", + "url": "https://quay.io/repository/truecharts/webtop", + "popularity": 159.0 }, { "name": "lspipepr-webtop", @@ -45871,19 +38174,14 @@ "popularity": 0.0 }, { - "name": "webtop-ubuntu-base", - "url": "https://quay.io/repository/ajhalili2006/webtop-ubuntu-base", + "name": "webtop", + "url": "https://quay.io/repository/techprober/webtop", "popularity": 0.0 }, { "name": "webtop-alpine-xfce4", "url": "https://quay.io/repository/ajhalili2006/webtop-alpine-xfce4", "popularity": 0.0 - }, - { - "name": "webtop", - "url": "https://quay.io/repository/truecharts/webtop", - "popularity": 6.0 } ] }, @@ -45899,58 +38197,59 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-nomad", + "name": "couchbase/server-sandbox", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "circleci/server-nomad", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -45961,27 +38260,27 @@ { "name": "oauth2-proxy", "url": "https://quay.io/repository/oauth2-proxy/oauth2-proxy", - "popularity": 3254647.0 + "popularity": 2989452.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 } ] }, @@ -46005,14 +38304,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/google/apigee-cassandra-backup-utility", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -46022,44 +38314,39 @@ { "name": "utility", "url": "https://quay.io/repository/theiagen/utility", - "popularity": 230211.0 + "popularity": 65580.0 }, { "name": "utility", "url": "https://quay.io/repository/rbean/utility", - "popularity": 71.0 - }, - { - "name": "utility", - "url": "https://quay.io/repository/dyleck/utility", - "popularity": 2.0 + "popularity": 72.0 } ], "quay_top_images": [ { "name": "utility", "url": "https://quay.io/repository/theiagen/utility", - "popularity": 230211.0 + "popularity": 65580.0 }, { - "name": "terraform-docs", - "url": "https://quay.io/repository/terraform-docs/terraform-docs", - "popularity": 7824.0 + "name": "cloud-utility", + "url": "https://quay.io/repository/linxianer12/cloud-utility", + "popularity": 37086.0 }, { - "name": "image-exporter", - "url": "https://quay.io/repository/plotly/image-exporter", - "popularity": 2116.0 + "name": "terraform-docs", + "url": "https://quay.io/repository/terraform-docs/terraform-docs", + "popularity": 10838.0 }, { "name": "gawk", "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 20761.0 + "popularity": 3337.0 }, { - "name": "drain-cleaner", - "url": "https://quay.io/repository/strimzi/drain-cleaner", - "popularity": 2883.0 + "name": "image-exporter", + "url": "https://quay.io/repository/plotly/image-exporter", + "popularity": 4541.0 } ] }, @@ -46083,14 +38370,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -46101,27 +38381,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 139218.0 - }, - { - "name": "citrix-k8s-node-controller", - "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39408.0 + "popularity": 122737.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39170.0 + "popularity": 39563.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41708.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1982.0 + "popularity": 2042.0 }, { - "name": "citrix-ipam-controller", - "url": "https://quay.io/repository/citrix/citrix-ipam-controller", - "popularity": 393.0 + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 378.0 } ] }, @@ -46145,14 +38425,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -46163,27 +38436,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 139218.0 - }, - { - "name": "citrix-k8s-node-controller", - "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39408.0 + "popularity": 122737.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39170.0 + "popularity": 39563.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41708.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1982.0 + "popularity": 2042.0 }, { - "name": "citrix-ipam-controller", - "url": "https://quay.io/repository/citrix/citrix-ipam-controller", - "popularity": 393.0 + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 378.0 } ] }, @@ -46207,14 +38480,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -46225,27 +38491,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 139218.0 - }, - { - "name": "citrix-k8s-node-controller", - "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39408.0 + "popularity": 122737.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39170.0 + "popularity": 39563.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41708.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1982.0 + "popularity": 2042.0 }, { - "name": "citrix-ipam-controller", - "url": "https://quay.io/repository/citrix/citrix-ipam-controller", - "popularity": 393.0 + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 378.0 } ] }, @@ -46269,14 +38535,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/security-tools", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -46287,22 +38546,7 @@ "star_count": 4, "Docker_Url": "https://hub.docker.com/r/rancher/security-scan", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -46313,30 +38557,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/security-advisor-onboarding", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -46347,27 +38568,27 @@ { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 1442128.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 370506.0 + "popularity": 367678.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 165365.0 + "popularity": 252177.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 117328.0 + "popularity": 167566.0 } ] }, @@ -46391,30 +38612,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/vm", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "rancher/vm-frontend", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/vm-frontend", + "OS": [ + "linux" ] } ] @@ -46425,27 +38634,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3111.0 + "popularity": 8009.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 4180.0 } ] }, @@ -46466,29 +38675,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "cma-vmware", - "url": "https://quay.io/repository/samsung_cnct/cma-vmware", - "popularity": 0.0 + "name": "kubevirt-vmware", + "url": "https://quay.io/repository/kubevirt/kubevirt-vmware", + "popularity": 39.0 }, { - "name": "cm-vmware-bootstrap", - "url": "https://quay.io/repository/samsung_cnct/cm-vmware-bootstrap", - "popularity": 0.0 + "name": "vmware-vsphere-csi-driver-operator", + "url": "https://quay.io/repository/gnufied/vmware-vsphere-csi-driver-operator", + "popularity": 3.0 }, { - "name": "vmware-gateway", - "url": "https://quay.io/repository/amastbau/vmware-gateway", - "popularity": 130.0 + "name": "vmware-ee", + "url": "https://quay.io/repository/ziadsaleemi/vmware-ee", + "popularity": 2.0 }, { - "name": "kubevirt-vmware", - "url": "https://quay.io/repository/kubevirt/kubevirt-vmware", - "popularity": 32.0 + "name": "prometheus-vcd-sd", + "url": "https://quay.io/repository/promhippie/prometheus-vcd-sd", + "popularity": 150.0 }, { - "name": "vmware", - "url": "https://quay.io/repository/nickarellano/vmware", - "popularity": 16.0 + "name": "awx-custom-ee", + "url": "https://quay.io/repository/masairatnam/awx-custom-ee", + "popularity": 2.0 } ] }, @@ -46504,22 +38713,26 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -46530,27 +38743,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -46574,14 +38787,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/grafana/query-frontend", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -46592,22 +38798,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/grafana/query-tee", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -46618,14 +38809,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -46636,14 +38820,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -46654,27 +38831,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "query", - "url": "https://quay.io/repository/sisense/query", - "popularity": 2406.0 - }, - { - "name": "jaeger-query", - "url": "https://quay.io/repository/jaegertracing/jaeger-query", - "popularity": 9826.0 + "popularity": 5835615.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102060.0 + "popularity": 123109.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30583.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 16654.0 } ] }, @@ -46689,7 +38866,52 @@ "Model view controller": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "uffizzi/controller", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/uffizzi/controller", + "OS": [ + "linux" + ] + }, + { + "name": "ibmcom/nginx-ingress-controller", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/ibmcom/nginx-ingress-controller", + "OS": [ + "linux" + ] + }, + { + "name": "wallarm/nginx-ingress-controller", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/wallarm/nginx-ingress-controller", + "OS": [ + "linux" + ] + }, + { + "name": "bitnami/nginx-ingress-controller", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 20, + "Docker_Url": "https://hub.docker.com/r/bitnami/nginx-ingress-controller", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [], @@ -46697,27 +38919,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 + "popularity": 104116139.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1244426.0 + "popularity": 978141.0 }, { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1172724.0 + "popularity": 1118580.0 }, { "name": "controller", "url": "https://quay.io/repository/metallb/controller", - "popularity": 256061.0 + "popularity": 452984.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, @@ -46740,27 +38962,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 - }, - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 + "popularity": 162027.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 126512.0 + "popularity": 160924.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -46800,27 +39022,27 @@ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 }, { "name": "entrez-direct", "url": "https://quay.io/repository/biocontainers/entrez-direct", - "popularity": 116.0 + "popularity": 174.0 }, { "name": "rsync-ssh", "url": "https://quay.io/repository/instrumentisto/rsync-ssh", - "popularity": 54.0 + "popularity": 23.0 }, { - "name": "watchtower", - "url": "https://quay.io/repository/webhippie/watchtower", - "popularity": 21.0 + "name": "radare2", + "url": "https://quay.io/repository/cincan/radare2", + "popularity": 175.0 } ] }, @@ -46843,27 +39065,27 @@ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 79779.0 + "popularity": 45915.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 + "popularity": 61984.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 }, { "name": "mafft", "url": "https://quay.io/repository/biocontainers/mafft", - "popularity": 5964.0 + "popularity": 1430.0 }, { - "name": "diamond", - "url": "https://quay.io/repository/biocontainers/diamond", - "popularity": 1430.0 + "name": "macs2", + "url": "https://quay.io/repository/biocontainers/macs2", + "popularity": 550.0 } ] }, @@ -46884,17 +39106,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -46904,15 +39119,17 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/windows-runtime-base", + "OS": [] + }, + { + "name": "grafana/ci-build-windows", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/grafana/ci-build-windows", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "windows" ] } ] @@ -46922,39 +39139,44 @@ { "name": "windows", "url": "https://quay.io/repository/mhallin/windows", - "popularity": 114.0 + "popularity": 78.0 }, { "name": "windows", - "url": "https://quay.io/repository/mgba/windows", - "popularity": 0.0 + "url": "https://quay.io/repository/nickarellano/windows", + "popularity": 169.0 + }, + { + "name": "windows", + "url": "https://quay.io/repository/krvoora_ocm/windows", + "popularity": 155.0 } ], "quay_top_images": [ { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7652.0 + "popularity": 18032.0 }, { - "name": "community-windows-machine-config-operator", - "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", - "popularity": 180.0 - }, - { - "name": "community-windows-machine-config-operator", - "url": "https://quay.io/repository/openshift-community-operators/community-windows-machine-config-operator", - "popularity": 253.0 + "name": "splunk-otel-collector-windows", + "url": "https://quay.io/repository/signalfx/splunk-otel-collector-windows", + "popularity": 758.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3159.0 + "popularity": 5127.0 }, { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2358.0 + "popularity": 2441.0 + }, + { + "name": "webdav", + "url": "https://quay.io/repository/codekow/webdav", + "popularity": 837.0 } ] }, @@ -46971,39 +39193,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "gooddata/sql-executor", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" ] } ] @@ -47014,27 +39244,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -47105,10 +39335,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 7, - "high": 0, - "medium": 7, - "unknown": 1, + "low": 8, + "high": 6, + "medium": 8, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -47142,9 +39372,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -47170,22 +39400,22 @@ "name": "strimzi-kafka-operator", "normalized_name": "strimzi-kafka-operator", "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", - "stars": 18, + "stars": 20, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.30.0", + "version": "0.31.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 277, - "high": 13, - "medium": 348, - "unknown": 5, - "critical": 4 + "low": 527, + "high": 36, + "medium": 484, + "unknown": 7, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657929610, + "ts": 1663708020, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47204,6 +39434,9 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -47211,26 +39444,26 @@ ] }, { - "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", - "name": "keycloak-operator", - "normalized_name": "keycloak-operator", - "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", - "stars": 14, - "display_name": "Keycloak Operator", - "description": "An Operator for installing and managing Keycloak", - "version": "20.0.0-alpha.3", + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 16, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 38, - "high": 0, - "medium": 47, + "low": 29, + "high": 2, + "medium": 31, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656518437, + "production_organizations_count": 1, + "ts": 1662748237, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47243,32 +39476,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/keycloak/keycloak", - "container_images": [ - "quay.io/keycloak/keycloak-operator:18.0.2" - ] + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] }, { - "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", - "name": "prometheus", - "normalized_name": "prometheus", - "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", - "stars": 14, - "display_name": "Prometheus Operator", - "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", - "version": "0.47.0", + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 15, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.6", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 2, - "unknown": 2, + "low": 40, + "high": 1, + "medium": 46, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1618530180, + "production_organizations_count": 0, + "ts": 1663255840, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47281,9 +39512,9 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "git_repos": "https://github.com/keycloak/keycloak", "container_images": [ - "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + "quay.io/keycloak/keycloak-operator:19.0.2" ] }, { @@ -47291,22 +39522,22 @@ "name": "elastic-cloud-eck", "normalized_name": "elastic-cloud-eck", "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, + "stars": 14, "display_name": "Elasticsearch (ECK) Operator", "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", + "version": "2.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 1, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657006653, + "ts": 1661782377, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47323,26 +39554,26 @@ "container_images": [] }, { - "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", - "name": "postgresql", - "normalized_name": "postgresql", - "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, - "display_name": "Crunchy Postgres for Kubernetes", - "description": "Production Postgres Made Easy", - "version": "5.1.2", + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, + "low": 0, "high": 0, - "medium": 32, - "unknown": 0, + "medium": 2, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657571435, + "ts": 1618530180, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47355,23 +39586,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/CrunchyData/postgres-operator", - "container_images": [] + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] }, { "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", "name": "knative-operator", "normalized_name": "knative-operator", "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, + "stars": 13, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", + "version": "1.7.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 0, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1626134400, + "ts": 1661385600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47392,7 +39632,7 @@ "name": "redis-operator", "normalized_name": "redis-operator", "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, + "stars": 12, "display_name": "Redis Operator", "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", "version": "0.11.0", @@ -47400,9 +39640,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -47430,7 +39670,7 @@ "name": "rook-ceph", "normalized_name": "rook-ceph", "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", - "stars": 8, + "stars": 10, "display_name": "Rook-Ceph", "description": "Install and maintain Ceph Storage cluster", "version": "1.1.1", @@ -47462,26 +39702,26 @@ "container_images": [] }, { - "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", - "name": "argocd-operator", - "normalized_name": "argocd-operator", - "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", - "stars": 7, - "display_name": "Argo CD", - "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", - "version": "0.3.0", + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 8, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 + "high": 2, + "medium": 2, + "unknown": 3, + "critical": 3 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1650443438, + "ts": 1654107072, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47494,32 +39734,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "git_repos": "https://github.com/aquasecurity/starboard", "container_images": [ - "quay.io/argoprojlabs/argocd-operator" + "docker.io/aquasec/starboard-operator:0.15.6" ] }, { - "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", - "name": "grafana-operator", - "normalized_name": "grafana-operator", - "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", - "stars": 7, - "display_name": "Grafana Operator", - "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.5.0", + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 8, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 0, - "medium": 3, - "unknown": 0, - "critical": 0 + "low": 8, + "high": 48, + "medium": 45, + "unknown": 35, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657706412, + "ts": 1645693233, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47532,32 +39772,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/grafana-operator/grafana-operator", - "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.5.0" - ] + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] }, { - "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", - "name": "starboard-operator", - "normalized_name": "starboard-operator", - "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", + "name": "argocd-operator", + "normalized_name": "argocd-operator", + "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", "stars": 7, - "display_name": "Starboard Operator", - "description": "Keeps security report resources updated", - "version": "0.15.6", + "display_name": "Argo CD", + "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", + "version": "0.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 2, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 2, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1654107072, + "ts": 1659011437, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47570,53 +39808,17 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/aquasecurity/starboard", + "git_repos": "https://github.com/argoproj-labs/argocd-operator", "container_images": [ - "docker.io/aquasec/starboard-operator:0.15.6" + "quay.io/argoprojlabs/argocd-operator" ] }, - { - "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", - "name": "tidb-operator", - "normalized_name": "tidb-operator", - "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", - "stars": 7, - "display_name": "TiDB Operator", - "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", - "version": "1.3.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 4, - "high": 8, - "medium": 31, - "unknown": 8, - "critical": 2 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1645693233, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/pingcap/tidb-operator", - "container_images": [] - }, { "package_id": "95833125-3a5b-4da5-a985-21f172238a61", "name": "clickhouse", "normalized_name": "clickhouse", "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", - "stars": 5, + "stars": 7, "display_name": "Altinity Operator for ClickHouse", "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", "version": "0.18.3", @@ -47641,26 +39843,26 @@ "container_images": [] }, { - "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", - "name": "flux", - "normalized_name": "flux", - "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", - "stars": 5, - "display_name": "Flux", - "description": "Flux is a Continuous Delivery solution for Kubernetes.", - "version": "0.31.3", + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.6.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, + "low": 7, + "high": 1, + "medium": 5, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656606635, + "production_organizations_count": 1, + "ts": 1660824012, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47673,30 +39875,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://fluxcd.io/docs/", - "container_images": [] + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.6.0" + ] }, { - "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", - "name": "percona-xtradb-cluster-operator", - "normalized_name": "percona-xtradb-cluster-operator", - "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", - "stars": 5, - "display_name": "Percona Distribution for MySQL Operator", - "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", - "version": "1.10.0", + "package_id": "ed4a8453-75f2-46a4-9743-9f7b12d4d4ea", + "name": "kubeflow", + "normalized_name": "kubeflow", + "logo_image_id": "cb5e7dba-ea2d-4a65-a3b6-7def9d80358f", + "stars": 6, + "display_name": "Kubeflow", + "description": "Kubeflow Operator for deployment and management of Kubeflow", + "version": "1.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, + "low": 15, + "high": 16, + "medium": 24, "unknown": 1, - "critical": 0 + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1640178704, + "ts": 1584576000, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47709,7 +39913,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "git_repos": "https://github.com/kubeflow/kfctl", "container_images": [] }, { @@ -47717,22 +39921,22 @@ "name": "rocketmq-operator", "normalized_name": "rocketmq-operator", "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", - "stars": 5, + "stars": 6, "display_name": "RocketMQ Operator", "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", - "version": "0.2.1", + "version": "0.3.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 142, - "high": 39, - "medium": 107, + "low": 140, + "high": 47, + "medium": 108, "unknown": 3, "critical": 6 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1621525858, + "ts": 1663599600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47746,25 +39950,27 @@ "organization_display_name": "Operator Framework" }, "git_repos": "https://github.com/apache/rocketmq-operator", - "container_images": [] + "container_images": [ + "docker.io/apache/rocketmq-operator:0.3.0" + ] }, { "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", "name": "storageos", "normalized_name": "storageos", "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", - "stars": 5, + "stars": 6, "display_name": "StorageOS", "description": "Cloud-native, persistent storage for containers.", "version": "2.6.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 5, - "medium": 44, - "unknown": 1, - "critical": 0 + "low": 31, + "high": 14, + "medium": 57, + "unknown": 5, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -47783,6 +39989,42 @@ }, "git_repos": "https://github.com/storageos/operator", "container_images": [] + }, + { + "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", + "name": "flux", + "normalized_name": "flux", + "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", + "stars": 5, + "display_name": "Flux", + "description": "Flux is a Continuous Delivery solution for Kubernetes.", + "version": "0.31.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 3, + "medium": 3, + "unknown": 1, + "critical": 1 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1658743238, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://fluxcd.io/docs/", + "container_images": [] } ] } @@ -47850,10 +40092,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 7, - "high": 0, - "medium": 7, - "unknown": 1, + "low": 8, + "high": 6, + "medium": 8, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -47887,9 +40129,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -47915,22 +40157,22 @@ "name": "strimzi-kafka-operator", "normalized_name": "strimzi-kafka-operator", "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", - "stars": 18, + "stars": 20, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.30.0", + "version": "0.31.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 277, - "high": 13, - "medium": 348, - "unknown": 5, - "critical": 4 + "low": 527, + "high": 36, + "medium": 484, + "unknown": 7, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657929610, + "ts": 1663708020, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47949,6 +40191,9 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -47956,26 +40201,26 @@ ] }, { - "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", - "name": "keycloak-operator", - "normalized_name": "keycloak-operator", - "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", - "stars": 14, - "display_name": "Keycloak Operator", - "description": "An Operator for installing and managing Keycloak", - "version": "20.0.0-alpha.3", + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 16, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 38, - "high": 0, - "medium": 47, + "low": 29, + "high": 2, + "medium": 31, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656518437, + "production_organizations_count": 1, + "ts": 1662748237, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -47988,32 +40233,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/keycloak/keycloak", - "container_images": [ - "quay.io/keycloak/keycloak-operator:18.0.2" - ] + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] }, { - "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", - "name": "prometheus", - "normalized_name": "prometheus", - "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", - "stars": 14, - "display_name": "Prometheus Operator", - "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", - "version": "0.47.0", + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 15, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.6", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 2, - "unknown": 2, + "low": 40, + "high": 1, + "medium": 46, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1618530180, + "production_organizations_count": 0, + "ts": 1663255840, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48026,9 +40269,9 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "git_repos": "https://github.com/keycloak/keycloak", "container_images": [ - "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + "quay.io/keycloak/keycloak-operator:19.0.2" ] }, { @@ -48036,22 +40279,22 @@ "name": "elastic-cloud-eck", "normalized_name": "elastic-cloud-eck", "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, + "stars": 14, "display_name": "Elasticsearch (ECK) Operator", "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", + "version": "2.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 1, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657006653, + "ts": 1661782377, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48068,26 +40311,26 @@ "container_images": [] }, { - "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", - "name": "postgresql", - "normalized_name": "postgresql", - "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, - "display_name": "Crunchy Postgres for Kubernetes", - "description": "Production Postgres Made Easy", - "version": "5.1.2", + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, + "low": 0, "high": 0, - "medium": 32, - "unknown": 0, + "medium": 2, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657571435, + "ts": 1618530180, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48100,23 +40343,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/CrunchyData/postgres-operator", - "container_images": [] + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] }, { "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", "name": "knative-operator", "normalized_name": "knative-operator", "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, + "stars": 13, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", + "version": "1.7.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 0, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1626134400, + "ts": 1661385600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48137,7 +40389,7 @@ "name": "redis-operator", "normalized_name": "redis-operator", "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, + "stars": 12, "display_name": "Redis Operator", "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", "version": "0.11.0", @@ -48145,9 +40397,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -48175,7 +40427,7 @@ "name": "rook-ceph", "normalized_name": "rook-ceph", "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", - "stars": 8, + "stars": 10, "display_name": "Rook-Ceph", "description": "Install and maintain Ceph Storage cluster", "version": "1.1.1", @@ -48206,6 +40458,80 @@ "git_repos": "https://github.com/rook/rook", "container_images": [] }, + { + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 8, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 2, + "unknown": 3, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654107072, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aquasecurity/starboard", + "container_images": [ + "docker.io/aquasec/starboard-operator:0.15.6" + ] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 8, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 8, + "high": 48, + "medium": 45, + "unknown": 35, + "critical": 5 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, { "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", "name": "argocd-operator", @@ -48214,19 +40540,19 @@ "stars": 7, "display_name": "Argo CD", "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", - "version": "0.3.0", + "version": "0.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 2, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 2, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1650443438, + "ts": 1659011437, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48244,6 +40570,35 @@ "quay.io/argoprojlabs/argocd-operator" ] }, + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 7, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + }, { "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", "name": "grafana-operator", @@ -48252,19 +40607,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.5.0", + "version": "4.6.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 0, - "medium": 3, + "low": 7, + "high": 1, + "medium": 5, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657706412, + "ts": 1660824012, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48279,30 +40634,30 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.5.0" + "quay.io/grafana-operator/grafana-operator:v4.6.0" ] }, { - "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", - "name": "starboard-operator", - "normalized_name": "starboard-operator", - "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", - "stars": 7, - "display_name": "Starboard Operator", - "description": "Keeps security report resources updated", - "version": "0.15.6", + "package_id": "ed4a8453-75f2-46a4-9743-9f7b12d4d4ea", + "name": "kubeflow", + "normalized_name": "kubeflow", + "logo_image_id": "cb5e7dba-ea2d-4a65-a3b6-7def9d80358f", + "stars": 6, + "display_name": "Kubeflow", + "description": "Kubeflow Operator for deployment and management of Kubeflow", + "version": "1.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 + "low": 15, + "high": 16, + "medium": 24, + "unknown": 1, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1654107072, + "ts": 1584576000, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48315,32 +40670,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/aquasecurity/starboard", - "container_images": [ - "docker.io/aquasec/starboard-operator:0.15.6" - ] + "git_repos": "https://github.com/kubeflow/kfctl", + "container_images": [] }, { - "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", - "name": "tidb-operator", - "normalized_name": "tidb-operator", - "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", - "stars": 7, - "display_name": "TiDB Operator", - "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", - "version": "1.3.1", + "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", + "name": "rocketmq-operator", + "normalized_name": "rocketmq-operator", + "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", + "stars": 6, + "display_name": "RocketMQ Operator", + "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", + "version": "0.3.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 8, - "medium": 31, - "unknown": 8, - "critical": 2 + "low": 140, + "high": 47, + "medium": 108, + "unknown": 3, + "critical": 6 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1645693233, + "production_organizations_count": 0, + "ts": 1663599600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48353,23 +40706,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/pingcap/tidb-operator", - "container_images": [] + "git_repos": "https://github.com/apache/rocketmq-operator", + "container_images": [ + "docker.io/apache/rocketmq-operator:0.3.0" + ] }, { - "package_id": "95833125-3a5b-4da5-a985-21f172238a61", - "name": "clickhouse", - "normalized_name": "clickhouse", - "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", - "stars": 5, - "display_name": "Altinity Operator for ClickHouse", - "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", - "version": "0.18.3", + "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", + "name": "storageos", + "normalized_name": "storageos", + "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", + "stars": 6, + "display_name": "StorageOS", + "description": "Cloud-native, persistent storage for containers.", + "version": "2.6.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 31, + "high": 14, + "medium": 57, + "unknown": 5, + "critical": 1 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1573466400, + "ts": 1647018033, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48382,7 +40744,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/altinity/clickhouse-operator", + "git_repos": "https://github.com/storageos/operator", "container_images": [] }, { @@ -48393,127 +40755,19 @@ "stars": 5, "display_name": "Flux", "description": "Flux is a Continuous Delivery solution for Kubernetes.", - "version": "0.31.3", + "version": "0.31.4", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656606635, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://fluxcd.io/docs/", - "container_images": [] - }, - { - "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", - "name": "percona-xtradb-cluster-operator", - "normalized_name": "percona-xtradb-cluster-operator", - "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", - "stars": 5, - "display_name": "Percona Distribution for MySQL Operator", - "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", - "version": "1.10.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1640178704, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", - "container_images": [] - }, - { - "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", - "name": "rocketmq-operator", - "normalized_name": "rocketmq-operator", - "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", - "stars": 5, - "display_name": "RocketMQ Operator", - "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", - "version": "0.2.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 142, - "high": 39, - "medium": 107, - "unknown": 3, - "critical": 6 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1621525858, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/apache/rocketmq-operator", - "container_images": [] - }, - { - "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", - "name": "storageos", - "normalized_name": "storageos", - "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", - "stars": 5, - "display_name": "StorageOS", - "description": "Cloud-native, persistent storage for containers.", - "version": "2.6.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 25, - "high": 5, - "medium": 44, + "high": 3, + "medium": 3, "unknown": 1, - "critical": 0 + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1647018033, + "ts": 1658743238, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -48526,7 +40780,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/storageos/operator", + "git_repos": "https://fluxcd.io/docs/", "container_images": [] } ] @@ -48547,14 +40801,7 @@ "star_count": 1976, "Docker_Url": "https://hub.docker.com/_/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -48565,14 +40812,7 @@ "star_count": 10, "Docker_Url": "https://hub.docker.com/r/bitnami/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -48583,36 +40823,11 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], "dockerhub_top_images": [ - { - "name": "circleci/java", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "bitnami/java", "Official image": false, @@ -48621,14 +40836,7 @@ "star_count": 10, "Docker_Url": "https://hub.docker.com/r/bitnami/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -48639,14 +40847,18 @@ "star_count": 1976, "Docker_Url": "https://hub.docker.com/_/java", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ + "linux" ] }, { @@ -48657,40 +40869,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/kasmweb/java-dev", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/java-nginx", + "name": "appdynamics/java-agent", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/circleci/java-nginx", + "star_count": 9, + "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -48699,45 +40889,45 @@ "quay_exact_images": [ { "name": "java", - "url": "https://quay.io/repository/tamr/java", - "popularity": 472.0 + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 15556.0 }, { "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21441.0 + "url": "https://quay.io/repository/reishost/java", + "popularity": 3678.0 }, { "name": "java", - "url": "https://quay.io/repository/reishost/java", - "popularity": 4864.0 + "url": "https://quay.io/repository/tamr/java", + "popularity": 445.0 } ], "quay_top_images": [ { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21441.0 + "popularity": 15556.0 }, { "name": "docker-java-swiss-knife", "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", - "popularity": 5522.0 - }, - { - "name": "jkube-java", - "url": "https://quay.io/repository/jkube/jkube-java", - "popularity": 4329.0 + "popularity": 7817.0 }, { "name": "java", "url": "https://quay.io/repository/reishost/java", - "popularity": 4864.0 + "popularity": 3678.0 + }, + { + "name": "java-runner-11", + "url": "https://quay.io/repository/redhat-github-actions/java-runner-11", + "popularity": 3635.0 }, { "name": "ubi-quarkus-native-s2i", "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", - "popularity": 36193.0 + "popularity": 39332.0 } ] }, @@ -48751,15 +40941,15 @@ "stars": 1, "display_name": "WildFly", "description": "Operator that deploys and manages Java applications running on WildFly.", - "version": "0.5.3", + "version": "0.5.6", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 4, - "medium": 45, - "unknown": 1, - "critical": 0 + "low": 29, + "high": 10, + "medium": 36, + "unknown": 5, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -48778,7 +40968,7 @@ }, "git_repos": "https://github.com/wildfly/wildfly-operator", "container_images": [ - "quay.io/wildfly/wildfly-operator:0.5.3" + "quay.io/wildfly/wildfly-operator:0.5.6" ] }, { @@ -48794,9 +40984,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, + "high": 4, + "medium": 1, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -48867,10 +41057,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 33, - "unknown": 1, + "low": 29, + "high": 9, + "medium": 46, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -48980,73 +41170,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 424, + "star_count": 429, "Docker_Url": "https://hub.docker.com/_/perl", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -49056,73 +41183,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 424, + "star_count": 429, "Docker_Url": "https://hub.docker.com/_/perl", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -49132,39 +41196,34 @@ { "name": "perl", "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 488.0 - }, - { - "name": "perl", - "url": "https://quay.io/repository/swsmirror/perl", - "popularity": 0.0 + "popularity": 866.0 } ], "quay_top_images": [ { "name": "perl-530-centos7", "url": "https://quay.io/repository/centos7/perl-530-centos7", - "popularity": 231228.0 + "popularity": 243996.0 }, { "name": "docker-perl-app-base", "url": "https://quay.io/repository/wakaba/docker-perl-app-base", - "popularity": 357.0 + "popularity": 482.0 }, { "name": "perl", "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 488.0 + "popularity": 866.0 }, { - "name": "ci-perl", - "url": "https://quay.io/repository/travisci/ci-perl", - "popularity": 0.0 + "name": "perl-biox-seq", + "url": "https://quay.io/repository/biocontainers/perl-biox-seq", + "popularity": 190.0 }, { - "name": "perl-test", - "url": "https://quay.io/repository/modellaachen/perl-test", - "popularity": 0.0 + "name": "perl-image-exiftool", + "url": "https://quay.io/repository/biocontainers/perl-image-exiftool", + "popularity": 188.0 } ] }, @@ -49184,65 +41243,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 6670, + "star_count": 6802, "Docker_Url": "https://hub.docker.com/_/php", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49253,14 +41257,7 @@ "star_count": 35, "Docker_Url": "https://hub.docker.com/r/circleci/php", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49271,18 +41268,33 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/cimg/php", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "okteto/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/php", + "OS": [ + "linux" ] } ], "dockerhub_top_images": [ + { + "name": "okteto/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/php", + "OS": [ + "linux" + ] + }, { "name": "cimg/php", "Official image": false, @@ -49291,14 +41303,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/cimg/php", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49309,14 +41314,7 @@ "star_count": 35, "Docker_Url": "https://hub.docker.com/r/circleci/php", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49324,65 +41322,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 6670, + "star_count": 6802, "Docker_Url": "https://hub.docker.com/_/php", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49390,35 +41333,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 150, + "star_count": 151, "Docker_Url": "https://hub.docker.com/r/bitnami/php-fpm", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "php-zendserver", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 201, - "Docker_Url": "https://hub.docker.com/_/php-zendserver", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -49427,55 +41345,55 @@ "quay_exact_images": [ { "name": "php", - "url": "https://quay.io/repository/kissj/php", - "popularity": 8613.0 + "url": "https://quay.io/repository/startx/php", + "popularity": 14920.0 }, { "name": "php", - "url": "https://quay.io/repository/startx/php", - "popularity": 15706.0 + "url": "https://quay.io/repository/kissj/php", + "popularity": 8620.0 }, { "name": "php", "url": "https://quay.io/repository/api-platform/php", - "popularity": 2133.0 + "popularity": 267.0 }, { "name": "php", - "url": "https://quay.io/repository/swsmirror/php", - "popularity": 338.0 + "url": "https://quay.io/repository/genilink/php", + "popularity": 461.0 }, { "name": "php", - "url": "https://quay.io/repository/official-images/php", - "popularity": 53.0 + "url": "https://quay.io/repository/aganzory/php", + "popularity": 334.0 } ], "quay_top_images": [ { "name": "php-73-centos7", "url": "https://quay.io/repository/centos7/php-73-centos7", - "popularity": 219503.0 + "popularity": 232719.0 }, { - "name": "php", - "url": "https://quay.io/repository/kissj/php", - "popularity": 8613.0 + "name": "php-fpm_exporter", + "url": "https://quay.io/repository/cuppett/php-fpm_exporter", + "popularity": 41839.0 }, { "name": "php", "url": "https://quay.io/repository/startx/php", - "popularity": 15706.0 + "popularity": 14920.0 }, { - "name": "php-fpm_exporter", - "url": "https://quay.io/repository/cuppett/php-fpm_exporter", - "popularity": 41780.0 + "name": "php", + "url": "https://quay.io/repository/kissj/php", + "popularity": 8620.0 }, { - "name": "runner-php", - "url": "https://quay.io/repository/startx/runner-php", - "popularity": 8119.0 + "name": "php-hello-dockerfile", + "url": "https://quay.io/repository/redhattraining/php-hello-dockerfile", + "popularity": 9533.0 } ] }, @@ -49495,65 +41413,11 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7706, + "star_count": 7971, "Docker_Url": "https://hub.docker.com/_/python", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux", + "windows" ] }, { @@ -49561,17 +41425,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 51, + "star_count": 52, "Docker_Url": "https://hub.docker.com/r/circleci/python", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49582,14 +41439,7 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/cimg/python", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49600,100 +41450,42 @@ "star_count": 22, "Docker_Url": "https://hub.docker.com/r/bitnami/python", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "okteto/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/python", + "OS": [ + "linux" ] } ], "dockerhub_top_images": [ { - "name": "python", - "Official image": true, - "Verified Publisher": false, + "name": "okteto/python", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 7706, - "Docker_Url": "https://hub.docker.com/_/python", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/python", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/python", + "name": "bitnami/python", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 51, - "Docker_Url": "https://hub.docker.com/r/circleci/python", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/bitnami/python", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49704,32 +41496,30 @@ "star_count": 5, "Docker_Url": "https://hub.docker.com/r/cimg/python", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/python", + "name": "circleci/python", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/bitnami/python", + "star_count": 52, + "Docker_Url": "https://hub.docker.com/r/circleci/python", + "OS": [ + "linux" + ] + }, + { + "name": "python", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 7971, + "Docker_Url": "https://hub.docker.com/_/python", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux", + "windows" ] } ] @@ -49744,54 +41534,64 @@ { "name": "python", "url": "https://quay.io/repository/biocontainers/python", - "popularity": 7322.0 + "popularity": 8165.0 }, { "name": "python", "url": "https://quay.io/repository/cdis/python", - "popularity": 2978.0 + "popularity": 11538.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/cki/python", + "popularity": 11835.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/openshift-pipeline/python", + "popularity": 2016.0 }, { "name": "python", "url": "https://quay.io/repository/agari/python", - "popularity": 2171.0 + "popularity": 1877.0 }, { "name": "python", "url": "https://quay.io/repository/sctregistry/python", - "popularity": 1468.0 + "popularity": 1526.0 }, { "name": "python", "url": "https://quay.io/repository/mlrun/python", - "popularity": 1296.0 + "popularity": 1438.0 } ], "quay_top_images": [ { "name": "python-27-centos7", "url": "https://quay.io/repository/centos7/python-27-centos7", - "popularity": 204983.0 + "popularity": 193805.0 }, { - "name": "python-predictor-cpu", - "url": "https://quay.io/repository/cortexlabs/python-predictor-cpu", - "popularity": 5277.0 + "name": "python-nginx", + "url": "https://quay.io/repository/cdis/python-nginx", + "popularity": 20211.0 }, { "name": "python", "url": "https://quay.io/repository/biocontainers/python", - "popularity": 7322.0 + "popularity": 8165.0 }, { - "name": "python-nginx", - "url": "https://quay.io/repository/cdis/python-nginx", - "popularity": 5122.0 + "name": "python", + "url": "https://quay.io/repository/cdis/python", + "popularity": 11538.0 }, { - "name": "python-predictor-gpu", - "url": "https://quay.io/repository/cortexlabs/python-predictor-gpu", - "popularity": 5172.0 + "name": "python", + "url": "https://quay.io/repository/cki/python", + "popularity": 11835.0 } ] }, @@ -49811,65 +41611,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2150, + "star_count": 2171, "Docker_Url": "https://hub.docker.com/_/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49880,14 +41625,18 @@ "star_count": 78, "Docker_Url": "https://hub.docker.com/r/circleci/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "cimg/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "OS": [ + "linux" ] }, { @@ -49898,32 +41647,18 @@ "star_count": 21, "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "cimg/ruby", + "name": "okteto/ruby", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49934,14 +41669,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/datadog/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] } ], @@ -49954,14 +41682,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/datadog/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" + ] + }, + { + "name": "okteto/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/ruby", + "OS": [ + "linux" ] }, { @@ -49972,14 +41704,7 @@ "star_count": 21, "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -49987,17 +41712,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/cimg/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -50008,152 +41726,74 @@ "star_count": 78, "Docker_Url": "https://hub.docker.com/r/circleci/ruby", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ruby", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 2150, - "Docker_Url": "https://hub.docker.com/_/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] }, { "quay_exact_images": [ - { - "name": "ruby", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby", - "popularity": 0.0 - }, { "name": "ruby", "url": "https://quay.io/repository/aptible/ruby", - "popularity": 73.0 + "popularity": 87.0 }, { "name": "ruby", - "url": "https://quay.io/repository/swsmirror/ruby", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby", "popularity": 0.0 }, { "name": "ruby", - "url": "https://quay.io/repository/goodguide/ruby", - "popularity": 0.0 + "url": "https://quay.io/repository/forem/ruby", + "popularity": 44.0 }, { "name": "ruby", - "url": "https://quay.io/repository/shakr/ruby", + "url": "https://quay.io/repository/karthik_t/ruby", "popularity": 0.0 }, { "name": "ruby", - "url": "https://quay.io/repository/springest/ruby", - "popularity": 20.0 + "url": "https://quay.io/repository/openshifttest/ruby", + "popularity": 0.0 }, { "name": "ruby", - "url": "https://quay.io/repository/forem/ruby", - "popularity": 62.0 + "url": "https://quay.io/repository/smplatform/ruby", + "popularity": 35.0 }, { "name": "ruby", - "url": "https://quay.io/repository/openshifttest/ruby", - "popularity": 0.0 + "url": "https://quay.io/repository/genomenon/ruby", + "popularity": 58.0 } ], "quay_top_images": [ { "name": "ruby-27-centos7", "url": "https://quay.io/repository/centos7/ruby-27-centos7", - "popularity": 259203.0 + "popularity": 265602.0 }, { "name": "ruby-26-centos7", "url": "https://quay.io/repository/centos7/ruby-26-centos7", - "popularity": 172628.0 + "popularity": 160457.0 }, { "name": "ruby-25-centos7", "url": "https://quay.io/repository/centos7/ruby-25-centos7", - "popularity": 73632.0 + "popularity": 64600.0 }, { "name": "ruby-27", "url": "https://quay.io/repository/openshifttest/ruby-27", - "popularity": 17897.0 + "popularity": 21506.0 }, { "name": "ruby-cron", "url": "https://quay.io/repository/palettecloud/ruby-cron", - "popularity": 9561.0 + "popularity": 5870.0 } ] }, @@ -50174,41 +41814,32 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 4, + "star_count": 5, "Docker_Url": "https://hub.docker.com/r/docker/dev-environments-javascript", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] }, { - "quay_exact_images": [], + "quay_exact_images": [ + { + "name": "javascript", + "url": "https://quay.io/repository/vasistatest/javascript", + "popularity": 0.0 + } + ], "quay_top_images": [ { "name": "sandbox-javascript", "url": "https://quay.io/repository/redsift/sandbox-javascript", - "popularity": 115871.0 + "popularity": 17387.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "popularity": 71385.0 }, { "name": "ploigos-tool-javascript", @@ -50216,14 +41847,14 @@ "popularity": 56.0 }, { - "name": "node-ci", - "url": "https://quay.io/repository/krestomatio/node-ci", - "popularity": 75.0 + "name": "perl-json", + "url": "https://quay.io/repository/biocontainers/perl-json", + "popularity": 168.0 }, { - "name": "node", - "url": "https://quay.io/repository/krestomatio/node", - "popularity": 92.0 + "name": "nodejs-18-c8s", + "url": "https://quay.io/repository/sclorg/nodejs-18-c8s", + "popularity": 173.0 } ] }, @@ -50246,27 +41877,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3159.0 + "popularity": 5127.0 }, { "name": "rpki-client", "url": "https://quay.io/repository/rpki/rpki-client", - "popularity": 27.0 + "popularity": 25.0 + }, + { + "name": "openbgpd", + "url": "https://quay.io/repository/openbgpd/openbgpd", + "popularity": 14.0 }, { "name": "docker_networking_utils", "url": "https://quay.io/repository/wienczny/docker_networking_utils", "popularity": 0.0 - }, - { - "name": "openbgpd", - "url": "https://quay.io/repository/openbgpd/openbgpd", - "popularity": 16.0 } ] }, @@ -50299,22 +41930,37 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" ] } ] @@ -50325,27 +41971,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -50366,18 +42012,18 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "ab-dos", - "url": "https://quay.io/repository/l_seng/ab-dos", + "name": "alpine-mariadb", + "url": "https://quay.io/repository/yobasystems/alpine-mariadb", "popularity": 0.0 }, { - "name": "dos", - "url": "https://quay.io/repository/cacher/dos", + "name": "blogwriting1", + "url": "https://quay.io/repository/masonscott12306/blogwriting1", "popularity": 0.0 }, { - "name": "alpine-mariadb", - "url": "https://quay.io/repository/yobasystems/alpine-mariadb", + "name": "free", + "url": "https://quay.io/repository/october2022/free", "popularity": 0.0 }, { @@ -50386,8 +42032,8 @@ "popularity": 0.0 }, { - "name": "snort", - "url": "https://quay.io/repository/ellerbrock/snort", + "name": "dos", + "url": "https://quay.io/repository/windows/dos", "popularity": 0.0 } ] @@ -50413,11 +42059,6 @@ "url": "https://quay.io/repository/shelman/cobol-on-wheelchair", "popularity": 0.0 }, - { - "name": "docker-ibmcloud-grant-cluster", - "url": "https://quay.io/repository/ibm-avocados/docker-ibmcloud-grant-cluster", - "popularity": 0.0 - }, { "name": "docker-istio", "url": "https://quay.io/repository/awesome/docker-istio", @@ -50432,6 +42073,11 @@ "name": "docker-kubectl", "url": "https://quay.io/repository/ibm-avocados/docker-kubectl", "popularity": 0.0 + }, + { + "name": "docker-ibmcloud-addon-istio", + "url": "https://quay.io/repository/ibm-avocados/docker-ibmcloud-addon-istio", + "popularity": 0.0 } ] }, @@ -50472,14 +42118,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -50490,14 +42129,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -50508,27 +42140,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20568.0 + "popularity": 21134.0 } ] }, @@ -50549,28 +42181,28 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "ab-dos", - "url": "https://quay.io/repository/l_seng/ab-dos", + "name": "alpine-mariadb", + "url": "https://quay.io/repository/yobasystems/alpine-mariadb", "popularity": 0.0 }, { - "name": "360-serverless", - "url": "https://quay.io/repository/ricohapi/360-serverless", + "name": "blogwriting1", + "url": "https://quay.io/repository/masonscott12306/blogwriting1", "popularity": 0.0 }, { - "name": "360-serverless-hosoric-2", - "url": "https://quay.io/repository/ricohapi/360-serverless-hosoric-2", + "name": "free", + "url": "https://quay.io/repository/october2022/free", "popularity": 0.0 }, { - "name": "360-serverless-hosoric", - "url": "https://quay.io/repository/ricohapi/360-serverless-hosoric", + "name": "slink9shot", + "url": "https://quay.io/repository/bandartogel1/slink9shot", "popularity": 0.0 }, { - "name": "dos", - "url": "https://quay.io/repository/cacher/dos", + "name": "livedraw-hkg-6d-togel-hk-malam-hari-ini-result-tercepat-pools-prize-4d-aplikasi-prediksi-pengeluaran-live-draw-hongkong-2022", + "url": "https://quay.io/repository/bandartogel1/livedraw-hkg-6d-togel-hk-malam-hari-ini-result-tercepat-pools-prize-4d-aplikasi-prediksi-pengeluaran-live-draw-hongkong-2022", "popularity": 0.0 } ] @@ -50611,7 +42243,7 @@ { "name": "smeeclient", "url": "https://quay.io/repository/schabrolles/smeeclient", - "popularity": 1330.0 + "popularity": 1666.0 } ] }, @@ -50628,39 +42260,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "kasmweb/oracle-8-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" ] } ] @@ -50671,27 +42311,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -50715,30 +42355,7 @@ "star_count": 22, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -50746,33 +42363,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 286, + "star_count": 289, "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -50782,15 +42376,28 @@ "Description": "", "star_count": 10, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-portal", + "OS": [] + }, + { + "name": "ibmcom/websphere-traditional", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 205, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-traditional", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/websphere-liberty-s2i", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty-s2i", + "OS": [ + "linux" ] } ] @@ -50801,26 +42408,26 @@ { "name": "websphere-liberty", "url": "https://quay.io/repository/swsmirror/websphere-liberty", - "popularity": 2.0 + "popularity": 0.0 }, { - "name": "websphere-ordermgmt", - "url": "https://quay.io/repository/uupadhyay/websphere-ordermgmt", + "name": "websphere-traditional", + "url": "https://quay.io/repository/kmoini/websphere-traditional", "popularity": 0.0 }, { - "name": "websphere-liberty", - "url": "https://quay.io/repository/dockerlibrary/websphere-liberty", + "name": "was9-java8-dq", + "url": "https://quay.io/repository/dqdevs/was9-java8-dq", "popularity": 0.0 }, { - "name": "websphere-liberty", - "url": "https://quay.io/repository/yutaka.moriyama/websphere-liberty", + "name": "was8-java8-dq", + "url": "https://quay.io/repository/dqdevs/was8-java8-dq", "popularity": 0.0 }, { - "name": "websphere-traditional", - "url": "https://quay.io/repository/kmoini/websphere-traditional", + "name": "websphere-liberty", + "url": "https://quay.io/repository/dockerlibrary/websphere-liberty", "popularity": 0.0 } ] @@ -50844,12 +42451,12 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3159.0 + "popularity": 5127.0 } ] }, @@ -50869,6 +42476,11 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "sentieon", + "url": "https://quay.io/repository/biocontainers/sentieon", + "popularity": 168.0 + }, { "name": "service-sharepoint", "url": "https://quay.io/repository/manywho/service-sharepoint", @@ -50879,11 +42491,6 @@ "url": "https://quay.io/repository/manywho/service-sharepoint-addin", "popularity": 0.0 }, - { - "name": "sentieon", - "url": "https://quay.io/repository/biocontainers/sentieon", - "popularity": 0.0 - }, { "name": "sharepointconsulting", "url": "https://quay.io/repository/sharepointconsulting/sharepointconsulting", @@ -50908,25 +42515,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -50937,27 +42529,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96986027.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 93058787.0 + "popularity": 104116139.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 93141016.0 + "popularity": 101039477.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 100668193.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 939648.0 + "popularity": 1551927.0 }, { - "name": "cert-manager-ctl", - "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 645293.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 } ] }, @@ -50980,27 +42572,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -51019,9 +42611,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 4, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -51060,33 +42652,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51097,22 +42666,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51123,22 +42677,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -51149,27 +42688,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -51190,17 +42729,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51208,25 +42740,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51234,17 +42751,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51252,25 +42762,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -51281,27 +42776,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3111.0 + "popularity": 8009.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 4180.0 } ] }, @@ -51357,22 +42852,26 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, { "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, + "star_count": 603, "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -51383,27 +42882,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 }, { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 133096.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -51421,38 +42920,32 @@ "dockerhub_top_images": [] }, { - "quay_exact_images": [ - { - "name": "instana", - "url": "https://quay.io/repository/yaoyao/instana", - "popularity": 0.0 - } - ], + "quay_exact_images": [], "quay_top_images": [ { "name": "instana-agent-operator", "url": "https://quay.io/repository/operator-pipeline-prod/instana-agent-operator", - "popularity": 1008.0 + "popularity": 1014.0 }, { "name": "instana-agent-operator-rhmp", "url": "https://quay.io/repository/operator-pipeline-prod/instana-agent-operator-rhmp", - "popularity": 840.0 + "popularity": 1014.0 }, { "name": "z-instana", "url": "https://quay.io/repository/trumanbrown/z-instana", - "popularity": 1698.0 + "popularity": 0.0 }, { "name": "instana-agent-operator", "url": "https://quay.io/repository/operatorhubio/instana-agent-operator", - "popularity": 476.0 + "popularity": 382.0 }, { - "name": "z-instana-leader-elector", - "url": "https://quay.io/repository/trumanbrown/z-instana-leader-elector", - "popularity": 19.0 + "name": "instana-agent-operator", + "url": "https://quay.io/repository/instana/instana-agent-operator", + "popularity": 10.0 } ] }, @@ -51470,11 +42963,11 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 72, - "high": 16, - "medium": 97, - "unknown": 8, - "critical": 1 + "low": 86, + "high": 41, + "medium": 155, + "unknown": 22, + "critical": 2 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -51518,12 +43011,12 @@ { "name": "credstash-operator", "url": "https://quay.io/repository/ouzi/credstash-operator", - "popularity": 135.0 + "popularity": 76.0 }, { "name": "credstash-operator", "url": "https://quay.io/repository/operatorhubio/credstash-operator", - "popularity": 32.0 + "popularity": 27.0 }, { "name": "credstash", @@ -51592,17 +43085,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 7, "Docker_Url": "https://hub.docker.com/r/snyk/snyk", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -51612,17 +43098,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 7, "Docker_Url": "https://hub.docker.com/r/snyk/snyk", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51633,14 +43112,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/snyk/snyk-kubernetes-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51651,14 +43123,7 @@ "star_count": 34, "Docker_Url": "https://hub.docker.com/r/snyk/snyk-cli", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51669,14 +43134,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/snyk/snyk-pipe", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51687,14 +43145,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/snyk/snyk-operator-index", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -51704,34 +43155,34 @@ { "name": "snyk", "url": "https://quay.io/repository/exd_infra_plts_cip/snyk", - "popularity": 38.0 + "popularity": 34.0 } ], "quay_top_images": [ - { - "name": "snyk-cli", - "url": "https://quay.io/repository/codefresh/snyk-cli", - "popularity": 285.0 - }, { "name": "snyk-operator", "url": "https://quay.io/repository/operatorhubio/snyk-operator", - "popularity": 856.0 + "popularity": 729.0 + }, + { + "name": "snyk-cli", + "url": "https://quay.io/repository/codefresh/snyk-cli", + "popularity": 70.0 }, { "name": "snyk-operator", "url": "https://quay.io/repository/openshift-community-operators/snyk-operator", - "popularity": 638.0 + "popularity": 343.0 }, { - "name": "snyk", - "url": "https://quay.io/repository/exd_infra_plts_cip/snyk", - "popularity": 38.0 + "name": "snyk-operator", + "url": "https://quay.io/repository/community-operators-pipeline/snyk-operator", + "popularity": 980.0 }, { "name": "snyk_exporter", "url": "https://quay.io/repository/lunarway/snyk_exporter", - "popularity": 2010.0 + "popularity": 2604.0 } ] }, @@ -51749,10 +43200,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 8, - "medium": 36, - "unknown": 4, + "low": 31, + "high": 14, + "medium": 48, + "unknown": 11, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -51804,21 +43255,21 @@ { "name": "akka-cluster-operator", "url": "https://quay.io/repository/operatorhubio/akka-cluster-operator", - "popularity": 131.0 + "popularity": 112.0 }, { "name": "akka-cluster-operator", "url": "https://quay.io/repository/openshift-community-operators/akka-cluster-operator", - "popularity": 77.0 + "popularity": 45.0 }, { "name": "akka-operator", "url": "https://quay.io/repository/openshifttest/akka-operator", - "popularity": 52.0 + "popularity": 8.0 }, { - "name": "akka-simple-cluster-k8s", - "url": "https://quay.io/repository/whogan00/akka-simple-cluster-k8s", + "name": "akka-ingest", + "url": "https://quay.io/repository/kklin/akka-ingest", "popularity": 0.0 }, { @@ -51903,57 +43354,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 125, + "star_count": 129, "Docker_Url": "https://hub.docker.com/_/varnish", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51964,14 +43368,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/varnish", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -51984,14 +43381,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/varnish", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -51999,57 +43389,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 125, + "star_count": 129, "Docker_Url": "https://hub.docker.com/_/varnish", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -52059,15 +43402,28 @@ "Description": "", "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/varnish-cache", + "OS": [] + }, + { + "name": "ibmcom/varnish-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/varnish-operator", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/varnish-controller", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/varnish-controller", + "OS": [ + "linux" ] } ] @@ -52077,36 +43433,31 @@ { "name": "varnish", "url": "https://quay.io/repository/api-platform/varnish", - "popularity": 1147.0 - }, - { - "name": "varnish", - "url": "https://quay.io/repository/airshipcms/varnish", - "popularity": 0.0 + "popularity": 150.0 }, { "name": "varnish", "url": "https://quay.io/repository/akretion/varnish", - "popularity": 16.0 + "popularity": 0.0 }, { "name": "varnish", - "url": "https://quay.io/repository/psav/varnish", + "url": "https://quay.io/repository/lonewulf/varnish", "popularity": 0.0 }, { "name": "varnish", - "url": "https://quay.io/repository/vektorcloud/varnish", + "url": "https://quay.io/repository/jacksoncage/varnish", "popularity": 0.0 }, { "name": "varnish", - "url": "https://quay.io/repository/45air/varnish", + "url": "https://quay.io/repository/vektorcloud/varnish", "popularity": 0.0 }, { "name": "varnish", - "url": "https://quay.io/repository/imasen/varnish", + "url": "https://quay.io/repository/strathberry/varnish", "popularity": 0.0 } ], @@ -52114,27 +43465,27 @@ { "name": "varnish", "url": "https://quay.io/repository/api-platform/varnish", - "popularity": 1147.0 + "popularity": 150.0 }, { "name": "kube-httpcache", "url": "https://quay.io/repository/mittwald/kube-httpcache", - "popularity": 6136.0 + "popularity": 12714.0 }, { "name": "varnish-operator", "url": "https://quay.io/repository/operatorhubio/varnish-operator", - "popularity": 32.0 + "popularity": 27.0 }, { "name": "varnish-operator", "url": "https://quay.io/repository/openshift-community-operators/varnish-operator", - "popularity": 29.0 + "popularity": 16.0 }, { - "name": "varnish", - "url": "https://quay.io/repository/akretion/varnish", - "popularity": 16.0 + "name": "varnish-6-c9s", + "url": "https://quay.io/repository/sclorg/varnish-6-c9s", + "popularity": 12.0 } ] }, @@ -52195,14 +43546,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/datadog/datadog-agent-runner-circle", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "datadog/agent-buildimages-datadog-ci-uploader", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/datadog/agent-buildimages-datadog-ci-uploader", + "OS": [ + "linux" ] } ] @@ -52211,7 +43566,7 @@ "quay_exact_images": [ { "name": "datadog", - "url": "https://quay.io/repository/blondie/datadog", + "url": "https://quay.io/application/charts/datadog", "popularity": 0.0 } ], @@ -52219,27 +43574,27 @@ { "name": "logstash-datadog", "url": "https://quay.io/repository/yugabyte/logstash-datadog", - "popularity": 599.0 + "popularity": 646.0 }, { - "name": "datadog-operator", - "url": "https://quay.io/repository/operatorhubio/datadog-operator", - "popularity": 602.0 + "name": "datadog-operator-certified-rhmp", + "url": "https://quay.io/repository/operator-pipeline-prod/datadog-operator-certified-rhmp", + "popularity": 507.0 }, { - "name": "datadog-operator", - "url": "https://quay.io/repository/openshift-community-operators/datadog-operator", - "popularity": 1341.0 + "name": "datadog-operator-certified", + "url": "https://quay.io/repository/operator-pipeline-prod/datadog-operator-certified", + "popularity": 507.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 }, { "name": "datalink-datadogd", "url": "https://quay.io/repository/geonet/datalink-datadogd", - "popularity": 3055.0 + "popularity": 3025.0 } ] }, @@ -52257,11 +43612,11 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, - "critical": 0 + "low": 16, + "high": 7, + "medium": 49, + "unknown": 2, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -52299,26 +43654,33 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/api", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "okteto/api", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/api", + "OS": [ + "linux" ] } ], "dockerhub_top_images": [ + { + "name": "okteto/api", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/api", + "OS": [ + "linux" + ] + }, { "name": "kasmweb/api", "Official image": false, @@ -52327,22 +43689,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/api", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -52350,49 +43697,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 24, + "star_count": 26, "Docker_Url": "https://hub.docker.com/r/wallarm/api-firewall", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -52400,70 +43708,41 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 18, + "star_count": 20, "Docker_Url": "https://hub.docker.com/_/api-firewall", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] }, { - "quay_exact_images": [ - { - "name": "api", - "url": "https://quay.io/repository/infrabox/api", - "popularity": 34.0 - } - ], + "quay_exact_images": [], "quay_top_images": [ { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 35108.0 + "popularity": 26368.0 + }, + { + "name": "virt-api", + "url": "https://quay.io/repository/kubevirt/virt-api", + "popularity": 23329.0 }, { "name": "insights-api", "url": "https://quay.io/repository/fairwinds/insights-api", - "popularity": 39135.0 + "popularity": 53805.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1288147.0 - }, - { - "name": "third-party-api-resolver-server", - "url": "https://quay.io/repository/decentraland/third-party-api-resolver-server", - "popularity": 52906.0 + "popularity": 1268909.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "popularity": 337637.0 } ] }, @@ -52474,7 +43753,7 @@ "name": "api-operator", "normalized_name": "api-operator", "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", - "stars": 1, + "stars": 2, "display_name": "API Operator for Kubernetes", "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", "version": "2.0.0", @@ -52549,19 +43828,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon API Gateway v2", "description": "AWS API Gateway v2 controller is a service controller for managing API Gateway v2 resources in Kubernetes", - "version": "0.1.2", + "version": "0.1.4", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 3, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655489670, + "ts": 1663002225, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -52584,17 +43863,10 @@ "logo_image_id": "aabb3684-3024-4890-a7e1-c09ca17bb4d4", "stars": 0, "display_name": "APIcast", - "description": "APIcast is an API gateway built on top of NGINX. It is part of the 3scale API Management Platform", - "version": "0.4.0", + "description": "APIcast is an API gateway built on top of NGINX. It is part of the Red Hat 3scale API Management Platform", + "version": "0.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 55, - "high": 5, - "medium": 112, - "unknown": 0, - "critical": 3 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, "ts": 1572216000, @@ -52612,7 +43884,7 @@ }, "git_repos": "https://github.com/3scale/apicast-operator", "container_images": [ - "quay.io/3scale/apicast-operator:v0.4.0" + "quay.io/3scale/apicast-operator:v0.6.0" ] }, { @@ -52628,9 +43900,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, + "high": 5, + "medium": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -52661,19 +43933,19 @@ "stars": 3, "display_name": "Microcks Operator", "description": "Open Source mocking and testing platform for API and microservices", - "version": "1.5.2", + "version": "1.6.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 92, - "high": 19, - "medium": 283, - "unknown": 1, + "low": 132, + "high": 32, + "medium": 301, + "unknown": 4, "critical": 2 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652728291, + "ts": 1662488636, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -52688,30 +43960,30 @@ }, "git_repos": "https://github.com/microcks/microcks-ansible-operator", "container_images": [ - "quay.io/microcks/microcks-ansible-operator:1.5.2" + "quay.io/microcks/microcks-ansible-operator:1.6.0" ] }, { - "package_id": "e6087667-2b09-499f-9528-db9e99709020", - "name": "apicurio-registry", - "normalized_name": "apicurio-registry", - "logo_image_id": "a6e7f90d-62dc-4b78-a823-e0a93912ec93", - "stars": 1, - "display_name": "Apicurio Registry Operator", - "description": "Deploy and manage Apicurio Registry on Kubernetes.", - "version": "1.0.0-v2.0.0.final", + "package_id": "e44dc7f9-5d6f-4185-bb53-291a8ee1408d", + "name": "iot-simulator", + "normalized_name": "iot-simulator", + "logo_image_id": "9821068b-f345-4230-a61a-4b14ababd524", + "stars": 2, + "display_name": "IoT simulator", + "description": "An IoT device simulator, simulating producers and consumers using the Eclipse Hono API", + "version": "0.1.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 2, - "medium": 0, - "unknown": 1, - "critical": 0 + "low": 415, + "high": 18, + "medium": 438, + "unknown": 0, + "critical": 3 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1621525858, + "ts": 1552953600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -52724,32 +43996,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/Apicurio/apicurio-registry-operator", - "container_images": [ - "quay.io/apicurio/apicurio-registry-operator:1.0.0" - ] + "git_repos": "https://github.com/ctron/iot-simulator-operator", + "container_images": [] }, { - "package_id": "e44dc7f9-5d6f-4185-bb53-291a8ee1408d", - "name": "iot-simulator", - "normalized_name": "iot-simulator", - "logo_image_id": "9821068b-f345-4230-a61a-4b14ababd524", + "package_id": "e6087667-2b09-499f-9528-db9e99709020", + "name": "apicurio-registry", + "normalized_name": "apicurio-registry", + "logo_image_id": "a6e7f90d-62dc-4b78-a823-e0a93912ec93", "stars": 1, - "display_name": "IoT simulator", - "description": "An IoT device simulator, simulating producers and consumers using the Eclipse Hono API", - "version": "0.1.0", + "display_name": "Apicurio Registry Operator", + "description": "Deploy and manage Apicurio Registry on Kubernetes.", + "version": "1.0.0-v2.0.0.final", "deprecated": false, "signed": false, "security_report_summary": { - "low": 415, - "high": 18, - "medium": 438, - "unknown": 0, - "critical": 3 + "low": 0, + "high": 2, + "medium": 0, + "unknown": 1, + "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1552953600, + "ts": 1621525858, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -52762,8 +44032,10 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/ctron/iot-simulator-operator", - "container_images": [] + "git_repos": "https://github.com/Apicurio/apicurio-registry-operator", + "container_images": [ + "quay.io/apicurio/apicurio-registry-operator:1.0.0" + ] }, { "package_id": "fbd84364-fffe-4db3-b128-46376f31a9d6", @@ -52802,19 +44074,19 @@ "stars": 1, "display_name": "Minio Operator", "description": "MinIO is a Kubernetes-native high performance object store with an\nS3-compatible API. The MinIO Operator supports deploying MinIO Tenants\nonto any Kubernetes.", - "version": "4.4.25", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 0, - "medium": 33, + "low": 29, + "high": 1, + "medium": 26, "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655928035, + "ts": 1663223445, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -52879,10 +44151,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 85, - "high": 22, - "medium": 236, - "unknown": 1, + "low": 116, + "high": 33, + "medium": 262, + "unknown": 4, "critical": 2 }, "all_containers_images_whitelisted": false, @@ -52918,9 +44190,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 1, - "unknown": 1, + "high": 7, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -52941,6 +44213,81 @@ "git_repos": "https://github.com/IBM/cloud-operators", "container_images": [] }, + { + "package_id": "8701a44f-3ae3-4c70-b7f3-a99c9449d828", + "name": "lbconfig-operator", + "normalized_name": "lbconfig-operator", + "logo_image_id": "0a0d1220-98a4-43b0-bffb-e14cea28093c", + "stars": 0, + "display_name": "External Load-Balancer Configuration Operator", + "description": "The LBConfig Operator, manages the configuration of External Load Balancer instances (on third-party equipment) and creates VIPs and IP Pools dynamically via API.", + "version": "0.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1660564800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/carlosedp/lbconfig-operator", + "container_images": [ + "docker.io/carlosedp/lbconfig-operator:v0.4.0" + ] + }, + { + "package_id": "971ffd30-33bd-4aa7-8e05-6cdb29193e59", + "name": "limitador-operator", + "normalized_name": "limitador-operator", + "logo_image_id": "c4b324ea-734e-43f3-be0d-a1125853728d", + "stars": 0, + "display_name": "Limitador", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 6, + "medium": 1, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1660851036, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Kuadrant/limitador-operator", + "container_images": [ + "quay.io/kuadrant/limitador-operator:v0.3.0" + ] + }, { "package_id": "1d1a44d7-6c37-4162-8bd9-1df69b441d93", "name": "nfd-operator", @@ -52954,6 +44301,42 @@ "signed": false, "security_report_summary": { "low": 11, + "high": 3, + "medium": 3, + "unknown": 1, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1642616598, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kubernetes-sigs/node-feature-discovery-operator", + "container_images": [] + }, + { + "package_id": "cc768c35-1956-4358-b187-647c4f91bfda", + "name": "rabbitmq-messaging-topology-operator", + "normalized_name": "rabbitmq-messaging-topology-operator", + "logo_image_id": "50c35ae8-ee5b-4b23-81ef-eed663217383", + "stars": 0, + "display_name": "rabbitmq-messaging-topology-operator", + "description": "Kubernetes operator to allow developers to create and manage RabbitMQ messaging topologies within a RabbitMQ cluster using a declarative Kubernetes API. ", + "version": "1.8.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, "high": 1, "medium": 0, "unknown": 0, @@ -52961,7 +44344,7 @@ }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1642616598, + "ts": 1661174920, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -52974,8 +44357,10 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/kubernetes-sigs/node-feature-discovery-operator", - "container_images": [] + "git_repos": "https://github.com/rabbitmq/messaging-topology-operator", + "container_images": [ + "docker.io/rabbitmqoperator/messaging-topology-operator:1.8.0" + ] }, { "package_id": "4b71534c-ca38-48b4-a05d-f20bdb219ea8", @@ -53066,7 +44451,12 @@ { "name": "hazelcast", "url": "https://quay.io/repository/hazelcast_cloud/hazelcast", - "popularity": 838.0 + "popularity": 734.0 + }, + { + "name": "hazelcast", + "url": "https://quay.io/repository/14west/hazelcast", + "popularity": 4.0 }, { "name": "hazelcast", @@ -53083,27 +44473,27 @@ { "name": "hazelcast-platform-operator", "url": "https://quay.io/repository/operator-pipeline-prod/hazelcast-platform-operator", - "popularity": 672.0 + "popularity": 845.0 }, { "name": "hazelcast", "url": "https://quay.io/repository/hazelcast_cloud/hazelcast", - "popularity": 838.0 + "popularity": 734.0 }, { "name": "ipm-hazelcast", "url": "https://quay.io/repository/mitaei/ipm-hazelcast", - "popularity": 377.0 + "popularity": 361.0 }, { "name": "public.hazelcast.hazelcast", "url": "https://quay.io/repository/siav/public.hazelcast.hazelcast", - "popularity": 534.0 + "popularity": 512.0 }, { "name": "hazelcast-platform-operator", "url": "https://quay.io/repository/operatorhubio/hazelcast-platform-operator", - "popularity": 126.0 + "popularity": 299.0 } ] }, @@ -53117,19 +44507,19 @@ "stars": 0, "display_name": "Hazelcast Platform Operator", "description": "Install Hazelcast clusters in Kubernetes environments.", - "version": "5.3.0", + "version": "5.4.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, - "unknown": 1, + "low": 29, + "high": 7, + "medium": 27, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655899199, + "ts": 1662379199, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -53144,7 +44534,7 @@ }, "git_repos": "https://docs.hazelcast.com/operator/latest/", "container_images": [ - "docker.io/hazelcast/hazelcast-platform-operator:5.3" + "docker.io/hazelcast/hazelcast-platform-operator:5.4" ] } ] @@ -53164,54 +44554,44 @@ { "name": "infinispan", "url": "https://quay.io/repository/operatorhubio/infinispan", - "popularity": 1349.0 + "popularity": 47237.0 }, { "name": "infinispan", "url": "https://quay.io/repository/openshift-community-operators/infinispan", - "popularity": 631.0 + "popularity": 338.0 }, { "name": "infinispan", "url": "https://quay.io/repository/ramgopireddy/infinispan", - "popularity": 169.0 - }, - { - "name": "infinispan", - "url": "https://quay.io/repository/operator_testing/infinispan", - "popularity": 0.0 - }, - { - "name": "infinispan", - "url": "https://quay.io/repository/remerson/infinispan", - "popularity": 0.0 + "popularity": 161.0 } ], "quay_top_images": [ - { - "name": "kogito-data-index-infinispan", - "url": "https://quay.io/repository/kiegroup/kogito-data-index-infinispan", - "popularity": 2201.0 - }, { "name": "infinispan", "url": "https://quay.io/repository/operatorhubio/infinispan", - "popularity": 1349.0 + "popularity": 47237.0 }, { - "name": "infinispan", - "url": "https://quay.io/repository/openshift-community-operators/infinispan", - "popularity": 631.0 + "name": "kogito-data-index-infinispan", + "url": "https://quay.io/repository/kiegroup/kogito-data-index-infinispan", + "popularity": 2782.0 }, { "name": "server", "url": "https://quay.io/repository/infinispan/server", - "popularity": 13789.0 + "popularity": 16063.0 }, { "name": "operator", "url": "https://quay.io/repository/infinispan/operator", - "popularity": 4802.0 + "popularity": 4843.0 + }, + { + "name": "server-native", + "url": "https://quay.io/repository/infinispan/server-native", + "popularity": 1335.0 } ] }, @@ -53225,19 +44605,19 @@ "stars": 0, "display_name": "Infinispan Operator", "description": "Create and manage Infinispan clusters.", - "version": "2.2.4", + "version": "2.2.5", "deprecated": false, "signed": false, "security_report_summary": { - "low": 46, - "high": 6, - "medium": 89, - "unknown": 1, + "low": 29, + "high": 10, + "medium": 35, + "unknown": 5, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1647352835, + "ts": 1659432638, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -53252,7 +44632,7 @@ }, "git_repos": "https://github.com/infinispan/infinispan-operator", "container_images": [ - "quay.io/infinispan/operator:2.2.4.Final" + "quay.io/infinispan/operator:2.2.5.Final" ] } ] @@ -53270,17 +44650,11 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 84, + "star_count": 85, "Docker_Url": "https://hub.docker.com/_/nuxeo", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "", + "linux" ] } ], @@ -53290,17 +44664,11 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 84, + "star_count": 85, "Docker_Url": "https://hub.docker.com/_/nuxeo", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "", + "linux" ] } ] @@ -53309,30 +44677,25 @@ "quay_exact_images": [ { "name": "nuxeo", - "url": "https://quay.io/repository/swsmirror/nuxeo", + "url": "https://quay.io/repository/dockerlibrary/nuxeo", "popularity": 0.0 }, { "name": "nuxeo", - "url": "https://quay.io/repository/dockerlibrary/nuxeo", + "url": "https://quay.io/repository/borja/nuxeo", "popularity": 0.0 }, { "name": "nuxeo", - "url": "https://quay.io/repository/borja/nuxeo", - "popularity": 2.0 + "url": "https://quay.io/repository/swsmirror/nuxeo", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "nuxeo-operator", "url": "https://quay.io/repository/operatorhubio/nuxeo-operator", - "popularity": 34.0 - }, - { - "name": "nuxeo", - "url": "https://quay.io/repository/swsmirror/nuxeo", - "popularity": 0.0 + "popularity": 27.0 }, { "name": "nuxeo-base", @@ -53347,7 +44710,12 @@ { "name": "nuxeo", "url": "https://quay.io/repository/borja/nuxeo", - "popularity": 2.0 + "popularity": 0.0 + }, + { + "name": "nuxeo-che", + "url": "https://quay.io/repository/akervern/nuxeo-che", + "popularity": 0.0 } ] }, @@ -53406,17 +44774,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 256, + "star_count": 259, "Docker_Url": "https://hub.docker.com/_/arangodb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -53426,17 +44787,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 256, + "star_count": 259, "Docker_Url": "https://hub.docker.com/_/arangodb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -53445,45 +44799,45 @@ "quay_exact_images": [ { "name": "arangodb", - "url": "https://quay.io/repository/swsmirror/arangodb", + "url": "https://quay.io/repository/official-images/arangodb", "popularity": 0.0 }, { "name": "arangodb", - "url": "https://quay.io/repository/official-images/arangodb", + "url": "https://quay.io/repository/rh_integration/arangodb", "popularity": 0.0 }, { "name": "arangodb", - "url": "https://quay.io/repository/onet/arangodb", + "url": "https://quay.io/repository/swsmirror/arangodb", "popularity": 0.0 }, { "name": "arangodb", - "url": "https://quay.io/repository/vpavlin/arangodb", + "url": "https://quay.io/repository/dockerlibrary/arangodb", "popularity": 0.0 }, { "name": "arangodb", - "url": "https://quay.io/repository/dockerlibrary/arangodb", + "url": "https://quay.io/repository/insightpool/arangodb", "popularity": 0.0 }, { "name": "arangodb", - "url": "https://quay.io/repository/insightpool/arangodb", + "url": "https://quay.io/repository/vpavlin/arangodb", "popularity": 0.0 }, { "name": "arangodb", - "url": "https://quay.io/repository/rh_integration/arangodb", + "url": "https://quay.io/repository/onet/arangodb", "popularity": 0.0 } ], "quay_top_images": [ { - "name": "arangodb", - "url": "https://quay.io/repository/swsmirror/arangodb", - "popularity": 0.0 + "name": "kube-arangodb", + "url": "https://quay.io/repository/operatorhubio/kube-arangodb", + "popularity": 29.0 }, { "name": "arangodb", @@ -53491,18 +44845,18 @@ "popularity": 0.0 }, { - "name": "kube-arangodb", - "url": "https://quay.io/repository/operatorhubio/kube-arangodb", - "popularity": 34.0 + "name": "arangodb", + "url": "https://quay.io/repository/rh_integration/arangodb", + "popularity": 0.0 }, { - "name": "ansible-arangodb", - "url": "https://quay.io/repository/andrewrothstein/ansible-arangodb", + "name": "arangodb", + "url": "https://quay.io/repository/swsmirror/arangodb", "popularity": 0.0 }, { - "name": "arangodb", - "url": "https://quay.io/repository/onet/arangodb", + "name": "arangodb-core", + "url": "https://quay.io/repository/tayloredtechnology/arangodb-core", "popularity": 0.0 } ] @@ -53557,14 +44911,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-server-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -53575,14 +44922,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-jwtproxy-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -53593,14 +44933,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-plugin-registry-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -53611,14 +44944,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-machine-exec-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -53629,14 +44955,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-unified-plugin-broker-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -53647,27 +44966,27 @@ { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 37958.0 + "popularity": 85433.0 }, { - "name": "che-server", - "url": "https://quay.io/repository/eclipse/che-server", - "popularity": 22882.0 + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 14268.0 }, { - "name": "che-plugin-sidecar", - "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 21047.0 + "name": "che-server", + "url": "https://quay.io/repository/eclipse/che-server", + "popularity": 14213.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 26579.0 + "popularity": 19966.0 }, { - "name": "che-theia", - "url": "https://quay.io/repository/eclipse/che-theia", - "popularity": 20012.0 + "name": "eclipse-che-openshift-opm-catalog", + "url": "https://quay.io/repository/eclipse/eclipse-che-openshift-opm-catalog", + "popularity": 16346.0 } ] }, @@ -53688,25 +45007,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 90, + "star_count": 94, "Docker_Url": "https://hub.docker.com/r/amazon/amazon-ecs-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -53714,17 +45018,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 25, + "star_count": 28, "Docker_Url": "https://hub.docker.com/r/amazon/amazon-ecs-sample", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -53735,27 +45032,27 @@ { "name": "amazon-eks-pod-identity-webhook", "url": "https://quay.io/repository/giantswarm/amazon-eks-pod-identity-webhook", - "popularity": 298.0 + "popularity": 596.0 }, { "name": "amazon-aws-cli", "url": "https://quay.io/repository/100x/amazon-aws-cli", - "popularity": 1384.0 + "popularity": 569.0 }, { - "name": "sensu-go-tests-amazon", - "url": "https://quay.io/repository/xlab-steampunk/sensu-go-tests-amazon", - "popularity": 44.0 + "name": "kie-server-showcase", + "url": "https://quay.io/repository/kiegroup/kie-server-showcase", + "popularity": 436.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 657.0 + "popularity": 699.0 }, { - "name": "jbpm-server-full", - "url": "https://quay.io/repository/kiegroup/jbpm-server-full", - "popularity": 238.0 + "name": "business-central-workbench", + "url": "https://quay.io/repository/kiegroup/business-central-workbench", + "popularity": 777.0 } ] }, @@ -53769,19 +45066,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon S3", "description": "AWS S3 controller is a service controller for managing S3 resources in Kubernetes", - "version": "0.1.3", + "version": "0.1.5", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 3, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655963702, + "ts": 1662484129, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -53806,39 +45103,63 @@ { "ClickHouse": [ { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_exact_images": [ + { + "name": "bitnami/clickhouse", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/clickhouse", + "OS": [ + "linux" + ] + } + ], + "dockerhub_top_images": [ + { + "name": "bitnami/clickhouse", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/clickhouse", + "OS": [ + "linux" + ] + } + ] }, { "quay_exact_images": [ { "name": "clickhouse", "url": "https://quay.io/repository/operatorhubio/clickhouse", - "popularity": 832.0 + "popularity": 702.0 }, { "name": "clickhouse", - "url": "https://quay.io/repository/binarysoftware/clickhouse", - "popularity": 0.0 + "url": "https://quay.io/repository/truecharts/clickhouse", + "popularity": 266.0 }, { "name": "clickhouse", - "url": "https://quay.io/repository/excoin/clickhouse", + "url": "https://quay.io/repository/binarysoftware/clickhouse", "popularity": 0.0 }, { "name": "clickhouse", - "url": "https://quay.io/repository/truecharts/clickhouse", - "popularity": 10.0 + "url": "https://quay.io/repository/excoin/clickhouse", + "popularity": 0.0 }, { "name": "clickhouse", - "url": "https://quay.io/repository/iyuroch/clickhouse", + "url": "https://quay.io/application/sunsingerus/clickhouse", "popularity": 0.0 }, { "name": "clickhouse", - "url": "https://quay.io/application/sunsingerus/clickhouse", + "url": "https://quay.io/repository/iyuroch/clickhouse", "popularity": 0.0 } ], @@ -53846,27 +45167,27 @@ { "name": "clickhouse", "url": "https://quay.io/repository/operatorhubio/clickhouse", - "popularity": 832.0 + "popularity": 702.0 }, { "name": "clickhouse", - "url": "https://quay.io/repository/binarysoftware/clickhouse", - "popularity": 0.0 + "url": "https://quay.io/repository/truecharts/clickhouse", + "popularity": 266.0 }, { "name": "clickhouse-exporter", "url": "https://quay.io/repository/whisk/clickhouse-exporter", "popularity": 7.0 }, - { - "name": "clickhouse", - "url": "https://quay.io/repository/truecharts/clickhouse", - "popularity": 10.0 - }, { "name": "ckman", "url": "https://quay.io/repository/housepower/ckman", - "popularity": 29.0 + "popularity": 8.0 + }, + { + "name": "clickhouse_sinker", + "url": "https://quay.io/repository/housepower/clickhouse_sinker", + "popularity": 88.0 } ] }, @@ -53877,7 +45198,7 @@ "name": "clickhouse", "normalized_name": "clickhouse", "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", - "stars": 5, + "stars": 7, "display_name": "Altinity Operator for ClickHouse", "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", "version": "0.18.3", @@ -53916,17 +45237,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 43, + "star_count": 51, "Docker_Url": "https://hub.docker.com/r/bitnami/minio", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -53937,30 +45251,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/minio", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -53973,30 +45264,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/minio", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54007,14 +45275,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/rancher/minio-minio", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54022,17 +45283,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 43, + "star_count": 51, "Docker_Url": "https://hub.docker.com/r/bitnami/minio", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54043,30 +45297,18 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/minio-mc", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "ibmcom/minio-s390x", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/minio-s390x", + "OS": [ + "linux" ] } ] @@ -54076,89 +45318,89 @@ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { "name": "minio", - "url": "https://quay.io/repository/cloudservices/minio", - "popularity": 2836.0 + "url": "https://quay.io/repository/kylecooley/minio", + "popularity": 89770.0 }, { "name": "minio", - "url": "https://quay.io/repository/devtron/minio", - "popularity": 3763.0 + "url": "https://quay.io/repository/artisan/minio", + "popularity": 11703.0 }, { "name": "minio", - "url": "https://quay.io/repository/uninett/minio", - "popularity": 29.0 + "url": "https://quay.io/repository/cloudservices/minio", + "popularity": 1672.0 }, { "name": "minio", - "url": "https://quay.io/repository/riotkit/minio", - "popularity": 0.0 + "url": "https://quay.io/repository/devtron/minio", + "popularity": 1144.0 }, { "name": "minio", - "url": "https://quay.io/repository/ricardbejarano/minio", - "popularity": 13.0 + "url": "https://quay.io/repository/uninett/minio", + "popularity": 26.0 }, { "name": "minio", - "url": "https://quay.io/repository/deisci/minio", - "popularity": 0.0 + "url": "https://quay.io/repository/kubevirt/minio", + "popularity": 110.0 }, { "name": "minio", - "url": "https://quay.io/repository/nird-toolkit/minio", - "popularity": 0.0 + "url": "https://quay.io/repository/stackstate/minio", + "popularity": 455.0 }, { "name": "minio", - "url": "https://quay.io/repository/kubevirt/minio", - "popularity": 316.0 + "url": "https://quay.io/repository/wakaba/minio", + "popularity": 233.0 }, { "name": "minio", - "url": "https://quay.io/repository/stackstate/minio", - "popularity": 358.0 + "url": "https://quay.io/repository/anuta/minio", + "popularity": 260.0 }, { "name": "minio", - "url": "https://quay.io/repository/wakaba/minio", - "popularity": 215.0 + "url": "https://quay.io/repository/sdase/minio", + "popularity": 180.0 }, { "name": "minio", - "url": "https://quay.io/repository/anuta/minio", - "popularity": 275.0 + "url": "https://quay.io/repository/truecharts/minio", + "popularity": 317.0 } ], "quay_top_images": [ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 369342.0 + "popularity": 413778.0 }, { "name": "minio", - "url": "https://quay.io/repository/cloudservices/minio", - "popularity": 2836.0 + "url": "https://quay.io/repository/kylecooley/minio", + "popularity": 89770.0 }, { - "name": "minio-s3-test-harness", - "url": "https://quay.io/repository/fossa/minio-s3-test-harness", - "popularity": 5144.0 + "name": "minio", + "url": "https://quay.io/repository/artisan/minio", + "popularity": 11703.0 }, { - "name": "minio", - "url": "https://quay.io/repository/devtron/minio", - "popularity": 3763.0 + "name": "minio-s3-test-harness", + "url": "https://quay.io/repository/fossa/minio-s3-test-harness", + "popularity": 5196.0 }, { - "name": "minio-operator-rhmp", - "url": "https://quay.io/repository/operator-pipeline-prod/minio-operator-rhmp", - "popularity": 1680.0 + "name": "minio-operator", + "url": "https://quay.io/repository/operator-pipeline-prod/minio-operator", + "popularity": 2197.0 } ] }, @@ -54172,19 +45414,19 @@ "stars": 1, "display_name": "Minio Operator", "description": "MinIO is a Kubernetes-native high performance object store with an\nS3-compatible API. The MinIO Operator supports deploying MinIO Tenants\nonto any Kubernetes.", - "version": "4.4.25", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 0, - "medium": 33, + "low": 29, + "high": 1, + "medium": 26, "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655928035, + "ts": 1663223445, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -54217,25 +45459,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5707, + "star_count": 5802, "Docker_Url": "https://hub.docker.com/_/elasticsearch", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54243,17 +45470,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 55, + "star_count": 59, "Docker_Url": "https://hub.docker.com/r/bitnami/elasticsearch", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54264,22 +45484,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/elasticsearch", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54290,14 +45495,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/rancher/elasticsearch", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] } ], @@ -54307,25 +45505,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5707, + "star_count": 5802, "Docker_Url": "https://hub.docker.com/_/elasticsearch", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54333,17 +45516,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 55, + "star_count": 59, "Docker_Url": "https://hub.docker.com/r/bitnami/elasticsearch", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54354,22 +45530,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/elasticsearch", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54380,14 +45541,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/rancher/elasticsearch", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] }, { @@ -54398,14 +45552,7 @@ "star_count": 4, "Docker_Url": "https://hub.docker.com/r/bitnami/elasticsearch-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -54415,69 +45562,59 @@ { "name": "elasticsearch", "url": "https://quay.io/repository/fluentd_elasticsearch/elasticsearch", - "popularity": 66322.0 + "popularity": 51189.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/crowdworks/elasticsearch", - "popularity": 41474.0 + "popularity": 37099.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/trackmaven/elasticsearch", - "popularity": 13456.0 + "popularity": 11170.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/centerforopenscience/elasticsearch", - "popularity": 8360.0 + "popularity": 7802.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/agari/elasticsearch", - "popularity": 1476.0 - }, - { - "name": "elasticsearch", - "url": "https://quay.io/repository/openshifttest/elasticsearch", - "popularity": 487.0 + "popularity": 1296.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/karbon/elasticsearch", - "popularity": 1206.0 - }, - { - "name": "elasticsearch", - "url": "https://quay.io/repository/stackstate/elasticsearch", - "popularity": 909.0 + "popularity": 1103.0 } ], "quay_top_images": [ { "name": "elasticsearch-exporter", "url": "https://quay.io/repository/prometheuscommunity/elasticsearch-exporter", - "popularity": 352426.0 + "popularity": 283558.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/fluentd_elasticsearch/elasticsearch", - "popularity": 66322.0 + "popularity": 51189.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/crowdworks/elasticsearch", - "popularity": 41474.0 + "popularity": 37099.0 }, { "name": "docker-elasticsearch-kubernetes", "url": "https://quay.io/repository/pires/docker-elasticsearch-kubernetes", - "popularity": 40898.0 + "popularity": 35382.0 }, { - "name": "elasticsearch-curator", - "url": "https://quay.io/repository/widen/elasticsearch-curator", - "popularity": 26340.0 + "name": "elasticsearch-master", + "url": "https://quay.io/repository/devops/elasticsearch-master", + "popularity": 11716.0 } ] }, @@ -54524,22 +45661,22 @@ "name": "elastic-cloud-eck", "normalized_name": "elastic-cloud-eck", "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, + "stars": 14, "display_name": "Elasticsearch (ECK) Operator", "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", + "version": "2.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 1, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657006653, + "ts": 1661782377, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -54596,22 +45733,22 @@ "name": "logging-operator", "normalized_name": "logging-operator", "logo_image_id": "0fb27181-3404-4379-a8fc-7ebdbf801340", - "stars": 3, + "stars": 4, "display_name": "Logging Operator", "description": "A golang-based operator to create and manage EFK (Elasticsearch, Fluentd, and Kibana) stack on Kubernetes.", - "version": "0.3.0", + "version": "0.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657182636, + "ts": 1662195638, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -54626,7 +45763,7 @@ }, "git_repos": "https://github.com/ot-container-kit/logging-operator", "container_images": [ - "quay.io/opstree/logging-operator:v0.3.0" + "quay.io/opstree/logging-operator:v0.4.0" ] }, { @@ -54721,17 +45858,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 156, + "star_count": 157, "Docker_Url": "https://hub.docker.com/r/percona/percona-xtradb-cluster", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54739,17 +45869,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 14, + "star_count": 15, "Docker_Url": "https://hub.docker.com/r/percona/percona-xtradb-cluster-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -54760,27 +45883,27 @@ { "name": "percona-xtradb-cluster-operator", "url": "https://quay.io/repository/operatorhubio/percona-xtradb-cluster-operator", - "popularity": 298.0 + "popularity": 234.0 }, { "name": "percona-xtradb-cluster-operator", "url": "https://quay.io/repository/openshift-community-operators/percona-xtradb-cluster-operator", - "popularity": 593.0 + "popularity": 140.0 }, { "name": "percona-xtradb-cluster-operator-certified", "url": "https://quay.io/repository/operator-pipeline-prod/percona-xtradb-cluster-operator-certified", - "popularity": 336.0 + "popularity": 338.0 }, { "name": "percona-xtradb-cluster-operator-certified-rhmp", "url": "https://quay.io/repository/operator-pipeline-prod/percona-xtradb-cluster-operator-certified-rhmp", - "popularity": 335.0 + "popularity": 338.0 }, { "name": "percona-xtradb-cluster-operator", "url": "https://quay.io/repository/operator_testing/percona-xtradb-cluster-operator", - "popularity": 40.0 + "popularity": 0.0 } ] }, @@ -54798,10 +45921,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, - "unknown": 1, + "low": 31, + "high": 13, + "medium": 61, + "unknown": 4, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -54837,17 +45960,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 30, + "star_count": 35, "Docker_Url": "https://hub.docker.com/r/bitnami/keycloak", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -54857,17 +45973,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 30, + "star_count": 35, "Docker_Url": "https://hub.docker.com/r/bitnami/keycloak", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -54878,14 +45987,7 @@ "star_count": 7, "Docker_Url": "https://hub.docker.com/r/bitnami/keycloak-gatekeeper", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -54895,44 +45997,39 @@ { "name": "keycloak", "url": "https://quay.io/repository/keycloak/keycloak", - "popularity": 1971447.0 - }, - { - "name": "keycloak", - "url": "https://quay.io/repository/iamplus/keycloak", - "popularity": 0.0 + "popularity": 2432667.0 }, { "name": "keycloak", - "url": "https://quay.io/repository/ukhomeofficedigital/keycloak", - "popularity": 42.0 + "url": "https://quay.io/repository/arrowhacks/keycloak", + "popularity": 1920.0 } ], "quay_top_images": [ { "name": "keycloak", "url": "https://quay.io/repository/keycloak/keycloak", - "popularity": 1971447.0 + "popularity": 2432667.0 }, { "name": "keycloak-operator", "url": "https://quay.io/repository/keycloak/keycloak-operator", - "popularity": 53364.0 + "popularity": 86926.0 }, { "name": "keycloak-init-container", "url": "https://quay.io/repository/keycloak/keycloak-init-container", - "popularity": 50501.0 + "popularity": 50113.0 }, { "name": "keycloak-gatekeeper", "url": "https://quay.io/repository/keycloak/keycloak-gatekeeper", - "popularity": 12348.0 + "popularity": 13537.0 }, { "name": "keycloak-proxy", "url": "https://quay.io/repository/gambol99/keycloak-proxy", - "popularity": 5942.0 + "popularity": 6152.0 } ] }, @@ -54943,22 +46040,22 @@ "name": "keycloak-operator", "normalized_name": "keycloak-operator", "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", - "stars": 14, + "stars": 15, "display_name": "Keycloak Operator", "description": "An Operator for installing and managing Keycloak", - "version": "20.0.0-alpha.3", + "version": "20.0.0-alpha.6", "deprecated": false, "signed": false, "security_report_summary": { - "low": 38, - "high": 0, - "medium": 47, + "low": 40, + "high": 1, + "medium": 46, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656518437, + "ts": 1663255840, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -54973,7 +46070,7 @@ }, "git_repos": "https://github.com/keycloak/keycloak", "container_images": [ - "quay.io/keycloak/keycloak-operator:18.0.2" + "quay.io/keycloak/keycloak-operator:19.0.2" ] } ] @@ -54991,33 +46088,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2284, + "star_count": 2366, "Docker_Url": "https://hub.docker.com/r/grafana/grafana", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -55027,33 +46101,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2284, + "star_count": 2366, "Docker_Url": "https://hub.docker.com/r/grafana/grafana", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -55061,33 +46112,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 33, + "star_count": 40, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -55098,30 +46126,7 @@ "star_count": 11, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-enterprise", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -55132,92 +46137,64 @@ "star_count": 3, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-dev", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] }, { "quay_exact_images": [ - { - "name": "grafana", - "url": "https://quay.io/repository/tamr/grafana", - "popularity": 84.0 - }, { "name": "grafana", "url": "https://quay.io/repository/opencloudio/grafana", - "popularity": 1638.0 + "popularity": 2423.0 }, { "name": "grafana", - "url": "https://quay.io/repository/testing-farm/grafana", - "popularity": 172.0 + "url": "https://quay.io/repository/devtron/grafana", + "popularity": 884.0 }, { "name": "grafana", "url": "https://quay.io/repository/cybozu/grafana", - "popularity": 971.0 + "popularity": 1000.0 }, { "name": "grafana", "url": "https://quay.io/repository/sisense/grafana", - "popularity": 883.0 + "popularity": 908.0 }, { "name": "grafana", - "url": "https://quay.io/repository/deisci/grafana", - "popularity": 0.0 + "url": "https://quay.io/repository/cloud-bulldozer/grafana", + "popularity": 832.0 } ], "quay_top_images": [ { "name": "grafana-operator", "url": "https://quay.io/repository/grafana-operator/grafana-operator", - "popularity": 198763.0 + "popularity": 259459.0 }, { "name": "grafana-operator", "url": "https://quay.io/repository/integreatly/grafana-operator", - "popularity": 57306.0 + "popularity": 62269.0 }, { "name": "ibm-monitoring-grafana-operator", "url": "https://quay.io/repository/opencloudio/ibm-monitoring-grafana-operator", - "popularity": 18976.0 + "popularity": 12575.0 }, { "name": "ceph-grafana", "url": "https://quay.io/repository/ceph/ceph-grafana", - "popularity": 10710.0 + "popularity": 9910.0 }, { "name": "origin-grafana", "url": "https://quay.io/repository/openshift/origin-grafana", - "popularity": 3932.0 + "popularity": 4306.0 } ] }, @@ -55231,19 +46208,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.5.0", + "version": "4.6.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 0, - "medium": 3, + "low": 7, + "high": 1, + "medium": 5, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657706412, + "ts": 1660824012, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -55258,7 +46235,7 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.5.0" + "quay.io/grafana-operator/grafana-operator:v4.6.0" ] }, { @@ -55316,17 +46293,27 @@ { "name": "mattermost", "url": "https://quay.io/repository/jostone/mattermost", - "popularity": 170.0 + "popularity": 168.0 }, { "name": "mattermost", - "url": "https://quay.io/repository/jasl8r/mattermost", - "popularity": 0.0 + "url": "https://quay.io/repository/truecharts/mattermost", + "popularity": 175.0 }, { "name": "mattermost", "url": "https://quay.io/repository/fodoj/mattermost", - "popularity": 44.0 + "popularity": 22.0 + }, + { + "name": "mattermost", + "url": "https://quay.io/repository/ecasa/mattermost", + "popularity": 3.0 + }, + { + "name": "mattermost", + "url": "https://quay.io/repository/ukhomeofficedigital/mattermost", + "popularity": 2.0 }, { "name": "mattermost", @@ -55335,7 +46322,7 @@ }, { "name": "mattermost", - "url": "https://quay.io/repository/ukhomeofficedigital/mattermost", + "url": "https://quay.io/repository/jasl8r/mattermost", "popularity": 0.0 } ], @@ -55343,27 +46330,27 @@ { "name": "mattermost", "url": "https://quay.io/repository/jostone/mattermost", - "popularity": 170.0 + "popularity": 168.0 }, { - "name": "mattermost-openshift-customized", - "url": "https://quay.io/repository/duke253/mattermost-openshift-customized", - "popularity": 0.0 + "name": "mattermost", + "url": "https://quay.io/repository/truecharts/mattermost", + "popularity": 175.0 }, { "name": "mattermost-operator", "url": "https://quay.io/repository/operatorhubio/mattermost-operator", - "popularity": 32.0 + "popularity": 27.0 }, { "name": "mattermost", "url": "https://quay.io/repository/fodoj/mattermost", - "popularity": 44.0 + "popularity": 22.0 }, { - "name": "mattermost-operator", - "url": "https://quay.io/repository/openshift-community-operators/mattermost-operator", - "popularity": 15.0 + "name": "teleport-plugin-mattermost", + "url": "https://quay.io/repository/gravitational/teleport-plugin-mattermost", + "popularity": 12.0 } ] }, @@ -55423,17 +46410,17 @@ "quay_exact_images": [ { "name": "synapse", - "url": "https://quay.io/repository/dockernohub/synapse", - "popularity": 0.0 + "url": "https://quay.io/repository/jostone/synapse", + "popularity": 168.0 }, { "name": "synapse", - "url": "https://quay.io/repository/jostone/synapse", - "popularity": 170.0 + "url": "https://quay.io/repository/truecharts/synapse", + "popularity": 246.0 }, { "name": "synapse", - "url": "https://quay.io/repository/snapserv/synapse", + "url": "https://quay.io/repository/tommytran732/synapse", "popularity": 0.0 }, { @@ -55443,35 +46430,35 @@ }, { "name": "synapse", - "url": "https://quay.io/repository/carloscarnero/synapse", + "url": "https://quay.io/repository/rickypai/synapse", "popularity": 0.0 } ], "quay_top_images": [ - { - "name": "synapse", - "url": "https://quay.io/repository/dockernohub/synapse", - "popularity": 0.0 - }, { "name": "synapse", "url": "https://quay.io/repository/jostone/synapse", - "popularity": 170.0 + "popularity": 168.0 }, { - "name": "matrix-synapse", - "url": "https://quay.io/repository/tlemarchand/matrix-synapse", - "popularity": 13.0 + "name": "synapse", + "url": "https://quay.io/repository/truecharts/synapse", + "popularity": 246.0 }, { "name": "synapse-helm", "url": "https://quay.io/repository/operatorhubio/synapse-helm", - "popularity": 32.0 + "popularity": 27.0 }, { "name": "synapse-helm", "url": "https://quay.io/repository/mgoerens/synapse-helm", - "popularity": 23.0 + "popularity": 2.0 + }, + { + "name": "matrix-synapse", + "url": "https://quay.io/repository/truecharts/matrix-synapse", + "popularity": 8.0 } ] }, @@ -55488,11 +46475,11 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 46, - "high": 14, - "medium": 120, - "unknown": 4, - "critical": 0 + "low": 55, + "high": 22, + "medium": 135, + "unknown": 13, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -55530,17 +46517,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 383, + "star_count": 388, "Docker_Url": "https://hub.docker.com/r/google/cloud-sdk", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -55551,27 +46531,27 @@ { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1158880.0 + "popularity": 1917609.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 619283.0 + "popularity": 734625.0 }, { "name": "icp-iam-onboarding", "url": "https://quay.io/repository/opencloudio/icp-iam-onboarding", - "popularity": 543699.0 + "popularity": 364921.0 }, { - "name": "iam-policy-decision", - "url": "https://quay.io/repository/opencloudio/iam-policy-decision", - "popularity": 391057.0 + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 413778.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 } ] }, @@ -55621,19 +46601,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon IAM", "description": "AWS IAM controller is a service controller for managing IAM resources in Kubernetes", - "version": "0.0.18", + "version": "0.0.21", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656049570, + "ts": 1663020652, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -55665,29 +46645,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "knative-serving-package", - "url": "https://quay.io/repository/failk8s/knative-serving-package", - "popularity": 5475.0 - }, - { - "name": "knative-eventing-sources-heartbeats", - "url": "https://quay.io/repository/openshift-knative/knative-eventing-sources-heartbeats", - "popularity": 10591.0 + "name": "knative-eventing-sources-event-display", + "url": "https://quay.io/repository/openshift-knative/knative-eventing-sources-event-display", + "popularity": 3306.0 }, { "name": "knative-operator", "url": "https://quay.io/repository/vollerchris/knative-operator", - "popularity": 41776.0 + "popularity": 41679.0 }, { - "name": "knative-eventing-sources-event-display", - "url": "https://quay.io/repository/openshift-knative/knative-eventing-sources-event-display", - "popularity": 3558.0 + "name": "knative-serving-package", + "url": "https://quay.io/repository/failk8s/knative-serving-package", + "popularity": 5952.0 }, { "name": "knative-serving-storage-version-migration", "url": "https://quay.io/repository/openshift-knative/knative-serving-storage-version-migration", - "popularity": 3011.0 + "popularity": 3128.0 + }, + { + "name": "knative-eventing-storage-version-migration", + "url": "https://quay.io/repository/openshift-knative/knative-eventing-storage-version-migration", + "popularity": 3635.0 } ] }, @@ -55698,15 +46678,22 @@ "name": "knative-operator", "normalized_name": "knative-operator", "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, + "stars": 13, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", + "version": "1.7.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 0, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1626134400, + "ts": 1661385600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -55734,8 +46721,8 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, + "high": 1, + "medium": 1, "unknown": 0, "critical": 0 }, @@ -55765,12 +46752,19 @@ "stars": 0, "display_name": "YAKS Operator", "description": "YAKS is a platform to enable Cloud Native BDD testing on Kubernetes.", - "version": "0.10.0", + "version": "0.11.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 138, + "high": 49, + "medium": 175, + "unknown": 4, + "critical": 13 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1601001900, + "ts": 1663142166, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -55785,7 +46779,7 @@ }, "git_repos": "https://github.com/citrusframework/yaks", "container_images": [ - "docker.io/citrusframework/yaks:0.10.0" + "docker.io/citrusframework/yaks:0.11.0" ] } ] @@ -55807,56 +46801,18 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ubuntu/cassandra", - "Official image": false, - "Verified Publisher": true, + "name": "cassandra", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/ubuntu/cassandra", + "star_count": 1411, + "Docker_Url": "https://hub.docker.com/_/cassandra", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -55867,14 +46823,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/circleci/cassandra", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -55885,64 +46834,18 @@ "star_count": 44, "Docker_Url": "https://hub.docker.com/r/bitnami/cassandra", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "cassandra", - "Official image": true, - "Verified Publisher": false, + "name": "ubuntu/cassandra", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 1390, - "Docker_Url": "https://hub.docker.com/_/cassandra", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ubuntu/cassandra", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -55953,27 +46856,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -55991,10 +46894,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 7, - "high": 0, - "medium": 7, - "unknown": 1, + "low": 8, + "high": 6, + "medium": 8, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -56034,14 +46937,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/pachyderm/kubeflow-worker", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -56051,39 +46947,34 @@ { "name": "kubeflow", "url": "https://quay.io/repository/operatorhubio/kubeflow", - "popularity": 581.0 - }, - { - "name": "kubeflow", - "url": "https://quay.io/repository/llasmith/kubeflow", - "popularity": 0.0 + "popularity": 332.0 } ], "quay_top_images": [ { - "name": "kubeflow-notebook-controller-ppc64le", - "url": "https://quay.io/repository/ibm/kubeflow-notebook-controller-ppc64le", - "popularity": 17.0 + "name": "kubeflow-notebook-image-ppc64le", + "url": "https://quay.io/repository/ibm/kubeflow-notebook-image-ppc64le", + "popularity": 2924.0 }, { "name": "kubeflow", "url": "https://quay.io/repository/operatorhubio/kubeflow", - "popularity": 581.0 - }, - { - "name": "kubeflow-notebook-controller", - "url": "https://quay.io/repository/opendatahub/kubeflow-notebook-controller", - "popularity": 124.0 + "popularity": 332.0 }, { "name": "kubeflow-viewer-crd-controller-ppc64le", "url": "https://quay.io/repository/ibm/kubeflow-viewer-crd-controller-ppc64le", - "popularity": 20.0 + "popularity": 26.0 }, { - "name": "kubeflow-notebook-image-ppc64le", - "url": "https://quay.io/repository/ibm/kubeflow-notebook-image-ppc64le", - "popularity": 26.0 + "name": "kubeflow-notebook-controller", + "url": "https://quay.io/repository/opendatahub/kubeflow-notebook-controller", + "popularity": 101.0 + }, + { + "name": "kubeflow-visualization-server-ppc64le", + "url": "https://quay.io/repository/ibm/kubeflow-visualization-server-ppc64le", + "popularity": 16.0 } ] }, @@ -56094,7 +46985,7 @@ "name": "kubeflow", "normalized_name": "kubeflow", "logo_image_id": "cb5e7dba-ea2d-4a65-a3b6-7def9d80358f", - "stars": 4, + "stars": 6, "display_name": "Kubeflow", "description": "Kubeflow Operator for deployment and management of Kubeflow", "version": "1.2.0", @@ -56143,22 +47034,22 @@ { "name": "openshift-qiskit-operator", "url": "https://quay.io/repository/operatorhubio/openshift-qiskit-operator", - "popularity": 102.0 + "popularity": 81.0 }, { "name": "openshift-qiskit-operator", "url": "https://quay.io/repository/openshift-community-operators/openshift-qiskit-operator", - "popularity": 87.0 + "popularity": 45.0 }, { "name": "qiskit-op", "url": "https://quay.io/repository/husky_parul/qiskit-op", - "popularity": 38.0 + "popularity": 4.0 }, { "name": "centos-qiskit-jupyter", "url": "https://quay.io/repository/husky_parul/centos-qiskit-jupyter", - "popularity": 10.0 + "popularity": 0.0 }, { "name": "qiskit-playground", @@ -56182,9 +47073,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 2, - "medium": 1, - "unknown": 1, + "high": 10, + "medium": 3, + "unknown": 5, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -56249,22 +47140,37 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "cimg/azure", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/azure", + "OS": [ + "linux" + ] + }, { "name": "bitnami/azure-cli", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/bitnami/azure-cli", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "lacework/azure-cfg-cli", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/lacework/azure-cfg-cli", + "OS": [ + "linux" ] } ] @@ -56275,27 +47181,27 @@ { "name": "azure-pipelines-test-container", "url": "https://quay.io/repository/ansible/azure-pipelines-test-container", - "popularity": 39786.0 + "popularity": 36397.0 }, { "name": "origin-azure-machine-controllers", "url": "https://quay.io/repository/openshift/origin-azure-machine-controllers", - "popularity": 3674.0 + "popularity": 3711.0 }, { - "name": "velero-plugin-for-microsoft-azure", - "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3907.0 + "name": "origin-azure-cloud-node-manager", + "url": "https://quay.io/repository/openshift/origin-azure-cloud-node-manager", + "popularity": 2703.0 }, { - "name": "origin-azure-disk-csi-driver", - "url": "https://quay.io/repository/openshift/origin-azure-disk-csi-driver", - "popularity": 2672.0 + "name": "origin-azure-cloud-controller-manager", + "url": "https://quay.io/repository/openshift/origin-azure-cloud-controller-manager", + "popularity": 2703.0 }, { - "name": "operator-azure-ci", - "url": "https://quay.io/repository/cilium/operator-azure-ci", - "popularity": 5788.0 + "name": "origin-azure-disk-csi-driver-operator", + "url": "https://quay.io/repository/openshift/origin-azure-disk-csi-driver-operator", + "popularity": 2703.0 } ] }, @@ -56313,9 +47219,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, + "high": 5, + "medium": 1, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -56351,30 +47257,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "kafka", - "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 - }, { "name": "topic-strimzi-operator", "url": "https://quay.io/repository/vollerchris/topic-strimzi-operator", - "popularity": 41770.0 + "popularity": 41691.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { - "name": "jmxtrans", - "url": "https://quay.io/repository/strimzi/jmxtrans", - "popularity": 23366.0 + "name": "strimzi-kafka-operator", + "url": "https://quay.io/repository/openshift-community-operators/strimzi-kafka-operator", + "popularity": 14646.0 }, { "name": "kafka-bridge", "url": "https://quay.io/repository/strimzi/kafka-bridge", - "popularity": 14164.0 + "popularity": 19967.0 } ] }, @@ -56385,22 +47291,22 @@ "name": "strimzi-kafka-operator", "normalized_name": "strimzi-kafka-operator", "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", - "stars": 18, + "stars": 20, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.30.0", + "version": "0.31.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 277, - "high": 13, - "medium": 348, - "unknown": 5, - "critical": 4 + "low": 527, + "high": 36, + "medium": 484, + "unknown": 7, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657929610, + "ts": 1663708020, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -56419,6 +47325,9 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -56442,7 +47351,7 @@ { "name": "sematext", "url": "https://quay.io/repository/operatorhubio/sematext", - "popularity": 91.0 + "popularity": 54.0 }, { "name": "sematext", @@ -56459,7 +47368,7 @@ { "name": "sematext", "url": "https://quay.io/repository/operatorhubio/sematext", - "popularity": 91.0 + "popularity": 54.0 }, { "name": "sematext", @@ -56522,29 +47431,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "che-plugin-artifacts-broker", - "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19392.0 + "name": "eclipse-che-openshift-opm-catalog", + "url": "https://quay.io/repository/eclipse/eclipse-che-openshift-opm-catalog", + "popularity": 16346.0 }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 37958.0 + "popularity": 85433.0 + }, + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 14268.0 }, { "name": "che-plugin-sidecar", "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 21047.0 + "popularity": 12831.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 26579.0 - }, - { - "name": "che-plugin-registry", - "url": "https://quay.io/repository/eclipse/che-plugin-registry", - "popularity": 14198.0 + "popularity": 19966.0 } ] }, @@ -56562,9 +47471,9 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 46, - "high": 4, - "medium": 88, + "low": 52, + "high": 5, + "medium": 99, "unknown": 0, "critical": 0 }, @@ -56602,29 +47511,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "che-plugin-artifacts-broker", - "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19392.0 + "name": "eclipse-che-openshift-opm-catalog", + "url": "https://quay.io/repository/eclipse/eclipse-che-openshift-opm-catalog", + "popularity": 16346.0 + }, + { + "name": "ditto-index", + "url": "https://quay.io/repository/olmqe/ditto-index", + "popularity": 13881.0 }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 37958.0 + "popularity": 85433.0 }, { - "name": "che-plugin-sidecar", - "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 21047.0 + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 14268.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 26579.0 - }, - { - "name": "che-plugin-registry", - "url": "https://quay.io/repository/eclipse/che-plugin-registry", - "popularity": 14198.0 + "popularity": 19966.0 } ] }, @@ -56642,9 +47551,9 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 4, - "medium": 46, + "low": 31, + "high": 5, + "medium": 60, "unknown": 0, "critical": 0 }, @@ -56681,41 +47590,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4945, + "star_count": 5062, "Docker_Url": "https://hub.docker.com/_/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -56723,17 +47601,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 164, + "star_count": 167, "Docker_Url": "https://hub.docker.com/r/bitnami/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -56744,14 +47615,7 @@ "star_count": 4, "Docker_Url": "https://hub.docker.com/r/circleci/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -56762,14 +47626,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -56780,14 +47637,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/cimg/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -56800,14 +47650,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/cimg/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -56818,14 +47661,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -56836,14 +47672,7 @@ "star_count": 4, "Docker_Url": "https://hub.docker.com/r/circleci/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -56851,17 +47680,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 164, + "star_count": 167, "Docker_Url": "https://hub.docker.com/r/bitnami/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -56869,41 +47691,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4945, + "star_count": 5062, "Docker_Url": "https://hub.docker.com/_/mariadb", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -56913,44 +47704,54 @@ { "name": "mariadb", "url": "https://quay.io/repository/startx/mariadb", - "popularity": 15330.0 + "popularity": 14694.0 }, { "name": "mariadb", "url": "https://quay.io/repository/metal3-io/mariadb", - "popularity": 1568.0 + "popularity": 2242.0 }, { "name": "mariadb", - "url": "https://quay.io/repository/linuxserver.io/mariadb", - "popularity": 7.0 + "url": "https://quay.io/repository/truecharts/mariadb", + "popularity": 1346.0 + }, + { + "name": "mariadb", + "url": "https://quay.io/repository/flysangel/mariadb", + "popularity": 286.0 + }, + { + "name": "mariadb", + "url": "https://quay.io/repository/nvlab/mariadb", + "popularity": 170.0 } ], "quay_top_images": [ { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 146865.0 + "popularity": 176289.0 }, { "name": "mariadb", "url": "https://quay.io/repository/startx/mariadb", - "popularity": 15330.0 + "popularity": 14694.0 }, { - "name": "mariadb", - "url": "https://quay.io/repository/metal3-io/mariadb", - "popularity": 1568.0 + "name": "mariadb-server", + "url": "https://quay.io/repository/openstack.kolla/mariadb-server", + "popularity": 3174.0 }, { - "name": "todolist-mariadb-go", - "url": "https://quay.io/repository/mferrato/todolist-mariadb-go", - "popularity": 1412.0 + "name": "mariadb-clustercheck", + "url": "https://quay.io/repository/openstack.kolla/mariadb-clustercheck", + "popularity": 3063.0 } ] }, @@ -57061,38 +47862,32 @@ "dockerhub_top_images": [] }, { - "quay_exact_images": [ - { - "name": "istio", - "url": "https://quay.io/repository/aspenmesh/istio", - "popularity": 0.0 - } - ], + "quay_exact_images": [], "quay_top_images": [ { "name": "istio-workspace", "url": "https://quay.io/repository/maistra/istio-workspace", - "popularity": 40139.0 - }, - { - "name": "ambassador", - "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "popularity": 6534.0 }, { "name": "am-istio", "url": "https://quay.io/repository/aspenmesh/am-istio", - "popularity": 8011.0 + "popularity": 9597.0 }, { - "name": "istio-ubi8-operator", - "url": "https://quay.io/repository/maistra/istio-ubi8-operator", - "popularity": 2019.0 + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 337637.0 }, { "name": "cert-manager-istio-csr", "url": "https://quay.io/repository/jetstack/cert-manager-istio-csr", - "popularity": 2467.0 + "popularity": 4081.0 + }, + { + "name": "istio-ubi8-operator", + "url": "https://quay.io/repository/maistra/istio-ubi8-operator", + "popularity": 1908.0 } ] }, @@ -57103,7 +47898,7 @@ "name": "istio", "normalized_name": "istio", "logo_image_id": "f41c0b42-c27f-4a1e-83cf-d631dacbc249", - "stars": 3, + "stars": 4, "display_name": "Istio", "description": "Installs and maintain Istio service mesh", "version": "0.1.6", @@ -57142,19 +47937,19 @@ "stars": 0, "display_name": "Istio Workspace", "description": "Safely develop and test on any Kubernetes cluster without affecting others.", - "version": "0.5.1", + "version": "0.5.2", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, - "unknown": 0, - "critical": 0 + "low": 29, + "high": 2, + "medium": 30, + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657820866, + "ts": 1659962739, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -57169,7 +47964,7 @@ }, "git_repos": "https://github.com/maistra/istio-workspace", "container_images": [ - "quay.io/maistra/istio-workspace:v0.5.1" + "quay.io/maistra/istio-workspace:v0.5.2" ] }, { @@ -57180,19 +47975,19 @@ "stars": 1, "display_name": "Kiali Operator", "description": "Kiali project provides answers to the questions: What microservices are part of my Istio service mesh and how are they connected?", - "version": "1.53.0", + "version": "1.56.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 42, - "high": 2, + "low": 82, + "high": 11, "medium": 58, - "unknown": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656919344, + "ts": 1662363247, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -57207,7 +48002,7 @@ }, "git_repos": "https://github.com/kiali/kiali", "container_images": [ - "quay.io/kiali/kiali-operator:v1.53.0" + "quay.io/kiali/kiali-operator:v1.56.0" ] } ] @@ -57225,79 +48020,56 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 961, + "star_count": 985, "Docker_Url": "https://hub.docker.com/_/vault", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/vault", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/vault", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "hashicorp/vault", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 27, + "Docker_Url": "https://hub.docker.com/r/hashicorp/vault", + "OS": [ + "linux" ] } ], "dockerhub_top_images": [ { - "name": "ibmcom/vault", + "name": "hashicorp/vault", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/vault", + "star_count": 27, + "Docker_Url": "https://hub.docker.com/r/hashicorp/vault", "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "vault", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 985, + "Docker_Url": "https://hub.docker.com/_/vault", + "OS": [ + "linux" + ] + }, + { + "name": "hashicorp/vault-enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 8, + "Docker_Url": "https://hub.docker.com/r/hashicorp/vault-enterprise", + "OS": [ + "linux" ] } ] @@ -57307,39 +48079,39 @@ { "name": "vault", "url": "https://quay.io/repository/cybozu/vault", - "popularity": 1302.0 + "popularity": 1516.0 }, { "name": "vault", - "url": "https://quay.io/repository/giantswarm/vault", - "popularity": 511.0 + "url": "https://quay.io/repository/alvaroaleman/vault", + "popularity": 505.0 } ], "quay_top_images": [ { - "name": "file-vault", - "url": "https://quay.io/repository/ukhomeofficedigital/file-vault", - "popularity": 42928.0 - }, - { - "name": "vault-next-gen", - "url": "https://quay.io/repository/codefreshplugins/vault-next-gen", - "popularity": 28748.0 + "name": "vault-creds", + "url": "https://quay.io/repository/uswitch/vault-creds", + "popularity": 238374.0 }, { "name": "vault-sidekick", "url": "https://quay.io/repository/ukhomeofficedigital/vault-sidekick", - "popularity": 7040.0 + "popularity": 338049.0 + }, + { + "name": "file-vault", + "url": "https://quay.io/repository/ukhomeofficedigital/file-vault", + "popularity": 83408.0 }, { - "name": "kubernetes-vault-client", - "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", - "popularity": 8244.0 + "name": "vault-next-gen", + "url": "https://quay.io/repository/codefreshplugins/vault-next-gen", + "popularity": 16881.0 }, { "name": "ibm-cert-manager-operator", "url": "https://quay.io/repository/opencloudio/ibm-cert-manager-operator", - "popularity": 35255.0 + "popularity": 20537.0 } ] }, @@ -57427,14 +48199,14 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.8", + "version": "0.6.0-rc1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 11, - "medium": 52, - "unknown": 5, + "low": 31, + "high": 19, + "medium": 64, + "unknown": 11, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -57474,14 +48246,7 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -57492,22 +48257,7 @@ "star_count": 6, "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -57518,14 +48268,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -57536,27 +48279,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -57608,17 +48351,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 130, + "star_count": 135, "Docker_Url": "https://hub.docker.com/r/bitnami/etcd", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -57629,30 +48365,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/ibmcom/etcd", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -57663,14 +48376,7 @@ "star_count": 4, "Docker_Url": "https://hub.docker.com/r/rancher/etcd", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -57681,14 +48387,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/pachyderm/etcd", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -57701,14 +48400,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/pachyderm/etcd", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -57719,14 +48411,7 @@ "star_count": 4, "Docker_Url": "https://hub.docker.com/r/rancher/etcd", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -57737,30 +48422,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/ibmcom/etcd", "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -57768,17 +48430,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 130, + "star_count": 135, "Docker_Url": "https://hub.docker.com/r/bitnami/etcd", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -57788,54 +48443,54 @@ { "name": "etcd", "url": "https://quay.io/repository/coreos/etcd", - "popularity": 5194433.0 + "popularity": 5151742.0 }, { "name": "etcd", "url": "https://quay.io/repository/openshift-community-operators/etcd", - "popularity": 4374.0 + "popularity": 3439.0 }, { "name": "etcd", - "url": "https://quay.io/repository/cybozu/etcd", - "popularity": 2002.0 + "url": "https://quay.io/repository/olmqe/etcd", + "popularity": 4133.0 }, { "name": "etcd", - "url": "https://quay.io/repository/olmqe/etcd", - "popularity": 3732.0 + "url": "https://quay.io/repository/cybozu/etcd", + "popularity": 2069.0 }, { "name": "etcd", "url": "https://quay.io/repository/karbon/etcd", - "popularity": 1980.0 + "popularity": 1703.0 } ], "quay_top_images": [ { "name": "etcd", "url": "https://quay.io/repository/coreos/etcd", - "popularity": 5194433.0 + "popularity": 5151742.0 }, { "name": "etcd-operator", "url": "https://quay.io/repository/coreos/etcd-operator", - "popularity": 69367.0 + "popularity": 103996.0 }, { "name": "flannel", "url": "https://quay.io/repository/coreos/flannel", - "popularity": 1741937.0 - }, - { - "name": "etcd-bundle", - "url": "https://quay.io/repository/olmqe/etcd-bundle", - "popularity": 14532.0 + "popularity": 1217038.0 }, { "name": "etcd-index", "url": "https://quay.io/repository/olmqe/etcd-index", - "popularity": 14298.0 + "popularity": 18719.0 + }, + { + "name": "etcd-bundle", + "url": "https://quay.io/repository/olmqe/etcd-bundle", + "popularity": 17399.0 } ] }, @@ -57887,85 +48542,47 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2581, + "star_count": 2664, "Docker_Url": "https://hub.docker.com/_/traefik", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux", + "windows" + ] + }, + { + "name": "okteto/traefik", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/traefik", + "OS": [ + "linux" ] } ], "dockerhub_top_images": [ + { + "name": "okteto/traefik", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/traefik", + "OS": [ + "linux" + ] + }, { "name": "traefik", "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2581, + "star_count": 2664, "Docker_Url": "https://hub.docker.com/_/traefik", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux", + "windows" ] } ] @@ -57975,61 +48592,66 @@ { "name": "traefik", "url": "https://quay.io/repository/widen/traefik", - "popularity": 1155.0 + "popularity": 1382.0 }, { "name": "traefik", - "url": "https://quay.io/repository/internaldatahub/traefik", - "popularity": 934.0 + "url": "https://quay.io/repository/truecharts/traefik", + "popularity": 1540.0 }, { "name": "traefik", - "url": "https://quay.io/repository/sylr/traefik", - "popularity": 0.0 + "url": "https://quay.io/repository/internaldatahub/traefik", + "popularity": 975.0 }, { "name": "traefik", "url": "https://quay.io/repository/fivium/traefik", - "popularity": 262.0 + "popularity": 218.0 }, { "name": "traefik", - "url": "https://quay.io/repository/swsmirror/traefik", - "popularity": 0.0 + "url": "https://quay.io/repository/procentive/traefik", + "popularity": 216.0 }, { "name": "traefik", - "url": "https://quay.io/repository/testing-farm/traefik", - "popularity": 14.0 + "url": "https://quay.io/repository/karbon/traefik", + "popularity": 101.0 }, { "name": "traefik", - "url": "https://quay.io/repository/procentive/traefik", - "popularity": 103.0 + "url": "https://quay.io/repository/rizoa/traefik", + "popularity": 0.0 }, { "name": "traefik", - "url": "https://quay.io/repository/rizoa/traefik", - "popularity": 1.0 + "url": "https://quay.io/repository/ecasa/traefik", + "popularity": 7.0 }, { "name": "traefik", - "url": "https://quay.io/repository/errm/traefik", + "url": "https://quay.io/repository/kube-ops/traefik", "popularity": 0.0 }, { "name": "traefik", - "url": "https://quay.io/repository/kube-ops/traefik", - "popularity": 24.0 + "url": "https://quay.io/repository/radnmsdev/traefik", + "popularity": 48.0 }, { "name": "traefik", - "url": "https://quay.io/repository/ecasa/traefik", - "popularity": 49.0 + "url": "https://quay.io/repository/waynesun09/traefik", + "popularity": 166.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/testing-farm/traefik", + "popularity": 14.0 }, { "name": "traefik", - "url": "https://quay.io/repository/octoblu/traefik", + "url": "https://quay.io/repository/sisense/traefik", "popularity": 0.0 } ], @@ -58037,27 +48659,27 @@ { "name": "che--traefik", "url": "https://quay.io/repository/eclipse/che--traefik", - "popularity": 1218.0 + "popularity": 2105.0 }, { "name": "traefik", "url": "https://quay.io/repository/widen/traefik", - "popularity": 1155.0 + "popularity": 1382.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/truecharts/traefik", + "popularity": 1540.0 }, { "name": "traefik", "url": "https://quay.io/repository/internaldatahub/traefik", - "popularity": 934.0 + "popularity": 975.0 }, { "name": "odh-traefik-container", "url": "https://quay.io/repository/modh/odh-traefik-container", - "popularity": 1434.0 - }, - { - "name": "traefik-rhel8", - "url": "https://quay.io/repository/devspaces/traefik-rhel8", - "popularity": 414.0 + "popularity": 559.0 } ] }, @@ -58118,14 +48740,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-cloud-databases-redis-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -58136,14 +48751,7 @@ "star_count": 8, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-cloud-developer-tools-amd64", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -58151,30 +48759,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "ibm-crossplane-bedrock-shim-config", - "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 - }, { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1158880.0 - }, - { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "popularity": 1917609.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 619283.0 + "popularity": 734625.0 + }, + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 391395.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 201368.0 } ] }, @@ -58193,9 +48801,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 1, - "unknown": 1, + "high": 7, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -58404,19 +49012,19 @@ "stars": 0, "display_name": "IBM block storage CSI driver operator", "description": "Run IBM block storage CSI driver.", - "version": "1.9.0", + "version": "1.10.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 3, - "medium": 44, + "low": 29, + "high": 6, + "medium": 34, "unknown": 1, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1640430000, + "ts": 1648724400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -58430,7 +49038,9 @@ "organization_display_name": "Operator Framework" }, "git_repos": "https://github.com/IBM/ibm-block-csi-operator", - "container_images": [] + "container_images": [ + "docker.io/ibmcom/ibm-block-csi-operator:1.10.0" + ] } ] } @@ -58448,12 +49058,12 @@ "quay_exact_images": [ { "name": "yugabytedb", - "url": "https://quay.io/repository/marco_antonioni/yugabytedb", + "url": "https://quay.io/repository/gitpodified-workspace-images/yugabytedb", "popularity": 0.0 }, { "name": "yugabytedb", - "url": "https://quay.io/repository/gitpodified-workspace-images/yugabytedb", + "url": "https://quay.io/repository/marco_antonioni/yugabytedb", "popularity": 0.0 } ], @@ -58461,17 +49071,12 @@ { "name": "yugabytedb-operator", "url": "https://quay.io/repository/yugabyte/yugabytedb-operator", - "popularity": 4073.0 - }, - { - "name": "yugabytedb", - "url": "https://quay.io/repository/marco_antonioni/yugabytedb", - "popularity": 0.0 + "popularity": 3588.0 }, { "name": "debezium-connector", "url": "https://quay.io/repository/yugabyte/debezium-connector", - "popularity": 38.0 + "popularity": 2580.0 }, { "name": "yugabytedb", @@ -58481,7 +49086,12 @@ { "name": "connect-base-yb", "url": "https://quay.io/repository/yugabyte/connect-base-yb", - "popularity": 4.0 + "popularity": 2.0 + }, + { + "name": "cdcsdk-server", + "url": "https://quay.io/repository/yugabyte/cdcsdk-server", + "popularity": 0.0 } ] }, @@ -58542,21 +49152,26 @@ { "name": "cockroachdb", "url": "https://quay.io/repository/helmoperators/cockroachdb", - "popularity": 3271.0 + "popularity": 3616.0 + }, + { + "name": "cockroachdb", + "url": "https://quay.io/repository/community-operators-pipeline/cockroachdb", + "popularity": 1785.0 }, { "name": "cockroachdb", "url": "https://quay.io/repository/operatorhubio/cockroachdb", - "popularity": 204.0 + "popularity": 162.0 }, { "name": "cockroachdb", "url": "https://quay.io/repository/openshift-community-operators/cockroachdb", - "popularity": 120.0 + "popularity": 104.0 }, { "name": "cockroachdb", - "url": "https://quay.io/repository/community-operators-pipeline/cockroachdb", + "url": "https://quay.io/repository/operator_testing/cockroachdb", "popularity": 0.0 } ], @@ -58564,27 +49179,27 @@ { "name": "cockroachdb-index", "url": "https://quay.io/repository/olmqe/cockroachdb-index", - "popularity": 6521.0 + "popularity": 9946.0 }, { "name": "cockroachdb-operator", "url": "https://quay.io/repository/olmqe/cockroachdb-operator", - "popularity": 5482.0 + "popularity": 7406.0 }, { "name": "cockroachdb", "url": "https://quay.io/repository/helmoperators/cockroachdb", - "popularity": 3271.0 + "popularity": 3616.0 }, { - "name": "cockroachdb-operator", - "url": "https://quay.io/repository/kuiwang/cockroachdb-operator", - "popularity": 1689.0 + "name": "cockroachdb", + "url": "https://quay.io/repository/community-operators-pipeline/cockroachdb", + "popularity": 1785.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 14285.0 + "popularity": 12586.0 } ] }, @@ -58645,39 +49260,39 @@ { "name": "jaeger", "url": "https://quay.io/repository/operatorhubio/jaeger", - "popularity": 1105.0 + "popularity": 1130.0 }, { "name": "jaeger", "url": "https://quay.io/repository/openshift-community-operators/jaeger", - "popularity": 1166.0 + "popularity": 1977.0 } ], "quay_top_images": [ { "name": "jaeger-operator", "url": "https://quay.io/repository/jaegertracing/jaeger-operator", - "popularity": 54640.0 + "popularity": 59585.0 + }, + { + "name": "jaeger-collector", + "url": "https://quay.io/repository/jaegertracing/jaeger-collector", + "popularity": 54058.0 }, { "name": "jaeger-agent", "url": "https://quay.io/repository/jaegertracing/jaeger-agent", - "popularity": 19805.0 + "popularity": 21471.0 }, { "name": "jaeger-query", "url": "https://quay.io/repository/jaegertracing/jaeger-query", - "popularity": 9826.0 + "popularity": 10223.0 }, { - "name": "jaeger-collector", - "url": "https://quay.io/repository/jaegertracing/jaeger-collector", - "popularity": 45182.0 - }, - { - "name": "jaeger", - "url": "https://quay.io/repository/openshift-community-operators/jaeger", - "popularity": 1166.0 + "name": "jaeger-es-index-cleaner", + "url": "https://quay.io/repository/jaegertracing/jaeger-es-index-cleaner", + "popularity": 3363.0 } ] }, @@ -58691,7 +49306,7 @@ "stars": 4, "display_name": "Community Jaeger Operator", "description": "Provides tracing, monitoring and troubleshooting for microservices-based distributed systems", - "version": "1.36.0", + "version": "1.38.0", "deprecated": false, "signed": false, "all_containers_images_whitelisted": false, @@ -58711,7 +49326,7 @@ }, "git_repos": "https://github.com/jaegertracing/jaeger-operator", "container_images": [ - "quay.io/jaegertracing/jaeger-operator:1.36.0" + "quay.io/jaegertracing/jaeger-operator:1.38.0" ] } ] @@ -58733,14 +49348,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -58751,14 +49359,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -58769,27 +49370,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90209.0 + "popularity": 82922.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 + "popularity": 30583.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 14285.0 + "popularity": 12586.0 }, { - "name": "gawk", - "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 20761.0 + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 14334.0 } ] }, @@ -58827,29 +49428,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "r-ada", - "url": "https://quay.io/repository/biocontainers/r-ada", + "name": "boga88-login-gudang288-link-alternatif-boga-88-daftar-gudang-288-situs-judi-togel-casino-poker-bola-online-terbaru-terbesar-terpercaya-indonesia-bandar-agen-bo-apk-download-wap-mobile-register", + "url": "https://quay.io/repository/slotgacor/boga88-login-gudang288-link-alternatif-boga-88-daftar-gudang-288-situs-judi-togel-casino-poker-bola-online-terbaru-terbesar-terpercaya-indonesia-bandar-agen-bo-apk-download-wap-mobile-register", "popularity": 0.0 }, { - "name": "ghost-ada", - "url": "https://quay.io/repository/fivepi/ghost-ada", + "name": "total4d-mustang303-kinghorsetoto-jambitoto-vava4d-daftar-situs-total-4d-mustang-303-king-horse-toto-jambi-toto-vava-4d-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022", + "url": "https://quay.io/repository/zulzeagleed/total4d-mustang303-kinghorsetoto-jambitoto-vava4d-daftar-situs-total-4d-mustang-303-king-horse-toto-jambi-toto-vava-4d-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022", "popularity": 0.0 }, { - "name": "ruby", - "url": "https://quay.io/repository/ibmz/ruby", + "name": "livedraw-hkg6d-result-hk-pools-6d-welcome-to-hongkongpools-malam-hari-ini-live-draw-hongkong-tercepat-data-pengeluaran-togel-dt-grafik-hongkong-prize-toto-hkg-pasaran-wla-4d-hadiah-10jt-terbesar-se-asia", + "url": "https://quay.io/repository/bandarbettingonline30/livedraw-hkg6d-result-hk-pools-6d-welcome-to-hongkongpools-malam-hari-ini-live-draw-hongkong-tercepat-data-pengeluaran-togel-dt-grafik-hongkong-prize-toto-hkg-pasaran-wla-4d-hadiah-10jt-terbesar-se-asia", "popularity": 0.0 }, { - "name": "laetoto", - "url": "https://quay.io/repository/togelonlinelae/laetoto", - "popularity": 1.0 + "name": "98toto-dragon303-pusat4d-islot99-totopedia-daftar-situs-98-toto-dragon-303-pusat-4d-islot-99-toto-pedia-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022-fafa138", + "url": "https://quay.io/repository/zulzeagleed/98toto-dragon303-pusat4d-islot99-totopedia-daftar-situs-98-toto-dragon-303-pusat-4d-islot-99-toto-pedia-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022-fafa138", + "popularity": 0.0 }, { - "name": "coloktotofyp", - "url": "https://quay.io/repository/coloktotofyp/coloktotofyp", - "popularity": 1.0 + "name": "lunatogel-ratu303-ngamentogel-dunia777-vivototo-daftar-situs-luna-togel-ratu-303-ngamen-togel-dunia-777-vivo-toto-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022-fafa138", + "url": "https://quay.io/repository/zulzeagleed/lunatogel-ratu303-ngamentogel-dunia777-vivototo-daftar-situs-luna-togel-ratu-303-ngamen-togel-dunia-777-vivo-toto-kumpulan-nama-nama-agen-judi-slot-online-togel-toto-casino-poker-bola-88-rtp-live-tertinggi-wap-apk-download-mobile-register-2022-fafa138", + "popularity": 0.0 } ] }, @@ -58906,27 +49507,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "cloud-batch", "url": "https://quay.io/repository/ss75710541/cloud-batch", "popularity": 1512.0 }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30527.0 - }, { "name": "batch-export", "url": "https://quay.io/repository/cdis/batch-export", - "popularity": 250.0 + "popularity": 820.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30583.0 }, { - "name": "batch-export-service", - "url": "https://quay.io/repository/cdis/batch-export-service", - "popularity": 64.0 + "name": "sl-aws-batch", + "url": "https://quay.io/repository/pacificbiosciences/sl-aws-batch", + "popularity": 348.0 } ] }, @@ -58957,12 +49558,12 @@ }, { "name": "powershell", - "url": "https://quay.io/repository/redhatworkshops/powershell", + "url": "https://quay.io/repository/mczernek/powershell", "popularity": 0.0 }, { "name": "powershell", - "url": "https://quay.io/repository/mczernek/powershell", + "url": "https://quay.io/repository/redhatworkshops/powershell", "popularity": 0.0 }, { @@ -58978,29 +49579,29 @@ ], "quay_top_images": [ { - "name": "powershell-lean", - "url": "https://quay.io/repository/powerdock/powershell-lean", + "name": "corp-powershell-build", + "url": "https://quay.io/repository/utilitywarehouse/corp-powershell-build", "popularity": 0.0 }, { - "name": "ansible-powershell", - "url": "https://quay.io/repository/andrewrothstein/ansible-powershell", + "name": "sh2msgconvert", + "url": "https://quay.io/repository/loadwordteam/sh2msgconvert", "popularity": 0.0 }, { - "name": "powershell-source", - "url": "https://quay.io/repository/powerdock/powershell-source", + "name": "box-ps", + "url": "https://quay.io/repository/cincan/box-ps", + "popularity": 105.0 + }, + { + "name": "powershell", + "url": "https://quay.io/repository/powerdock/powershell", "popularity": 0.0 }, { "name": "powershell-plus", "url": "https://quay.io/repository/powerdock/powershell-plus", "popularity": 0.0 - }, - { - "name": "box-ps", - "url": "https://quay.io/repository/cincan/box-ps", - "popularity": 3.0 } ] }, @@ -59059,22 +49660,22 @@ "name": "strimzi-kafka-operator", "normalized_name": "strimzi-kafka-operator", "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", - "stars": 18, + "stars": 20, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.30.0", + "version": "0.31.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 277, - "high": 13, - "medium": 348, - "unknown": 5, - "critical": 4 + "low": 527, + "high": 36, + "medium": 484, + "unknown": 7, + "critical": 5 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657929610, + "ts": 1663708020, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59093,6 +49694,9 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -59100,26 +49704,26 @@ ] }, { - "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", - "name": "keycloak-operator", - "normalized_name": "keycloak-operator", - "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", - "stars": 14, - "display_name": "Keycloak Operator", - "description": "An Operator for installing and managing Keycloak", - "version": "20.0.0-alpha.3", + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 16, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 38, - "high": 0, - "medium": 47, + "low": 29, + "high": 2, + "medium": 31, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656518437, + "production_organizations_count": 1, + "ts": 1662748237, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59132,32 +49736,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/keycloak/keycloak", - "container_images": [ - "quay.io/keycloak/keycloak-operator:18.0.2" - ] + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] }, { - "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", - "name": "prometheus", - "normalized_name": "prometheus", - "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", - "stars": 14, - "display_name": "Prometheus Operator", - "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", - "version": "0.47.0", + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 15, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.6", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 2, - "unknown": 2, + "low": 40, + "high": 1, + "medium": 46, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1618530180, + "production_organizations_count": 0, + "ts": 1663255840, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59170,9 +49772,9 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "git_repos": "https://github.com/keycloak/keycloak", "container_images": [ - "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + "quay.io/keycloak/keycloak-operator:19.0.2" ] }, { @@ -59180,22 +49782,22 @@ "name": "elastic-cloud-eck", "normalized_name": "elastic-cloud-eck", "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, + "stars": 14, "display_name": "Elasticsearch (ECK) Operator", "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", + "version": "2.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 1, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657006653, + "ts": 1661782377, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59212,26 +49814,26 @@ "container_images": [] }, { - "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", - "name": "postgresql", - "normalized_name": "postgresql", - "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, - "display_name": "Crunchy Postgres for Kubernetes", - "description": "Production Postgres Made Easy", - "version": "5.1.2", + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, + "low": 0, "high": 0, - "medium": 32, - "unknown": 0, + "medium": 2, + "unknown": 2, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657571435, + "ts": 1618530180, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59244,23 +49846,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/CrunchyData/postgres-operator", - "container_images": [] + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] }, { "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", "name": "knative-operator", "normalized_name": "knative-operator", "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, + "stars": 13, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", + "version": "1.7.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 0, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1626134400, + "ts": 1661385600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59281,7 +49892,7 @@ "name": "redis-operator", "normalized_name": "redis-operator", "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, + "stars": 12, "display_name": "Redis Operator", "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", "version": "0.11.0", @@ -59289,9 +49900,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "high": 5, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -59319,7 +49930,7 @@ "name": "rook-ceph", "normalized_name": "rook-ceph", "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", - "stars": 8, + "stars": 10, "display_name": "Rook-Ceph", "description": "Install and maintain Ceph Storage cluster", "version": "1.1.1", @@ -59350,6 +49961,80 @@ "git_repos": "https://github.com/rook/rook", "container_images": [] }, + { + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 8, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 2, + "unknown": 3, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654107072, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aquasecurity/starboard", + "container_images": [ + "docker.io/aquasec/starboard-operator:0.15.6" + ] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 8, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 8, + "high": 48, + "medium": 45, + "unknown": 35, + "critical": 5 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, { "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", "name": "argocd-operator", @@ -59358,19 +50043,19 @@ "stars": 7, "display_name": "Argo CD", "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", - "version": "0.3.0", + "version": "0.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 2, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 2, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1650443438, + "ts": 1659011437, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59388,6 +50073,35 @@ "quay.io/argoprojlabs/argocd-operator" ] }, + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 7, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + }, { "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", "name": "grafana-operator", @@ -59396,19 +50110,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.5.0", + "version": "4.6.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 0, - "medium": 3, + "low": 7, + "high": 1, + "medium": 5, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657706412, + "ts": 1660824012, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59423,30 +50137,30 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.5.0" + "quay.io/grafana-operator/grafana-operator:v4.6.0" ] }, { - "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", - "name": "starboard-operator", - "normalized_name": "starboard-operator", - "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", - "stars": 7, - "display_name": "Starboard Operator", - "description": "Keeps security report resources updated", - "version": "0.15.6", + "package_id": "ed4a8453-75f2-46a4-9743-9f7b12d4d4ea", + "name": "kubeflow", + "normalized_name": "kubeflow", + "logo_image_id": "cb5e7dba-ea2d-4a65-a3b6-7def9d80358f", + "stars": 6, + "display_name": "Kubeflow", + "description": "Kubeflow Operator for deployment and management of Kubeflow", + "version": "1.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 + "low": 15, + "high": 16, + "medium": 24, + "unknown": 1, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1654107072, + "ts": 1584576000, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59459,32 +50173,30 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/aquasecurity/starboard", - "container_images": [ - "docker.io/aquasec/starboard-operator:0.15.6" - ] + "git_repos": "https://github.com/kubeflow/kfctl", + "container_images": [] }, { - "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", - "name": "tidb-operator", - "normalized_name": "tidb-operator", - "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", - "stars": 7, - "display_name": "TiDB Operator", - "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", - "version": "1.3.1", + "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", + "name": "rocketmq-operator", + "normalized_name": "rocketmq-operator", + "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", + "stars": 6, + "display_name": "RocketMQ Operator", + "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", + "version": "0.3.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 4, - "high": 8, - "medium": 31, - "unknown": 8, - "critical": 2 + "low": 140, + "high": 47, + "medium": 108, + "unknown": 3, + "critical": 6 }, "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1645693233, + "production_organizations_count": 0, + "ts": 1663599600, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59497,23 +50209,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/pingcap/tidb-operator", - "container_images": [] + "git_repos": "https://github.com/apache/rocketmq-operator", + "container_images": [ + "docker.io/apache/rocketmq-operator:0.3.0" + ] }, { - "package_id": "95833125-3a5b-4da5-a985-21f172238a61", - "name": "clickhouse", - "normalized_name": "clickhouse", - "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", - "stars": 5, - "display_name": "Altinity Operator for ClickHouse", - "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", - "version": "0.18.3", + "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", + "name": "storageos", + "normalized_name": "storageos", + "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", + "stars": 6, + "display_name": "StorageOS", + "description": "Cloud-native, persistent storage for containers.", + "version": "2.6.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 31, + "high": 14, + "medium": 57, + "unknown": 5, + "critical": 1 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1573466400, + "ts": 1647018033, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59526,7 +50247,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/altinity/clickhouse-operator", + "git_repos": "https://github.com/storageos/operator", "container_images": [] }, { @@ -59537,19 +50258,19 @@ "stars": 5, "display_name": "Flux", "description": "Flux is a Continuous Delivery solution for Kubernetes.", - "version": "0.31.3", + "version": "0.31.4", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 + "high": 3, + "medium": 3, + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656606635, + "ts": 1658743238, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59577,10 +50298,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, - "unknown": 1, + "low": 31, + "high": 13, + "medium": 61, + "unknown": 4, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -59602,129 +50323,19 @@ "container_images": [] }, { - "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", - "name": "rocketmq-operator", - "normalized_name": "rocketmq-operator", - "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", - "stars": 5, - "display_name": "RocketMQ Operator", - "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", - "version": "0.2.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 142, - "high": 39, - "medium": 107, - "unknown": 3, - "critical": 6 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1621525858, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/apache/rocketmq-operator", - "container_images": [] - }, - { - "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", - "name": "storageos", - "normalized_name": "storageos", - "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", + "package_id": "b71d9f44-e000-4427-a490-d5a6d34725c0", + "name": "submariner", + "normalized_name": "submariner", + "logo_image_id": "a1089d5b-f3d3-4579-a6c3-e9ac7209a9bc", "stars": 5, - "display_name": "StorageOS", - "description": "Cloud-native, persistent storage for containers.", - "version": "2.6.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 25, - "high": 5, - "medium": 44, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1647018033, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/storageos/operator", - "container_images": [] - }, - { - "package_id": "e84c500f-01ea-4b9e-be93-8f78f5aacb55", - "name": "falco", - "normalized_name": "falco", - "logo_image_id": "4abae28d-6739-466d-befd-c0b0f76d7d2c", - "stars": 4, - "display_name": "Falco Operator", - "description": "Falco is a behavioral activity monitor designed to detect anomalous activity in your applications. You can use Falco to monitor run-time security of your Kubernetes applications and internal components.", - "version": "0.7.6", + "display_name": "Submariner", + "description": "Creates and manages Submariner deployments.", + "version": "0.11.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 222, - "high": 19, - "medium": 364, - "unknown": 0, - "critical": 3 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1552415400, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/falcosecurity/falco-operator/tree/helm-based-operator", - "container_images": [ - "docker.io/falcosecurity/falco-operator-helm:0.7.6" - ] - }, - { - "package_id": "e781d781-f624-4df9-9c8d-d4a7de517006", - "name": "jaeger", - "normalized_name": "jaeger", - "logo_image_id": "11252ebc-4a8c-4d12-bdca-01f583e483b4", - "stars": 4, - "display_name": "Community Jaeger Operator", - "description": "Provides tracing, monitoring and troubleshooting for microservices-based distributed systems", - "version": "1.36.0", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1567603720, + "ts": 1634218897, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -59737,9 +50348,9 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/jaegertracing/jaeger-operator", + "git_repos": "https://github.com/submariner-io/submariner-operator", "container_images": [ - "quay.io/jaegertracing/jaeger-operator:1.36.0" + "quay.io/submariner/submariner-operator:0.11.0" ] } ] @@ -59838,33 +50449,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 129, + "star_count": 136, "Docker_Url": "https://hub.docker.com/r/ibmcom/db2", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -59875,14 +50463,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/ibmcom/db2-amd64", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -59893,27 +50474,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -59929,6 +50510,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/db", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/db", + "OS": [ + "linux" + ] + }, { "name": "appdynamics/db-agent", "Official image": false, @@ -59937,14 +50529,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -59991,7 +50576,18 @@ }, { "quay_exact_images": [], - "quay_top_images": [] + "quay_top_images": [ + { + "name": "what-does-the-type-of-exhaust-smoke-emitted-by-your-car-tell-you", + "url": "https://quay.io/repository/beverlyallender658/what-does-the-type-of-exhaust-smoke-emitted-by-your-car-tell-you", + "popularity": 0.0 + }, + { + "name": "why-is-my-check-engine-light-on-lets-find-out", + "url": "https://quay.io/repository/beverlyallender658/why-is-my-check-engine-light-on-lets-find-out", + "popularity": 0.0 + } + ] }, { "operators": [] @@ -60027,33 +50623,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -60064,22 +50637,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -60090,22 +50648,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -60116,27 +50659,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 201368.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 204630.0 + "popularity": 160435.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -60174,17 +50717,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -60192,25 +50728,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -60218,17 +50739,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -60236,25 +50750,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, + "star_count": 2, "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -60265,27 +50764,27 @@ { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 137803.0 + "popularity": 160543.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "popularity": 71385.0 }, { "name": "teleport-ent", "url": "https://quay.io/repository/gravitational/teleport-ent", - "popularity": 27180.0 + "popularity": 50742.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 + "popularity": 20267.0 }, { - "name": "multiqc", - "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 43577.0 + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 16654.0 } ] }, @@ -60302,75 +50801,58 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/server-base", + "name": "couchbase/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "circleci/server-nomad", + "name": "rancher/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "atlassian/server-client-plugins", + "name": "couchbase/server-sandbox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/couchbase/server-sandbox", + "OS": [ + "linux" + ] + }, + { + "name": "circleci/server-nomad", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -60381,27 +50863,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -60421,17 +50903,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 27, + "star_count": 29, "Docker_Url": "https://hub.docker.com/r/bitnami/git", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -60441,17 +50916,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 27, + "star_count": 29, "Docker_Url": "https://hub.docker.com/r/bitnami/git", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -60462,68 +50930,40 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/rancher/git-porter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/git-analyze", + "name": "rancher/git-logrotate", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/git-analyze", + "Docker_Url": "https://hub.docker.com/r/rancher/git-logrotate", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/git-serve", + "name": "ibmcom/git-ppc64le", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/git-serve", + "Docker_Url": "https://hub.docker.com/r/ibmcom/git-ppc64le", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/git-logrotate", + "name": "rancher/git-serve", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/git-logrotate", + "Docker_Url": "https://hub.docker.com/r/rancher/git-serve", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -60533,34 +50973,39 @@ { "name": "git", "url": "https://quay.io/repository/sisense/git", - "popularity": 1605.0 + "popularity": 2049.0 + }, + { + "name": "git", + "url": "https://quay.io/repository/flysangel/git", + "popularity": 434.0 } ], "quay_top_images": [ { "name": "cf-git-cloner", "url": "https://quay.io/repository/codefresh/cf-git-cloner", - "popularity": 161998.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 148257.0 }, { "name": "argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", "url": "https://quay.io/repository/codefreshplugins/argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", - "popularity": 92589.0 + "popularity": 92530.0 }, { - "name": "git-chglog", - "url": "https://quay.io/repository/git-chglog/git-chglog", - "popularity": 9805.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 + }, + { + "name": "git-semver-tag-resource", + "url": "https://quay.io/repository/kylecooley/git-semver-tag-resource", + "popularity": 26126.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -60579,9 +51024,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, + "high": 6, + "medium": 1, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -60610,19 +51055,19 @@ "stars": 7, "display_name": "Argo CD", "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", - "version": "0.3.0", + "version": "0.4.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, + "high": 2, "medium": 0, - "unknown": 0, - "critical": 0 + "unknown": 2, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1650443438, + "ts": 1659011437, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -60648,19 +51093,19 @@ "stars": 5, "display_name": "Flux", "description": "Flux is a Continuous Delivery solution for Kubernetes.", - "version": "0.31.3", + "version": "0.31.4", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 + "high": 3, + "medium": 3, + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656606635, + "ts": 1658743238, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -60722,14 +51167,14 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.8", + "version": "0.6.0-rc1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 11, - "medium": 52, - "unknown": 5, + "low": 31, + "high": 19, + "medium": 64, + "unknown": 11, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -60757,7 +51202,8 @@ "logo_image_id": "b8069ce9-c81e-4b7e-83b0-61115f98f09f", "stars": 0, "display_name": "GitLab", - "version": "0.6.3", + "description": "The GitLab operator is responsible for managing the full lifecycle of GitLab instances in your Kubernetes or Openshift container platforms.", + "version": "0.12.0", "deprecated": false, "signed": false, "all_containers_images_whitelisted": false, @@ -60786,12 +51232,19 @@ "stars": 0, "display_name": "GitLab Runner", "description": "GitLab Runner operator manages lifecycle of GitLab Runner instances", - "version": "1.9.0", + "version": "1.10.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 29, + "high": 10, + "medium": 33, + "unknown": 4, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1607351820, + "ts": 1659971347, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -60857,11 +51310,11 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 8, - "medium": 2, - "unknown": 0, - "critical": 5 + "low": 1, + "high": 21, + "medium": 18, + "unknown": 3, + "critical": 6 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -60890,42 +51343,40 @@ { "GitLab": [ { - "dockerhub_exact_images": [], + "dockerhub_exact_images": [ + { + "name": "okteto/gitlab", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/okteto/gitlab", + "OS": [ + "linux" + ] + } + ], "dockerhub_top_images": [ { - "name": "bitnami/gitlab-runner", + "name": "okteto/gitlab", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 11, - "Docker_Url": "https://hub.docker.com/r/bitnami/gitlab-runner", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/okteto/gitlab", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/gitlab-runner-helper", + "name": "bitnami/gitlab-runner", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/bitnami/gitlab-runner-helper", + "star_count": 14, + "Docker_Url": "https://hub.docker.com/r/bitnami/gitlab-runner", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -60935,34 +51386,34 @@ { "name": "gitlab", "url": "https://quay.io/repository/sameersbn/gitlab", - "popularity": 615.0 + "popularity": 640.0 } ], "quay_top_images": [ { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 783797.0 + "popularity": 784111.0 }, { "name": "gitlab-ansible-runner", "url": "https://quay.io/repository/sheogorath/gitlab-ansible-runner", - "popularity": 20164.0 + "popularity": 35277.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 78097.0 - }, - { - "name": "invidious", - "url": "https://quay.io/repository/invidious/invidious", - "popularity": 30531.0 + "popularity": 61984.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52822.0 + "popularity": 53356.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 71385.0 } ] }, @@ -60975,7 +51426,8 @@ "logo_image_id": "b8069ce9-c81e-4b7e-83b0-61115f98f09f", "stars": 0, "display_name": "GitLab", - "version": "0.6.3", + "description": "The GitLab operator is responsible for managing the full lifecycle of GitLab instances in your Kubernetes or Openshift container platforms.", + "version": "0.12.0", "deprecated": false, "signed": false, "all_containers_images_whitelisted": false, @@ -61004,12 +51456,19 @@ "stars": 0, "display_name": "GitLab Runner", "description": "GitLab Runner operator manages lifecycle of GitLab Runner instances", - "version": "1.9.0", + "version": "1.10.0", "deprecated": false, "signed": false, + "security_report_summary": { + "low": 29, + "high": 10, + "medium": 33, + "unknown": 4, + "critical": 0 + }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1607351820, + "ts": 1659971347, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -61033,14 +51492,14 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.8", + "version": "0.6.0-rc1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 11, - "medium": 52, - "unknown": 5, + "low": 31, + "high": 19, + "medium": 64, + "unknown": 11, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -61096,27 +51555,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "nginx-ingress-controller", - "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1244426.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -61133,39 +51592,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "rancher/windows-scheduler", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "rancher/windows-scheduler", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", + "OS": [ + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -61176,27 +51643,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -61213,39 +51680,47 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/server", + "name": "formio/sql-connector", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/formio/sql-connector", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "gooddata/sql-executor", + "name": "airbyte/server", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/server", + "OS": [ + "linux" + ] + }, + { + "name": "couchbase/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 85, + "Docker_Url": "https://hub.docker.com/r/couchbase/server", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 603, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + "linux" ] } ] @@ -61256,27 +51731,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 29516627.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 7397692.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 43890.0 + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -61299,27 +51774,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { - "name": "mongodb-enterprise-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 99140.0 + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 7397692.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6920133.0 + "popularity": 5835615.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2536622.0 + "popularity": 2614627.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 2432667.0 } ] }, @@ -61339,25 +51814,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 12900, + "star_count": 13234, "Docker_Url": "https://hub.docker.com/_/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -61365,17 +51825,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 26, + "star_count": 27, "Docker_Url": "https://hub.docker.com/r/circleci/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -61383,77 +51836,32 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 72, + "star_count": 77, "Docker_Url": "https://hub.docker.com/r/bitnami/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "cimg/mysql", + "name": "ubuntu/mysql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "star_count": 36, + "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ubuntu/mysql", + "name": "cimg/mysql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 36, - "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -61464,14 +51872,7 @@ "star_count": 21, "Docker_Url": "https://hub.docker.com/r/google/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] }, { @@ -61482,14 +51883,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -61502,14 +51896,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -61520,14 +51907,7 @@ "star_count": 21, "Docker_Url": "https://hub.docker.com/r/google/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } + "" ] }, { @@ -61538,14 +51918,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/cimg/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -61556,38 +51929,7 @@ "star_count": 36, "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -61595,17 +51937,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 72, + "star_count": 77, "Docker_Url": "https://hub.docker.com/r/bitnami/mysql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -61614,65 +51949,60 @@ "quay_exact_images": [ { "name": "mysql", - "url": "https://quay.io/repository/openshifttest/mysql", - "popularity": 18627.0 + "url": "https://quay.io/repository/prsurve/mysql", + "popularity": 94.0 }, { "name": "mysql", - "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 26252.0 + "url": "https://quay.io/repository/openshifttest/mysql", + "popularity": 31835.0 }, { "name": "mysql", - "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 62635.0 + "url": "https://quay.io/repository/cybozu/mysql", + "popularity": 3600.0 }, { "name": "mysql", - "url": "https://quay.io/repository/cybozu/mysql", - "popularity": 4930.0 + "url": "https://quay.io/repository/gauravkumar9130/mysql", + "popularity": 4.0 }, { "name": "mysql", "url": "https://quay.io/repository/hazelcast_cloud/mysql", - "popularity": 2156.0 + "popularity": 2078.0 }, { "name": "mysql", "url": "https://quay.io/repository/operations/mysql", - "popularity": 1427.0 - }, - { - "name": "mysql", - "url": "https://quay.io/repository/bridgez/mysql", - "popularity": 4.0 + "popularity": 654.0 } ], "quay_top_images": [ { "name": "mysql-80-centos7", "url": "https://quay.io/repository/centos7/mysql-80-centos7", - "popularity": 268428.0 + "popularity": 268545.0 }, { "name": "mysql", - "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 26252.0 + "url": "https://quay.io/repository/openshifttest/mysql", + "popularity": 31835.0 }, { - "name": "mysql", - "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 62635.0 + "name": "do180-mysql-80-rhel8", + "url": "https://quay.io/repository/do180_202207/do180-mysql-80-rhel8", + "popularity": 15607.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 146865.0 + "popularity": 176289.0 } ] }, @@ -61719,10 +52049,10 @@ "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, - "unknown": 1, + "low": 31, + "high": 13, + "medium": 61, + "unknown": 4, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -61821,47 +52151,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "kasmweb/oracle-8-desktop", + "name": "kasmweb/oracle-7-desktop", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "kasmweb/oracle-7-desktop", + "name": "kasmweb/oracle-8-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -61872,27 +52180,27 @@ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 250172.0 + "popularity": 258524.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 - }, - { - "name": "billing-sidecar", - "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183319.0 + "popularity": 216548.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 151149.0 + "popularity": 179600.0 + }, + { + "name": "vault-creds", + "url": "https://quay.io/repository/uswitch/vault-creds", + "popularity": 238374.0 } ] }, @@ -61912,17 +52220,21 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 149, + "star_count": 154, "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" + ] + }, + { + "name": "vmware/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/vmware/postgresql", + "OS": [ + "linux" ] }, { @@ -61933,30 +52245,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -61967,14 +52256,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/pachyderm/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -61987,14 +52269,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/pachyderm/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -62005,90 +52280,51 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/postgresql", + "name": "vmware/postgresql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 149, - "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/vmware/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/postgresql-ppc64le", + "name": "bitnami/postgresql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql-ppc64le", + "star_count": 154, + "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "ibmcom/postgresql-amd64", + "name": "objectscale/postgresql-repmgr", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql-amd64", + "Docker_Url": "https://hub.docker.com/r/objectscale/postgresql-repmgr", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] }, { "quay_exact_images": [ + { + "name": "postgresql", + "url": "https://quay.io/repository/enterprisedb/postgresql", + "popularity": 22536.0 + }, { "name": "postgresql", "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql", @@ -62096,45 +52332,45 @@ }, { "name": "postgresql", - "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 19350.0 + "url": "https://quay.io/repository/truecharts/postgresql", + "popularity": 4144.0 }, { "name": "postgresql", "url": "https://quay.io/repository/aptible/postgresql", - "popularity": 1718.0 + "popularity": 2036.0 }, { "name": "postgresql", "url": "https://quay.io/repository/operatorhubio/postgresql", - "popularity": 1434.0 + "popularity": 890.0 } ], "quay_top_images": [ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 258719.0 + "popularity": 261792.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 198257.0 + "popularity": 216548.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 151149.0 - }, - { - "name": "postgresql-operator", - "url": "https://quay.io/repository/dev4devs-com/postgresql-operator", - "popularity": 21696.0 + "popularity": 179600.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 + "popularity": 20267.0 + }, + { + "name": "postgresql", + "url": "https://quay.io/repository/enterprisedb/postgresql", + "popularity": 22536.0 } ] }, @@ -62185,19 +52421,19 @@ "stars": 0, "display_name": "Percona Operator for PostgreSQL", "description": "Percona Operator for PostgreSQL manages the lifecycle of Percona PostgreSQL cluster instances.", - "version": "1.2.0", + "version": "1.3.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, + "low": 29, "high": 2, - "medium": 32, + "medium": 34, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1649682704, + "ts": 1660223504, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -62211,7 +52447,9 @@ "organization_display_name": "Operator Framework" }, "git_repos": "https://github.com/percona/percona-postgresql-operator", - "container_images": [] + "container_images": [ + "docker.io/percona/percona-postgresql-operator:1.3.0-postgres-operator" + ] }, { "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", @@ -62249,22 +52487,22 @@ "name": "postgresql", "normalized_name": "postgresql", "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, + "stars": 16, "display_name": "Crunchy Postgres for Kubernetes", "description": "Production Postgres Made Easy", - "version": "5.1.2", + "version": "5.2.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, + "low": 29, + "high": 2, + "medium": 31, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1657571435, + "ts": 1662748237, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -62288,19 +52526,19 @@ "stars": 1, "display_name": "EDB Postgres for Kubernetes", "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", - "version": "1.15.1", + "version": "1.17.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, + "low": 29, "high": 1, - "medium": 32, - "unknown": 0, - "critical": 0 + "medium": 26, + "unknown": 1, + "critical": 1 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1654016342, + "ts": 1662658187, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -62323,7 +52561,7 @@ "name": "postgres-operator", "normalized_name": "postgres-operator", "logo_image_id": "932e96b3-34be-4e2f-bd53-b30903d20a2d", - "stars": 3, + "stars": 4, "display_name": "Postgres-Operator", "description": "Postgres operator creates and manages PostgreSQL clusters running in Kubernetes.", "version": "1.4.0", @@ -62478,10 +52716,10 @@ "signed": false, "security_report_summary": { "low": 2, - "high": 31, - "medium": 11, - "unknown": 1, - "critical": 5 + "high": 41, + "medium": 13, + "unknown": 4, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, @@ -62517,29 +52755,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "check-aws-tags", - "url": "https://quay.io/repository/sergioballesteros/check-aws-tags", - "popularity": 30674.0 + "name": "aws-nuke", + "url": "https://quay.io/repository/rebuy/aws-nuke", + "popularity": 33055.0 }, { - "name": "aws-account-operator-registry", - "url": "https://quay.io/repository/app-sre/aws-account-operator-registry", - "popularity": 27786.0 + "name": "operator-aws", + "url": "https://quay.io/repository/cilium/operator-aws", + "popularity": 83390.0 }, { - "name": "aws-nuke", - "url": "https://quay.io/repository/rebuy/aws-nuke", - "popularity": 35027.0 + "name": "kubectl-helm-aws", + "url": "https://quay.io/repository/helmpack/kubectl-helm-aws", + "popularity": 15394.0 }, { - "name": "aws-fsx-csi-driver", - "url": "https://quay.io/repository/sisense/aws-fsx-csi-driver", - "popularity": 22966.0 + "name": "aws-account-operator-registry", + "url": "https://quay.io/repository/app-sre/aws-account-operator-registry", + "popularity": 23790.0 }, { - "name": "aws-vpce-operator", - "url": "https://quay.io/repository/app-sre/aws-vpce-operator", - "popularity": 30221.0 + "name": "provider-aws", + "url": "https://quay.io/repository/tfgco/provider-aws", + "popularity": 20320.0 } ] }, @@ -62553,19 +52791,19 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon RDS", "description": "AWS RDS controller is a service controller for managing RDS resources in Kubernetes", - "version": "0.0.28", + "version": "0.1.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, + "low": 1, + "high": 2, + "medium": 2, + "unknown": 3, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1657570374, + "ts": 1663176836, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -62594,9 +52832,9 @@ "signed": false, "security_report_summary": { "low": 0, - "high": 2, - "medium": 0, - "unknown": 4, + "high": 9, + "medium": 2, + "unknown": 8, "critical": 0 }, "all_containers_images_whitelisted": false, @@ -62628,6 +52866,17 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "airbyte/db", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/airbyte/db", + "OS": [ + "linux" + ] + }, { "name": "appdynamics/db-agent", "Official image": false, @@ -62636,14 +52885,7 @@ "star_count": 2, "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -62654,27 +52896,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3639.0 + "popularity": 157.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 102.0 + "popularity": 82.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7567.0 + "popularity": 8233.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6669.0 + "popularity": 3531.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 170.0 + "popularity": 168.0 } ] }, @@ -62698,14 +52940,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/pachyderm/map", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -62716,27 +52951,27 @@ { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 - }, - { - "name": "etl-map-omop-vocabulary", - "url": "https://quay.io/repository/lifebitai/etl-map-omop-vocabulary", - "popularity": 70.0 + "popularity": 337637.0 }, { "name": "spark-operator", "url": "https://quay.io/repository/radanalyticsio/spark-operator", - "popularity": 25375.0 + "popularity": 22746.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 73256.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8741.0 + "popularity": 14334.0 }, { - "name": "daemon", - "url": "https://quay.io/repository/ceph/daemon", - "popularity": 9586.0 + "name": "signalilo", + "url": "https://quay.io/repository/vshn/signalilo", + "popularity": 2263.0 } ] }, @@ -62819,27 +53054,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 - }, - { - "name": "nginx-ingress-controller", - "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1244426.0 + "popularity": 5835615.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1288147.0 + "popularity": 1268909.0 }, { - "name": "ambassador", - "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 430335.0 + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 978141.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 833568.0 + "popularity": 1442128.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 337637.0 } ] }, @@ -62862,14 +53097,7 @@ "star_count": 4, "Docker_Url": "https://hub.docker.com/r/ibmcom/isam", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ], @@ -62882,14 +53110,7 @@ "star_count": 4, "Docker_Url": "https://hub.docker.com/r/ibmcom/isam", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -62900,14 +53121,7 @@ "star_count": 8, "Docker_Url": "https://hub.docker.com/r/ibmcom/isam-postgresql", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -62918,14 +53132,7 @@ "star_count": 10, "Docker_Url": "https://hub.docker.com/r/ibmcom/isam-openldap", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -62960,14 +53167,7 @@ "star_count": 1, "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress-k8s-rds-cnab", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -62978,27 +53178,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 14960.0 + "popularity": 15030.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3111.0 + "popularity": 8009.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20583.0 - }, - { - "name": "edb-postgres-advanced", - "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 12879.0 + "popularity": 20267.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17958.0 + "popularity": 16654.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 4180.0 } ] }, @@ -63021,27 +53221,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3639.0 + "popularity": 157.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 102.0 + "popularity": 82.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7567.0 + "popularity": 8233.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6669.0 + "popularity": 3531.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 170.0 + "popularity": 168.0 } ] }, @@ -63064,27 +53264,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 29176747.0 + "popularity": 29516627.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "popularity": 259882.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 - }, - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 157394.0 + "popularity": 162027.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 126512.0 + "popularity": 160924.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 111692.0 } ] }, @@ -63101,39 +53301,25 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "atlassian/maven", + "name": "okteto/maven", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/atlassian/maven", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/okteto/maven", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "maven", - "Official image": true, - "Verified Publisher": false, + "name": "atlassian/maven", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 1384, - "Docker_Url": "https://hub.docker.com/_/maven", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/atlassian/maven", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -63144,58 +53330,29 @@ "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "pingidentity/apache-jmeter", - "Official image": false, - "Verified Publisher": true, + "name": "maven", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "star_count": 1401, + "Docker_Url": "https://hub.docker.com/_/maven", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { - "name": "bitnami/apache-exporter", + "name": "pingidentity/apache-jmeter", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -63206,27 +53363,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 897952.0 + "popularity": 1083441.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412719.0 + "popularity": 483547.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 265927.0 + "popularity": 270648.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 213163.0 + "popularity": 162027.0 } ] }, @@ -63250,48 +53407,7 @@ "star_count": 0, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibm-apiconnect-operator", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -63299,33 +53415,10 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, + "star_count": 6, "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] }, { @@ -63333,41 +53426,10 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 19, + "star_count": 22, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } + "linux" ] } ] @@ -63378,27 +53440,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 468518.0 + "popularity": 391395.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 526926.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 259882.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 368277.0 + "popularity": 201368.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 411336.0 + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 160435.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5878721.0 + "popularity": 5835615.0 } ] }, From f5f019048f8385427a3b48a1db401f177064e017 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:08:50 -0400 Subject: [PATCH 08/29] dockerhub search script Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_utils/dockerhub.py | 418 +++++++++++++++++++++++++++++ 1 file changed, 418 insertions(+) create mode 100644 kg_utils/search_utils/dockerhub.py diff --git a/kg_utils/search_utils/dockerhub.py b/kg_utils/search_utils/dockerhub.py new file mode 100644 index 0000000..0f7aa79 --- /dev/null +++ b/kg_utils/search_utils/dockerhub.py @@ -0,0 +1,418 @@ +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + +import logging +import docker +import json +import os +from search_utils import utils , dockerhub_api +from dotenv import load_dotenv ,find_dotenv +import configparser + + +#load environment variable +load_dotenv(find_dotenv()) + +#config file +config = configparser.ConfigParser() +config_data = os.path.join("config/kg.ini") +config.read([config_data]) + +#loggger +logger = logging.getLogger('search') +logger.setLevel(logging.INFO) + +# #load list of verified and official publishers +with open("kg_utils/image_search_kg/verified_publisher_names.json", "r", encoding="utf-8") as verified_file: + verified_publishers = json.load(verified_file) + + +docker_api =dockerhub_api.DockerHub(username=os.environ.get("DOCKERHUB_USERNAME", None) , password=os.environ.get("DOCKERHUB_PASSWORD", None)) + + +class DockerHubSearch(): + + def __init__(self): + + logging.basicConfig( filename="report.log", filemode="w", level=logging.DEBUG) + self.client = docker.from_env() + self.low_level_api = docker.APIClient(base_url='unix://var/run/docker.sock') + + def docker_href(self, image_name: str) -> str: + """ + Form href using image_name + Args: + image_name (str): image's name + + Returns: + str: href for image_name + """ + href = "" + + if "/" in image_name: + href = "https://hub.docker.com/r/" + image_name + + else: + href = "https://hub.docker.com/_/" + image_name + + return href + + def verified_official_images(self, images:list): + """ + Retrieve all verified and official images. + + Args: + images (list): Search results from dockerhub + + Returns: + (list): list of verified and official images + """ + + verified_official_images = [] + for image in images: + + # search official_images + if image["is_official"]: + + verified_official_images.append(image) + + # search verified publishers + elif "/" in image["name"]: + if ( + image["name"].split("/")[0] + in verified_publishers["verified_publishers"] + ): + + verified_official_images.append(image) + else: + continue + + return verified_official_images + + def exact_image( + self, entity_name: str, verified_and_official_images: list + ): + """ + find exact image match + + Args: + entity_name (str): search term + verified_and_official_images (list): list of verified and official images + + Returns: + (list): A list containing exact DockerHub match + """ + + exact_image = [] + image_names = [] + images = [image["name"] for image in verified_and_official_images] + + for img in images: + if "/" in img: + image_names.append(img.split("/")[1]) + else: + image_names.append(img) + + for index, img in enumerate(verified_and_official_images): + + if utils.is_exact_match(image_names[index], entity_name): + exact_image.append(img) + + else: + continue + + return exact_image + + def top_images(self, entity_name: str, verified_official_images: list): + """ + Get top relevant DockerHub images. select top 40%() + + Args: + entity_name (str): search term + verified_official_images (list): list of verified and official images + + Returns: + (list):A list containing top relevant DockerHub images + """ + + + top = int(config["dockerhub"]["top_relevant"])/100.0 + + top_images = [] + image_names = [] + query = entity_name + + if len(verified_official_images) == 0: + return top_images + + images = [image["name"] for image in verified_official_images] + + for img in images: + if "/" in img: + image_names.append(img.split("/")[1]) + else: + image_names.append(img) + + topscore_lines, line_score =utils.line_similarity(image_names, query) + + for index in list(topscore_lines): + if line_score[index] > top: + top_images.append(verified_official_images[index]) + + return top_images + + def user_and_repository(self, image:dict) -> tuple: + """_summary_ + + Args: + image (dict): _description_ + + Returns: + tuple: _description_ + """ + + if image['Official image']: + user = 'library' + repository = image["name"] + + else: + + user = image["name"].split("/")[0] + repository = image["name"].split("/")[1] + + return (user , repository) + + def _tag_os(self, results: list)-> list: + """ + + For each tags, get the operating system + + Args: + results (list): All tags data + + Returns: + list: A list containing unique OS names + """ + OS = [] + for result in results: + images = result["images"] + for image in images: + OS.append(image["os"]) + return list(set(OS)) + + def tags(self,user:str , repository: str )-> list: + """ + Args: + user (str): username + repository (str): repository + + Returns: + list: Unique OS names + """ + pages = int(config["dockerhub"]["tags_num_pages"]) # look for OS within x number of pages + OS = [] + for page in range(pages): + try: + tag = docker_api._do_requests_get( "https://registry.hub.docker.com/v2/repositories/{}/{}/tags/?page={}".format(user, repository, page+1) ) + results = tag.json()["results"] + OS = OS + self._tag_os(results) + except: + logger.info("No more tags found at page{}".format(page)) + return OS + + + def get_os(self, images: list ) -> list: + + """" + Using docker_api_utils, retrieve os for each image. + + Keyword arguments: + images(list) -- list of images from Dockerhub + Return: + list of images with updated OS data + """ + image_lst = [] + + if len(images) == 0: + return image_lst + + for image in images: + + OS_list = [] + user , repository = self.user_and_repository(image) + + OS_list = self.tags(user, repository) + + image['OS'] = list(set(OS_list)) + + image_lst.append(image) + + return image_lst + + + def recommend_exact_image(self,entity_name:str , verified_and_official_images:list): + """ + Searches for exact Dockerhub images. + + Args: + entity_name (str): _description_ + verified_and_official_images (list): list containing all verified and official images from search result + + Returns: + list: list of exact images if found + """ + + exact_image = self.exact_image(entity_name, verified_and_official_images) + exact_image = utils.format_images(exact_image) + exact_image = self.get_os(exact_image) + return exact_image + + + def recommend_top_images ( self,entity_name:str , verified_and_official_images:list)->list: + + """ + Recommend top relevant images from Dockerhub. + + Returns: + list: top images. + """ + + top_images = self.top_images(entity_name, verified_and_official_images) + top_images = utils.format_images(top_images) + top_images = self.get_os(top_images) + return top_images + + def recommended_images(self, image_inst:list, entity_name:str): + """ + Given an entity_name and a list of relevant images from DockerHub, determine + exact matches and top relevant matches. + + Args: + image_inst (list): list of all images found from dockerhub including unofficial as well as unverified images + entity_name (str): query ( entity) + + Returns: + (list) ,(list): exact dockerhub image , top docker images + """ + verified_official_images = self.verified_official_images(image_inst) + exact_image = self.recommend_exact_image(entity_name,verified_official_images) + top_images = self.recommend_top_images(entity_name , verified_official_images) + + + return exact_image , top_images + + + def search_dockerhub_images(self, entity: str) -> tuple: + """ + Search container images from Dockerhub. + + Args: + entity (str): An entity(query) from the database.. + + Returns: + + (tuple): exact_image(list) and top_images(list) + + """ + + images , exact_image , top_images = [] , [] , [] + + try: + images = self.client.images.search(term=entity) + except: + print("ImageNotFound error occurred, check your entry and try again.") + if images == []: + print("No Dockerhub images found for {} ".format(entity)) + + else: + exact_image , top_images = self.recommended_images(images, entity) + + return (exact_image , top_images) + + + def has_tags(self,user , repo:str) -> bool: + """ + Check if a repository has tags + Args: + container_url (str): a container url + + Returns: + bool: True if repository has tags,False otherwise + """ + try: + resp = docker_api._do_requests_get("https://registry.hub.docker.com/v2/repositories/{}/{}/tags".format(user, repo) ) + return True + + except: + return False + + + def user_repo_from_url(self, url: str) -> tuple: + """ + Extract user and repo name fro url + Args: + url (str): Image url + + Returns: + tuple: (user , repo) + """ + + user_repo = url.split("https://hub.docker.com")[-1] + + if "/_/" in user_repo: + user ="library" + repo = user_repo.split("/_/")[-1] + elif "/r/" in user_repo: + + user_repo_split = user_repo.split("/r/")[-1].split("/") + user = user_repo_split[0] + if len(user_repo_split)==3: + repo = user_repo_split[1] + else: repo= user_repo_split[-1] + else: + user = user_repo.split("/")[0] + repo = user_repo.split("/")[1] + + return (user , repo) + + + + def docker_containers_with_no_tags(self)-> list: + """ + Retrieve all docker url from docker_images table + Returns: + list: List of container images with no tags data + """ + docker_urls = utils.container_urls() + # To avoid hitting the rate limits, run in multiple sessions( in batch mode): docker_urls[0:65], docker_urls[65:130] , docker_urls[130:195] , docker_urls[195:260] .... + + images_with_no_tags = [] + + for url in docker_urls[:65]: + + if "https://hub.docker.com" not in url: continue + user , repo = self.user_repo_from_url(url) + + if self.has_tags(user , repo): + print("{}:{} has tags: {} ".format(user , repo, url)) + elif not self.has_tags(user ,repo): + print("{}:{} has no tags: {}".format(user, repo, url)) + images_with_no_tags.append(url) + else: continue + print(json.dumps(images_with_no_tags, indent=4)) + return images_with_no_tags + + From 94eb5d406d438b8e152e037024e5c19439c68e79 Mon Sep 17 00:00:00 2001 From: lamwassi <85893516+lamwassi@users.noreply.github.com> Date: Wed, 5 Oct 2022 12:11:36 -0400 Subject: [PATCH 09/29] Delete operator_images.csv Signed-off-by: Divya Sankar --- kg_utils/image_search_kg/operator_images.csv | 325 ------------------- 1 file changed, 325 deletions(-) delete mode 100644 kg_utils/image_search_kg/operator_images.csv diff --git a/kg_utils/image_search_kg/operator_images.csv b/kg_utils/image_search_kg/operator_images.csv deleted file mode 100644 index 426c5a9..0000000 --- a/kg_utils/image_search_kg/operator_images.csv +++ /dev/null @@ -1,325 +0,0 @@ -operator_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Operator_Correspondent_Image_Url,Operator_Repository -operator_images,Strimzi,576,,,9,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Eclipse Ditto,576,,,46,,,,,,https://github.com/ctron/ditto-operator -operator_images,Eclipse Hawkbit,576,,,46,,,,,,https://github.com/ctron/hawkbit-operator -operator_images,IoT simulator,576,,,46,,,,,,https://github.com/ctron/iot-simulator-operator -operator_images,Elasticsearch (ECK) Operator,576,,,47,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Elasticsearch Phenix Operator,576,,,47,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator -operator_images,Nuxeo Operator,576,,,47,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,Logging Operator,576,,,47,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator -operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,576,,,47,,,,,,https://github.com/aws-controllers-k8s -operator_images,Elasticsearch Index Operator,576,,,47,,,,,,https://github.com/IBM/esindex-operator -operator_images,Prometheus Exporter Operator,576,,,47,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Kong Operator,576,,,88,,,,,,https://github.com/kong/kong-operator -operator_images,Jenkins Operator,576,,,90,,,,,,https://github.com/jenkinsci/kubernetes-operator -operator_images,Prometheus Exporter Operator,576,,,98,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,MongoDB Enterprise Operator,576,,,116,,,,,"[""''quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.3''""]",https://github.com/mongodb/mongodb-enterprise-kubernetes -operator_images,MongoDB Operator,576,,,116,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator -operator_images,MongoDB Atlas Operator,576,,,116,,,,,"[""''quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.1.0''""]", -operator_images,Percona Distribution for MongoDB Operator,576,,,116,,,,,,https://github.com/percona/percona-server-mongodb-operator -operator_images,Nuxeo Operator,576,,,116,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,GrdsCloud MySQL for Kubernetes,576,,,122,,,,,,https://github.com/GrdsCloud -operator_images,Percona Distribution for MySQL Operator,576,,,122,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,PlanetScale Operator for Vitess,576,,,122,,,,,, -operator_images,Prometheus Exporter Operator,576,,,122,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Postgresql Operator,576,,,157,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator -operator_images,Percona Operator for PostgreSQL,576,,,157,,,,,,https://github.com/percona/percona-postgresql-operator -operator_images,PostgreSQL Operator by Dev4Ddevs.com,576,,,157,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator -operator_images,Crunchy Postgres for Kubernetes,576,,,157,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,EDB Postgres for Kubernetes,576,,,157,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ -operator_images,Postgres-Operator,576,,,157,,,,,,https://github.com/zalando/postgres-operator -operator_images,Ext Postgres Operator,576,,,157,,,,,,https://github.com/movetokube/postgres-operator -operator_images,Nuxeo Operator,576,,,157,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,Prometheus Exporter Operator,576,,,157,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Robin Cloud Native Storage,576,,,157,,,,,, -operator_images,Redis Operator,576,,,168,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Redis Enterprise,576,,,168,,,,,,https://github.com/RedisLabs/redis-enterprise-k8s-docs -operator_images,Prometheus Exporter Operator,576,,,168,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Splunk Operator,576,,,188,,,,,, -operator_images,Encrypted Images Key Syncer Helm Operator,576,,,209,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator -operator_images,Joget DX on Apache Tomcat,576,,,,260,,,,,https://github.com/jogetworkflow/ -operator_images,APIcast,576,,,,274,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator -operator_images,Spark Operator,576,,,,280,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator -operator_images,Apache Spark Operator,576,,,,280,,,,"[""''quay.io/radanalyticsio/spark-operator:1.0.2''""]",https://github.com/radanalyticsio/spark-operator -operator_images,Kubestone,576,,,,280,,,,,https://github.com/xridge/kubestone -operator_images,Flink Kubernetes Operator,576,301,,,,,,,"[""''docker.io/apache/flink-kubernetes-operator:1.0.1''""]",https://github.com/apache/flink-kubernetes-operator.git -operator_images,Alvearie Imaging Ingestion Operator,576,303,,,,,,,,https://github.com/Alvearie/imaging-ingestion -operator_images,DataStax Kubernetes Operator for Apache Cassandra,576,303,,,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Qserv operator,576,303,,,,,,,,https://github.com/lsst/qserv-operator -operator_images,Strimzi,576,303,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,576,303,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,576,303,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,576,303,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,576,303,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,576,303,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,576,303,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,576,303,,,,,,,,https://github.com/rook/rook -operator_images,Argo CD,576,303,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,576,303,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,576,303,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,576,303,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,576,303,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,576,303,,,,,,,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,576,303,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,576,303,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,576,303,,,,,,,,https://github.com/storageos/operator -operator_images,Joget DX on Apache Tomcat,576,306,,,,,,,,https://github.com/jogetworkflow/ -operator_images,Lightbend Console Operator,576,306,,,,,,,,https://github.com/lightbend/console-charts/tree/master/operator -operator_images,Knative Operator,576,321,,,,,,,,https://github.com/knative/operator -operator_images,PostgreSQL Operator by Dev4Ddevs.com,576,323,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator -operator_images,Redis Operator,576,323,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Logging Operator,576,323,,,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator -operator_images,External Secrets Operator,576,323,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator -operator_images,Intel Device Plugins Operator,576,323,,,,,,,,https://github.com/intel/intel-device-plugins-for-kubernetes -operator_images,MongoDB Operator,576,323,,,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator -operator_images,silicom-sts-operator,576,323,,,,,,,"[""''quay.io/silicom/sts-operator:v0.0.1''""]",github.com/silicomdk/sts-operator -operator_images,Spark Operator,576,323,,,,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator -operator_images,Azure Service Operator,576,353,,,,,,,,https://github.com/Azure/azure-service-operator -operator_images,API Operator for Kubernetes,576,353,,,,,,,,https://github.com/wso2/k8s-api-operator -operator_images,KEDA,576,353,,,,,,,,https://github.com/kedacore/keda-olm-operator -operator_images,WSO2 API Manager Operator for Kubernetes,576,353,,,,,,,,https://github.com/wso2/k8s-wso2am-operator -operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon Application Auto Scaling,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon DynamoDB,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon EC2,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon ECR,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon EKS,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon EMR on EKS,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon IAM,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon KMS,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon Lambda,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon MQ,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon OpenSearch Service,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon RDS,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon S3,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon SageMaker,576,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,Strimzi,576,355,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,576,355,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,576,355,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,576,355,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Knative Operator,576,355,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,576,355,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,576,355,,,,,,,,https://github.com/rook/rook -operator_images,Grafana Operator,576,355,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,576,355,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,576,355,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,RocketMQ Operator,576,355,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,Falco Operator,576,355,,,,,,,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator -operator_images,Kubemq Enterprise Operator,576,355,,,,,,,"[""''docker.io/kubemq/kubemq-operator:latest''""]",https://github.com/kubemq-io/kubemq-operator -operator_images,Postgres-Operator,576,355,,,,,,,,https://github.com/zalando/postgres-operator -operator_images,AWS S3 Operator,576,355,,,,,,,"[""''quay.io/screeley44/aws-s3-provisioner:v1.0.0''""]",https://github.com/yard-turkey/aws-s3-provisioner -operator_images,Azure Service Operator,576,355,,,,,,,,https://github.com/Azure/azure-service-operator -operator_images,ArangoDB,576,355,,,,,,,,https://github.com/arangodb/kube-arangodb -operator_images,Redis Enterprise,576,355,,,,,,,,https://github.com/RedisLabs/redis-enterprise-k8s-docs -operator_images,Apicurio Registry Operator,576,355,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator -operator_images,API Operator for Kubernetes,576,355,,,,,,,,https://github.com/wso2/k8s-api-operator -operator_images,GitLab,576,360,,,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator -operator_images,GitLab Runner,576,360,,,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator -operator_images,nfd-operator,576,362,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator -operator_images,Appsody Operator,576,364,,,,,,,,https://github.com/appsody/appsody-operator -operator_images,Runtime Component Operator,576,364,,,,,,,,https://github.com/application-stacks/runtime-component-operator -operator_images,Camel K Operator,576,,378,,,,,,"[""''docker.io/apache/camel-k:1.9.2''""]",https://github.com/apache/camel-k -operator_images,Appsody Operator,576,,398,,,,,,,https://github.com/appsody/appsody-operator -operator_images,Open Liberty Operator,576,,398,,,,,,,https://github.com/OpenLiberty/open-liberty-operator -operator_images,Runtime Component Operator,576,,398,,,,,,,https://github.com/application-stacks/runtime-component-operator -operator_images,Kogito,576,,398,,,,,,"[""''quay.io/kiegroup/kogito-operator:1.24.0''""]",https://github.com/kiegroup/kogito-operator -operator_images,Kubeflow,424,,,,,,,,,https://github.com/kubeflow/kfctl -operator_images,Varnish Operator,424,,,,,,,,,https://github.com/IBM/varnish-operator -operator_images,Composable,424,,,,,,,,,https://github.com/IBM/composable -operator_images,IBM COS Bucket Operator,424,,,,,,,,,https://github.com/IBM/cos-bucket-operator -operator_images,Encrypted Images Key Syncer Helm Operator,424,,,,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator -operator_images,Elasticsearch Index Operator,424,,,,,,,,,https://github.com/IBM/esindex-operator -operator_images,Event Streams Topic,424,,,,,,,,,https://github.com/IBM/event-streams-topic -operator_images,External Secrets Operator,424,,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator -operator_images,Hybrid Application Model Operator,424,,,,,,,,"[""''quay.io/hybridappio/ham-deploy:0.1.0''""]",https://github.com/hybridapp-io/ham-deploy -operator_images,IBM Application Gateway Operator,424,,,,,,,,,https://github.com/IBM-Security/ibm-application-gateway-operator -operator_images,IBM block storage CSI driver operator,424,,,,,,,,,https://github.com/IBM/ibm-block-csi-operator -operator_images,IBM Cloud IAM Operator,424,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator -operator_images,IBM Cloud Operator,424,,,,,,,,,https://github.com/IBM/cloud-operators -operator_images,Ibm Quantum Operator,424,,,,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator -operator_images,IBM Security Verify Access Operator,424,,,,,,,,,https://github.com/IBM-Security/verify-access-operator -operator_images,IBM Spectrum Scale CSI Plugin Operator,424,,,,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/ -operator_images,Open Liberty Operator,424,,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator -operator_images,QiskitPlayground,424,,,,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator -operator_images,WildFly,576,,,,,,493,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator -operator_images,Knative Operator,576,,,,,,,497,,https://github.com/knative/operator -operator_images,Submariner,576,,,,,,,497,"[""''quay.io/submariner/submariner-operator:0.11.0''""]",https://github.com/submariner-io/submariner-operator -operator_images,Kong Operator,576,,,,,,,497,,https://github.com/kong/kong-operator -operator_images,Traefikee Operator,576,,,,,,,497,,https://docs.containo.us -operator_images,Upbound Universal Crossplane (UXP),576,,,,,,,497,,https://github.com/upbound/universal-crossplane -operator_images,Varnish Operator,576,,,,,,,497,,https://github.com/IBM/varnish-operator -operator_images,BeeGFS CSI Driver,576,,,,,,,497,,https://github.com/netapp/beegfs-csi-driver -operator_images,cluster-impairment-operator,576,,,,,,,497,"[""''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''""]",https://github.com/redhat-performance/cluster-impairment-operator -operator_images,Kogito Knative Eventing Source,576,,,,,,,497,,https://github.com/knative-sandbox/eventing-kogito -operator_images,k8gb,576,,,,,,,497,,https://github.com/k8gb-io/k8gb -operator_images,Kubernetes NMState Operator,576,,,,,,,497,"[""''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''""]",https://github.com/nmstate/kubernetes-nmstate -operator_images,MARIN3R,576,,,,,,,497,"[""''quay.io/3scale/marin3r''""]",https://github.com/3scale-ops/marin3r -operator_images,MetalLB Operator,576,,,,,,,497,"[""''quay.io/metallb/metallb-operator''""]",https://github.com/metallb/metallb-operator -operator_images,NetObserv Operator,576,,,,,,,497,"[""''quay.io/netobserv/network-observability-operator:0.1.3''""]",https://github.com/netobserv/network-observability-operator -operator_images,NeuVector Operator,576,,,,,,,497,,https://github.com/neuvector/neuvector-operator -operator_images,Network Service Mesh Operator,576,,,,,,,497,"[""''quay.io/acmenezes/nsm-operator:v0.0.1''""]",https://github.com/acmenezes/nsm-operator -operator_images,Prisma Cloud Compute Operator,576,,,,,,,497,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator -operator_images,Routernetes,576,,,,,,,497,"[""''quay.io/routernetes/routernetes-operator:0.0.5''""]",https://github.com/routernetes/routernetes-operator -operator_images,skydive-operator,576,,,,,,,497,"[""''docker.io/skydive/skydive-operator:0.0.50''""]",https://github.com/skydive-project/skydive-golang-operator -operator_images,Tf Operator,576,,,,,,,497,"[""''docker.io/tungstenfabric/tf-operator:latest''""]",https://github.com/tungstenfabric/tf-operator -operator_images,Nexus Operator,576,,,,,,,503,"[""''quay.io/m88i/nexus-operator:0.6.0''""]",https://github.com/m88i/nexus-operator -operator_images,Anchore Engine Operator,576,,,,,,,503,"[""''docker.io/anchore/engine-operator:v0.1.3''""]",https://github.com/anchore/engine-operator -operator_images,Carbonetes Operator,576,,,,,,,503,"[""''docker.io/carbonetes/operator:1.0.4''""]",https://github.com/carbonetes/carbonetes-analyzer -operator_images,Prisma Cloud Compute Operator,576,,,,,,,503,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator -operator_images,Alvearie Imaging Ingestion Operator,576,582,,,,,,,,https://github.com/Alvearie/imaging-ingestion -operator_images,DataStax Kubernetes Operator for Apache Cassandra,576,582,,,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Qserv operator,576,582,,,,,,,,https://github.com/lsst/qserv-operator -operator_images,Strimzi,576,582,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,576,582,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,576,582,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,576,582,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,576,582,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,576,582,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,576,582,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,576,582,,,,,,,,https://github.com/rook/rook -operator_images,Argo CD,576,582,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,576,582,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,576,582,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,576,582,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,576,582,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,576,582,,,,,,,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,576,582,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,576,582,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,576,582,,,,,,,,https://github.com/storageos/operator -operator_images,Alvearie Imaging Ingestion Operator,576,583,,,,,,,,https://github.com/Alvearie/imaging-ingestion -operator_images,DataStax Kubernetes Operator for Apache Cassandra,576,583,,,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Qserv operator,576,583,,,,,,,,https://github.com/lsst/qserv-operator -operator_images,Strimzi,576,583,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,576,583,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,576,583,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,576,583,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,576,583,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,576,583,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,576,583,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,576,583,,,,,,,,https://github.com/rook/rook -operator_images,Argo CD,576,583,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,576,583,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,576,583,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,576,583,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,576,583,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,576,583,,,,,,,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,576,583,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,576,583,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,576,583,,,,,,,,https://github.com/storageos/operator -operator_images,WildFly,576,584,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator -operator_images,AtlasMap Operator,576,584,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator -operator_images,Appsody Operator,576,584,,,,,,,,https://github.com/appsody/appsody-operator -operator_images,Cryostat Operator,576,584,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator -operator_images,Open Liberty Operator,576,584,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator -operator_images,Runtime Component Operator,576,584,,,,,,,,https://github.com/application-stacks/runtime-component-operator -operator_images,IBM Spectrum Scale CSI Plugin Operator,576,,,605,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/ -operator_images,Instana Agent Operator,576,,,,,,,611,,https://github.com/instana/instana-agent-operator -operator_images,credstash-operator,576,,,612,,,,,"[""''quay.io/ouzi/credstash-operator:v1.13.0''""]",https://github.com/ouzi-dev/credstash-operator -operator_images,Snyk Operator,576,,,613,,,,,"[""''docker.io/snyk/kubernetes-operator:1.92.0''""]",https://github.com/snyk/kubernetes-monitor -operator_images,Akka Cluster Operator,576,,,614,,,,,,https://github.com/lightbend/akka-cluster-operator -operator_images,Lightbend Console Operator,576,,,614,,,,,,https://github.com/lightbend/console-charts/tree/master/operator -operator_images,Varnish Operator,576,,,,615,,,,,https://github.com/IBM/varnish-operator -operator_images,Datadog Operator,576,,,,,,,616,,https://github.com/DataDog/datadog-operator -operator_images,Hazelcast Platform Operator,576,,,,,,,618,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]",https://docs.hazelcast.com/operator/latest/ -operator_images,Infinispan Operator,576,,,619,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator -operator_images,Nuxeo Operator,576,,,,,,,620,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,ArangoDB,576,,,621,,,,,,https://github.com/arangodb/kube-arangodb -operator_images,AWS Controllers for Kubernetes - Amazon S3,576,,,623,,,,,,https://github.com/aws-controllers-k8s -operator_images,Altinity Operator for ClickHouse,576,,,624,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Minio Operator,576,,,625,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator -operator_images,Elasticsearch Index Operator,576,,,626,,,,,,https://github.com/IBM/esindex-operator -operator_images,Elasticsearch (ECK) Operator,576,,,626,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Elasticsearch Phenix Operator,576,,,626,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator -operator_images,Logging Operator,576,,,626,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator -operator_images,Nuxeo Operator,576,,,626,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,Prometheus Exporter Operator,576,,,626,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Percona Distribution for MySQL Operator,576,,,627,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,Keycloak Operator,576,,,628,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Grafana Operator,576,,,629,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Prometheus Exporter Operator,576,,,629,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Mattermost Operator,576,,,,,,,630,"[""''docker.io/mattermost/mattermost-operator:v0.5.0''""]",https://github.com/mattermost/mattermost-operator -operator_images,synapse-helm,576,,,631,,,,,"[""''quay.io/mgoerens/synapse-helm:v0.0.11''""]",https://github.com/opdev/synapse-helm -operator_images,IBM Cloud IAM Operator,576,,,632,,,,,,https://github.com/IBM/ibmcloud-iam-operator -operator_images,AWS Controllers for Kubernetes - Amazon IAM,576,,,632,,,,,,https://github.com/aws-controllers-k8s -operator_images,Knative Operator,576,,,,,,,633,,https://github.com/knative/operator -operator_images,Kogito Knative Eventing Source,576,,,,,,,633,,https://github.com/knative-sandbox/eventing-kogito -operator_images,YAKS Operator,576,,,,,,,633,"[""''docker.io/citrusframework/yaks:0.10.0''""]",https://github.com/citrusframework/yaks -operator_images,DataStax Kubernetes Operator for Apache Cassandra,576,,,634,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Kubeflow,576,,,,,,,635,,https://github.com/kubeflow/kfctl -operator_images,QiskitPlayground,576,,,636,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator -operator_images,Ibm Quantum Operator,576,,,636,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator -operator_images,Azure Service Operator,576,,,637,,,,,,https://github.com/Azure/azure-service-operator -operator_images,Strimzi,576,,,,,,,638,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Sematext Operator,576,,,,,,,639,"[""''docker.io/sematext/sematext-operator:1.0.46''""]",https://github.com/sematext/sematext-operator -operator_images,Eclipse Hawkbit,576,,,640,,,,,,https://github.com/ctron/hawkbit-operator -operator_images,Eclipse Ditto,576,,,641,,,,,,https://github.com/ctron/ditto-operator -operator_images,Mariadb Operator,576,,,642,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator -operator_images,Zadara Operator,576,,,643,,,,,,https://github.com/zadarastorage/zadara-operator -operator_images,Istio,576,,,644,,,,,,https://github.com/banzaicloud/istio-operator/tree/release-1.1 -operator_images,Istio Workspace,576,,,644,,,,,"[""''quay.io/maistra/istio-workspace:v0.5.1''""]",https://github.com/maistra/istio-workspace -operator_images,Kiali Operator,576,,,644,,,,,"[""''quay.io/kiali/kiali-operator:v1.53.0''""]",https://github.com/kiali/kiali -operator_images,Vault Operator,576,,,645,,,,,,https://github.com/banzaicloud/bank-vaults/tree/master/operator -operator_images,Vault Helm,576,,,645,,,,,"[""''quay.io/brejohns/vault-helm:0.0.2''""]",https://github.com/SDBrett/vault-helm -operator_images,External Secrets Operator,576,,,645,,,,,,https://github.com/external-secrets/external-secrets-helm-operator -operator_images,druid-operator,576,,,646,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator -operator_images,etcd,576,,,647,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator -operator_images,Traefikee Operator,576,,,,648,,,,,https://docs.containo.us -operator_images,IBM Cloud Operator,576,,,649,,,,,,https://github.com/IBM/cloud-operators -operator_images,IBM Cloud IAM Operator,576,,,649,,,,,,https://github.com/IBM/ibmcloud-iam-operator -operator_images,Event Streams Topic,576,,,649,,,,,,https://github.com/IBM/event-streams-topic -operator_images,IBM COS Bucket Operator,576,,,649,,,,,,https://github.com/IBM/cos-bucket-operator -operator_images,Composable,576,,,649,,,,,,https://github.com/IBM/composable -operator_images,Elasticsearch Index Operator,576,,,649,,,,,,https://github.com/IBM/esindex-operator -operator_images,IBM block storage CSI driver operator,576,,,649,,,,,,https://github.com/IBM/ibm-block-csi-operator -operator_images,Yugabyte Operator,576,,,650,,,,,"[""''quay.io/yugabyte/yugabytedb-operator''""]",https://github.com/yugabyte/yugabyte-operator -operator_images,CockroachDB,576,,,651,,,,,"[""''quay.io/helmoperators/cockroachdb:v5.0.4''""]",https://github.com/dmesser/cockroachdb-operator -operator_images,Community Jaeger Operator,576,,,,,,,652,"[""''quay.io/jaegertracing/jaeger-operator:1.36.0''""]",https://github.com/jaegertracing/jaeger-operator -operator_images,PostgreSQL Operator by Dev4Ddevs.com,576,,,,,,,661,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator -operator_images,Strimzi,576,,,,,,,661,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,576,,,,,,,661,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,576,,,,,,,661,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,576,,,,,,,661,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,576,,,,,,,661,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,576,,,,,,,661,,https://github.com/knative/operator -operator_images,Redis Operator,576,,,,,,,661,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,576,,,,,,,661,,https://github.com/rook/rook -operator_images,Argo CD,576,,,,,,,661,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,576,,,,,,,661,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,576,,,,,,,661,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,576,,,,,,,661,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,576,,,,,,,661,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,576,,,,,,,661,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,576,,,,,,,661,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,576,,,,,,,661,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,576,,,,,,,661,,https://github.com/storageos/operator -operator_images,Falco Operator,576,,,,,,,661,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator -operator_images,Community Jaeger Operator,576,,,,,,,661,"[""''quay.io/jaegertracing/jaeger-operator:1.36.0''""]",https://github.com/jaegertracing/jaeger-operator -operator_images,ks-releaser,576,,,677,,,,,,https://github.com/kubesphere-sigs/ks-releaser-operator -operator_images,Argo CD,576,,,677,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Flux,576,,,677,,,,,,https://fluxcd.io/docs/ -operator_images,Argo CD Operator (Helm),576,,,677,,,,,"[""''quay.io/disposab1e/argocd-operator-helm''""]",https://github.com/disposab1e/argocd-operator-helm.git -operator_images,External Secrets Operator,576,,,677,,,,,,https://github.com/external-secrets/external-secrets-helm-operator -operator_images,GitLab,576,,,677,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator -operator_images,GitLab Runner,576,,,677,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator -operator_images,Multicluster Subscription Operator,576,,,677,,,,,"[""''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''""]",https://github.com/open-cluster-management/multicloud-operators-subscription -operator_images,Weave GitOps Terraform Controller,576,,,677,,,,,,https://weaveworks.github.io/tf-controller/ -operator_images,GitLab,576,,,678,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator -operator_images,GitLab Runner,576,,,678,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator -operator_images,External Secrets Operator,576,,,678,,,,,,https://github.com/external-secrets/external-secrets-helm-operator -operator_images,GrdsCloud MySQL for Kubernetes,576,,,684,,,,,,https://github.com/GrdsCloud -operator_images,Percona Distribution for MySQL Operator,576,,,684,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,PlanetScale Operator for Vitess,576,,,684,,,,,, -operator_images,Prometheus Exporter Operator,576,,,684,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Postgresql Operator,576,,,686,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator -operator_images,Percona Operator for PostgreSQL,576,,,686,,,,,,https://github.com/percona/percona-postgresql-operator -operator_images,PostgreSQL Operator by Dev4Ddevs.com,576,,,686,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator -operator_images,Crunchy Postgres for Kubernetes,576,,,686,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,EDB Postgres for Kubernetes,576,,,686,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ -operator_images,Postgres-Operator,576,,,686,,,,,,https://github.com/zalando/postgres-operator -operator_images,Ext Postgres Operator,576,,,686,,,,,,https://github.com/movetokube/postgres-operator -operator_images,Nuxeo Operator,576,,,686,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,Prometheus Exporter Operator,576,,,686,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Robin Cloud Native Storage,576,,,686,,,,,, -operator_images,AWS Controllers for Kubernetes - Amazon RDS,576,,,687,,,,,,https://github.com/aws-controllers-k8s -operator_images,Upbound Universal Crossplane (UXP),576,,,687,,,,,,https://github.com/upbound/universal-crossplane From d09d422f44c5e115b4162e431da448b6d1f8359b Mon Sep 17 00:00:00 2001 From: lamwassi <85893516+lamwassi@users.noreply.github.com> Date: Wed, 5 Oct 2022 12:12:04 -0400 Subject: [PATCH 10/29] Delete openshift_images.csv not needed, Signed-off-by: Divya Sankar --- kg_utils/image_search_kg/openshift_images.csv | 97 ------------------- 1 file changed, 97 deletions(-) delete mode 100644 kg_utils/image_search_kg/openshift_images.csv diff --git a/kg_utils/image_search_kg/openshift_images.csv b/kg_utils/image_search_kg/openshift_images.csv deleted file mode 100644 index 492dd17..0000000 --- a/kg_utils/image_search_kg/openshift_images.csv +++ /dev/null @@ -1,97 +0,0 @@ -openshift_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Openshift_Correspondent_Image_Url,DockerImageType -openshift_images,ansible,576,,,5,,,,,https://quay.io/repository/cloudctl/ansible,App -openshift_images,asterisk,576,,,14,,,,,https://quay.io/repository/citybaseinc/asterisk,App -openshift_images,db2,576,,,43,,,,,https://quay.io/repository/quarkusqeteam/db2,App -openshift_images,drupal,576,,,45,,,,,https://quay.io/repository/official-images/drupal,App -openshift_images,elastic,576,,,47,,,,,https://quay.io/repository/kmamgain/elastic,App -openshift_images,genymotion,576,,,54,,,,,https://quay.io/repository/alaska/genymotion,App -openshift_images,hadoop,576,,,57,,,,,https://quay.io/repository/iguazio/hadoop,App -openshift_images,jenkins,576,,,90,,,,,https://quay.io/repository/cdis/jenkins,App -openshift_images,memcached,576,,,98,,,,,https://quay.io/repository/jitesoft/memcached,App -openshift_images,mysql,576,,,122,,,,,https://quay.io/repository/openshifttest/mysql,App -openshift_images,neo4j,576,,,123,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j,App -openshift_images,openldap,576,,,126,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap,App -openshift_images,openvpn,576,,,128,,,,,https://quay.io/repository/kubermatic/openvpn,App -openshift_images,pentaho,576,,,150,,,,,https://quay.io/repository/hasni/pentaho,App -openshift_images,postgresql,576,,,157,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App -openshift_images,rabbitmq,576,,,165,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq,App -openshift_images,redis,576,,,168,,,,,https://quay.io/repository/sameersbn/redis,App -openshift_images,remedy,576,,,169,,,,,https://quay.io/repository/amosnl/remedy,App -openshift_images,riak,576,,,170,,,,,https://quay.io/repository/dotabuff/riak,App -openshift_images,sentry,576,,,180,,,,,https://quay.io/repository/app-sre/sentry,App -openshift_images,sonarqube,576,,,186,,,,,https://quay.io/repository/gpte-devops-automation/sonarqube,App -openshift_images,splunk,576,,,188,,,,,https://quay.io/repository/mariaelisacf/splunk,App -openshift_images,whois,576,,,212,,,,,https://quay.io/repository/westonsteimel/whois,App -openshift_images,tableau,576,,,213,,,,,https://quay.io/repository/growthstack/tableau,App -openshift_images,wordpress,576,,,245,,,,,https://quay.io/repository/redhattraining/wordpress,App -openshift_images,sqlite,576,,,258,,,,,https://quay.io/repository/fale/sqlite,App -openshift_images,glassfish,576,,,,263,,,,https://quay.io/repository/mohamedf0/glassfish,App_Server -openshift_images,haproxy,576,,,,264,,,,https://quay.io/repository/jduimovich0/haproxy,App_Server -openshift_images,lucee,576,,,,271,,,,https://quay.io/repository/daemonite/lucee,App_Server -openshift_images,nginx,576,,,,274,,,,https://quay.io/repository/openshift-scale/nginx,App_Server -openshift_images,spark,576,,,,280,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/spark,App_Server -openshift_images,awk,576,300,,,,,,,https://quay.io/repository/shenglai/awk,Lang -openshift_images,basic,576,301,,,,,,,https://quay.io/repository/biocontainers/basic,Lang -openshift_images,expect,576,315,,,,,,,https://quay.io/repository/baseimage/expect,Lang -openshift_images,focus,576,321,,,,,,,https://quay.io/repository/biocontainers/focus,Lang -openshift_images,fortran,576,322,,,,,,,https://quay.io/repository/eriktrent/fortran,Lang -openshift_images,graphql,576,324,,,,,,,https://quay.io/repository/wasmoffload/graphql,Lang -openshift_images,groovy,576,325,,,,,,,https://quay.io/repository/official-images/groovy,Lang -openshift_images,jcl,576,338,,,,,,,https://quay.io/repository/jclaret/jcl,Lang -openshift_images,sas,576,360,,,,,,,https://quay.io/repository/domino/sas,Lang -openshift_images,scala,576,362,,,,,,,https://quay.io/repository/azavea/scala,Lang -openshift_images,typescript,576,367,,,,,,,https://quay.io/repository/ellerbrock/typescript,Lang -openshift_images,log4j,576,,394,,,,,,https://quay.io/repository/crozzy/log4j,Lib -openshift_images,struts,576,,402,,,,,,https://quay.io/repository/arifulhuq/struts,Lib -openshift_images,angularjs,576,,406,,,,,,https://quay.io/repository/amaljose/angularjs,Lib -openshift_images,react,576,,413,,,,,,https://quay.io/repository/profects/react,Lib -openshift_images,android,418,,,,,,,,https://quay.io/repository/bitriseio/android,OS -openshift_images,dart,421,,,,,,,,https://quay.io/repository/biocontainers/dart,OS -openshift_images,centos,427,,,,,,,,https://quay.io/repository/centos/centos,OS -openshift_images,debian,429,,,,,,,,https://quay.io/repository/official-images/debian,OS -openshift_images,opensuse,431,,,,,,,,https://quay.io/repository/wstein/opensuse,OS -openshift_images,ubuntu,436,,,,,,,,https://quay.io/repository/libpod/ubuntu,OS -openshift_images,freebsd,447,,,,,,,,https://quay.io/repository/uchida/freebsd,OS -openshift_images,fedora,453,,,,,,,,https://quay.io/repository/fedora/fedora,OS -openshift_images,ado,576,,,,,,488,,https://quay.io/repository/scottlezberg/ado,Runlib -openshift_images,wildfly,576,,,,,,493,,https://quay.io/repository/wildfly/wildfly,Runlib -openshift_images,flash,576,,,,,,,504,https://quay.io/repository/biocontainers/flash,Runtime -openshift_images,windows,580,,,,,,,,https://quay.io/repository/mhallin/windows,OS -openshift_images,java,576,584,,,,,,,https://quay.io/repository/tamr/java,Lang -openshift_images,perl,576,585,,,,,,,https://quay.io/repository/biocontainers/perl,Lang -openshift_images,php,576,586,,,,,,,https://quay.io/repository/kissj/php,Lang -openshift_images,python,576,587,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang -openshift_images,ruby,576,588,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang -openshift_images,instana,576,,,,,,,611,https://quay.io/repository/yaoyao/instana,Runtime -openshift_images,credstash,576,,,612,,,,,https://quay.io/repository/safesoftware/credstash,App -openshift_images,snyk,576,,,613,,,,,https://quay.io/repository/exd_infra_plts_cip/snyk,App -openshift_images,akka,576,,,614,,,,,https://quay.io/repository/j0zi/akka,App -openshift_images,varnish,576,,,,615,,,,https://quay.io/repository/api-platform/varnish,App_Server -openshift_images,datadog,576,,,,,,,616,https://quay.io/repository/blondie/datadog,Runtime -openshift_images,hazelcast,576,,,,,,,618,https://quay.io/repository/hazelcast_cloud/hazelcast,Runtime -openshift_images,infinispan,576,,,619,,,,,https://quay.io/repository/operatorhubio/infinispan,App -openshift_images,nuxeo,576,,,,,,,620,https://quay.io/repository/swsmirror/nuxeo,Runtime -openshift_images,arangodb,576,,,621,,,,,https://quay.io/repository/swsmirror/arangodb,App -openshift_images,clickhouse,576,,,624,,,,,https://quay.io/repository/operatorhubio/clickhouse,App -openshift_images,minio,576,,,625,,,,,https://quay.io/repository/minio/minio,App -openshift_images,elasticsearch,576,,,626,,,,,https://quay.io/repository/fluentd_elasticsearch/elasticsearch,App -openshift_images,keycloak,576,,,628,,,,,https://quay.io/repository/keycloak/keycloak,App -openshift_images,grafana,576,,,629,,,,,https://quay.io/repository/tamr/grafana,App -openshift_images,mattermost,576,,,,,,,630,https://quay.io/repository/jostone/mattermost,Runtime -openshift_images,synapse,576,,,631,,,,,https://quay.io/repository/dockernohub/synapse,App -openshift_images,kubeflow,576,,,,,,,635,https://quay.io/repository/operatorhubio/kubeflow,Runtime -openshift_images,sematext,576,,,,,,,639,https://quay.io/repository/operatorhubio/sematext,Runtime -openshift_images,mariadb,576,,,642,,,,,https://quay.io/repository/startx/mariadb,App -openshift_images,istio,576,,,644,,,,,https://quay.io/repository/aspenmesh/istio,App -openshift_images,vault,576,,,645,,,,,https://quay.io/repository/cybozu/vault,App -openshift_images,etcd,576,,,647,,,,,https://quay.io/repository/coreos/etcd,App -openshift_images,traefik,576,,,,648,,,,https://quay.io/repository/widen/traefik,App_Server -openshift_images,yugabytedb,576,,,650,,,,,https://quay.io/repository/marco_antonioni/yugabytedb,App -openshift_images,cockroachdb,576,,,651,,,,,https://quay.io/repository/helmoperators/cockroachdb,App -openshift_images,jaeger,576,,,,,,,652,https://quay.io/repository/operatorhubio/jaeger,Runtime -openshift_images,powershell,576,660,,,,,,,https://quay.io/repository/powerdock/powershell,Lang -openshift_images,dds,576,663,,,,,,,https://quay.io/repository/havoc/dds,Lang -openshift_images,git,576,,,677,,,,,https://quay.io/repository/sisense/git,App -openshift_images,gitlab,576,,,678,,,,,https://quay.io/repository/sameersbn/gitlab,App -openshift_images,mysql,576,,,684,,,,,https://quay.io/repository/openshifttest/mysql,App -openshift_images,postgresql,576,,,686,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App From d6168afbbfe9615076693e652be460eeb5c508da Mon Sep 17 00:00:00 2001 From: lamwassi <85893516+lamwassi@users.noreply.github.com> Date: Wed, 5 Oct 2022 12:12:27 -0400 Subject: [PATCH 11/29] Delete docker_images.csv not needed Signed-off-by: Divya Sankar --- kg_utils/image_search_kg/docker_images.csv | 56 ---------------------- 1 file changed, 56 deletions(-) delete mode 100644 kg_utils/image_search_kg/docker_images.csv diff --git a/kg_utils/image_search_kg/docker_images.csv b/kg_utils/image_search_kg/docker_images.csv deleted file mode 100644 index eb5d3a0..0000000 --- a/kg_utils/image_search_kg/docker_images.csv +++ /dev/null @@ -1,56 +0,0 @@ -docker_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Docker_Url,Notes,CertOfImageAndPublisher -docker_images,adobecoldfusion/coldfusion,576,,,37,,,,,https://hub.docker.com/r/adobecoldfusion/coldfusion,,Verified Publisher -docker_images,ibmcom/db2,576,,,43,,,,,https://hub.docker.com/r/ibmcom/db2,,Verified Publisher -docker_images,drupal,576,,,45,,,,,https://hub.docker.com/_/drupal,,Official Image -docker_images,jenkins,576,,,90,,,,,https://hub.docker.com/_/jenkins,,Official Image -docker_images,memcached,576,,,98,,,,,https://hub.docker.com/_/memcached,,Official Image -docker_images,bitnami/mongodb,576,,,116,,,,,https://hub.docker.com/r/bitnami/mongodb,,Verified Publisher -docker_images,mysql,576,,,122,,,,,https://hub.docker.com/_/mysql,,Official Image -docker_images,neo4j,576,,,123,,,,,https://hub.docker.com/_/neo4j,,Official Image -docker_images,bitnami/openldap,576,,,126,,,,,https://hub.docker.com/r/bitnami/openldap,,Verified Publisher -docker_images,bitnami/postgresql,576,,,157,,,,,https://hub.docker.com/r/bitnami/postgresql,,Verified Publisher -docker_images,rabbitmq,576,,,165,,,,,https://hub.docker.com/_/rabbitmq,,Official Image -docker_images,redis,576,,,168,,,,,https://hub.docker.com/_/redis,,Official Image -docker_images,sentry,576,,,180,,,,,https://hub.docker.com/_/sentry,,Official Image -docker_images,sonarqube,576,,,186,,,,,https://hub.docker.com/_/sonarqube,,Official Image -docker_images,wordpress,576,,,245,,,,,https://hub.docker.com/_/wordpress,,Official Image -docker_images,ibmcom/zeromq,576,,,248,,,,,https://hub.docker.com/r/ibmcom/zeromq,,Verified Publisher -docker_images,glassfish,576,,,,263,,,,https://hub.docker.com/_/glassfish,,Official Image -docker_images,haproxy,576,,,,264,,,,https://hub.docker.com/_/haproxy,,Official Image -docker_images,nginx,576,,,,274,,,,https://hub.docker.com/_/nginx,,Official Image -docker_images,bitnami/spark,576,,,,280,,,,https://hub.docker.com/r/bitnami/spark,,Verified Publisher -docker_images,groovy,576,325,,,,,,,https://hub.docker.com/_/groovy,,Official Image -docker_images,swift,576,364,,,,,,,https://hub.docker.com/_/swift,,Official Image -docker_images,ibmcom/react,576,,413,,,,,,https://hub.docker.com/r/ibmcom/react,,Verified Publisher -docker_images,circleci/android,418,,,,,,,,https://hub.docker.com/r/circleci/android,,Verified Publisher -docker_images,dart,421,,,,,,,,https://hub.docker.com/_/dart,,Official Image -docker_images,centos,427,,,,,,,,https://hub.docker.com/_/centos,,Official Image -docker_images,debian,429,,,,,,,,https://hub.docker.com/_/debian,,Official Image -docker_images,opensuse,431,,,,,,,,https://hub.docker.com/_/opensuse,,Official Image -docker_images,ubuntu,436,,,,,,,,https://hub.docker.com/_/ubuntu,,Official Image -docker_images,fedora,453,,,,,,,,https://hub.docker.com/_/fedora,,Official Image -docker_images,bitnami/wildfly,576,,,,,,493,,https://hub.docker.com/r/bitnami/wildfly,,Verified Publisher -docker_images,docker,576,,,,,,,503,https://hub.docker.com/_/docker,,Official Image -docker_images,ibmcom/json,576,,,,,,,,https://hub.docker.com/r/ibmcom/json,,Verified Publisher -docker_images,java,576,584,,,,,,,https://hub.docker.com/_/java,,Official Image -docker_images,perl,576,585,,,,,,,https://hub.docker.com/_/perl,,Official Image -docker_images,php,576,586,,,,,,,https://hub.docker.com/_/php,,Official Image -docker_images,python,576,587,,,,,,,https://hub.docker.com/_/python,,Official Image -docker_images,ruby,576,588,,,,,,,https://hub.docker.com/_/ruby,,Official Image -docker_images,snyk/snyk,576,,,613,,,,,https://hub.docker.com/r/snyk/snyk,,Verified Publisher -docker_images,varnish,576,,,,615,,,,https://hub.docker.com/_/varnish,,Official Image -docker_images,kasmweb/api,576,,,,,,,,https://hub.docker.com/r/kasmweb/api,,Verified Publisher -docker_images,nuxeo,576,,,,,,,620,https://hub.docker.com/_/nuxeo,,Official Image -docker_images,arangodb,576,,,621,,,,,https://hub.docker.com/_/arangodb,,Official Image -docker_images,bitnami/minio,576,,,625,,,,,https://hub.docker.com/r/bitnami/minio,,Verified Publisher -docker_images,elasticsearch,576,,,626,,,,,https://hub.docker.com/_/elasticsearch,,Official Image -docker_images,bitnami/keycloak,576,,,628,,,,,https://hub.docker.com/r/bitnami/keycloak,,Verified Publisher -docker_images,grafana/grafana,576,,,629,,,,,https://hub.docker.com/r/grafana/grafana,,Verified Publisher -docker_images,mariadb,576,,,642,,,,,https://hub.docker.com/_/mariadb,,Official Image -docker_images,vault,576,,,645,,,,,https://hub.docker.com/_/vault,,Official Image -docker_images,bitnami/etcd,576,,,647,,,,,https://hub.docker.com/r/bitnami/etcd,,Verified Publisher -docker_images,traefik,576,,,,648,,,,https://hub.docker.com/_/traefik,,Official Image -docker_images,bitnami/git,576,,,677,,,,,https://hub.docker.com/r/bitnami/git,,Verified Publisher -docker_images,mysql,576,,,684,,,,,https://hub.docker.com/_/mysql,,Official Image -docker_images,bitnami/postgresql,576,,,686,,,,,https://hub.docker.com/r/bitnami/postgresql,,Verified Publisher -docker_images,ibmcom/isam,576,,,693,,,,,https://hub.docker.com/r/ibmcom/isam,,Verified Publisher From 328b47a7d1cbcb79319173a5937275504e9c80ae Mon Sep 17 00:00:00 2001 From: lamwassi <85893516+lamwassi@users.noreply.github.com> Date: Wed, 5 Oct 2022 12:13:27 -0400 Subject: [PATCH 12/29] Delete dockerhub_api.py Signed-off-by: Divya Sankar --- kg_utils/search_utils/dockerhub_api.py | 917 ------------------------- 1 file changed, 917 deletions(-) delete mode 100644 kg_utils/search_utils/dockerhub_api.py diff --git a/kg_utils/search_utils/dockerhub_api.py b/kg_utils/search_utils/dockerhub_api.py deleted file mode 100644 index 98095ff..0000000 --- a/kg_utils/search_utils/dockerhub_api.py +++ /dev/null @@ -1,917 +0,0 @@ -# MIT License -# -# Copyright (c) 2017 Daniel Sullivan (mumblepins) -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in all -# copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. - - -from __future__ import print_function - -import json - -import requests -from furl import furl -from requests.auth import AuthBase - - -class TimeoutError(Exception): - pass - - -class ConnectionError(Exception): - pass - - -class AuthenticationError(Exception): - pass - - -class DockerHubAuth(AuthBase): - def __init__(self, requests_post, api_url, username=None, password=None, token=None, delete_creds=True): - """ - - Args: - requests_post (:py:meth:`DockerHub._do_requests_post`): - api_url (str): - username (str, optional): - password (str, optional): - token (str, optional): - delete_creds (bool, optional): - """ - - self._api_url = api_url - self._requests_post = requests_post - if token is not None: - self._token = token - return - if username is not None and password is not None: - self._username = username - self._password = password - self._get_authorization_token() - if delete_creds: - self._username = None - self._password = None - return - raise ValueError("Need either username and password or token for authentication") - - @property - def token(self): - return self._token - - def __eq__(self, other): - return self._token == getattr(other, '_token', None) - - def __ne__(self, other): - return not self == other - - def __call__(self, r): - r.headers['Authorization'] = "JWT {}".format(self._token) - return r - - def _get_authorization_token(self): - """Actually gets the authentication token - - Raises: - AuthenticationError: didn't login right - - """ - r = self._requests_post( - self._api_url, - { - "username": self._username, - "password": self._password - }) - if not r.ok: - raise AuthenticationError("Error Status {}:\n{}".format(r.status_code, json.dumps(r.json(), indent=2))) - self._token = r.json()['token'] - - -def parse_url(url): - """Parses a url into the base url and the query params - - Args: - url (str): url with query string, or not - - Returns: - (str, `dict` of `lists`): url, query (dict of values) - """ - f = furl(url) - query = f.args - query = {a[0]: a[1] for a in query.listitems()} - f.remove(query=True).path.normalize() - url = f.url - - return url, query - - -def user_cleaner(user): - """Converts none or _ to library, makes username lowercase - - Args: - user (str): - - Returns: - str: cleaned username - - """ - if user == "_" or user == "": - return "library" - try: - return user.lower() - except AttributeError: - return user - - -class DockerHub(object): - """Actual class for making API calls - - Args: - username (str, optional): - password(str, optional): - token(str, optional): - url(str, optional): Url of api (https://hub.docker.com) - version(str, optional): Api version (v2) - delete_creds (bool, optional): Whether to delete password after logging in (default True) - return_lists (bool, optional): Whether to return a `generator` from calls that return multiple values - (False, default), or to return a simple `list` (True) - """ - - # - def __init__(self, username=None, password=None, token=None, url=None, version='v2', delete_creds=True, - return_lists=False): - - #https://registry.hub.docker.com/ - # 'https://hub.docker.com' - - self._version = version - self._url = '{0}/{1}'.format(url or'https://registry.hub.docker.com' , self.version) - self._session = requests.Session() - self._auth = None - self._token = None - self._username = None - self._password = None - self._return_lists = return_lists - self.login(username, password, token, delete_creds) - - def __enter__(self): - return self - - def __exit__(self, exc_type, exc_val, exc_tb): - self.close() - - def close(self): - self._session.close() - - # - - # - @property - def return_lists(self): - """Whether functions should return generators (False) or lists (True) - - Returns: - bool - - """ - return self._return_lists - - @return_lists.setter - def return_lists(self, value): - self._return_lists = value - - @property - def username(self): - if self._username is None and self.logged_in: - self._get_username() - return self._username - - @property - def logged_in(self): - return self.token is not None - - @property - def version(self): - return self._version - - @property - def url(self): - return self._url - - @property - def token(self): - return self._token - - @token.setter - def token(self, value): - self._token = value - self._get_username() - - # - - # - - def _do_request(self, method, address, **kwargs): - try: - if 'timeout' not in kwargs: - kwargs['timeout'] = (5, 15) - - if 'auth' not in kwargs: - kwargs['auth'] = self._auth - - if 'headers' not in kwargs: - kwargs['headers'] = {"Content-Type": "application/json"} - elif 'Content-Type' not in kwargs['headers']: - kwargs['headers']['Content-Type'] = "application/json" - - url, query = parse_url(address) - if query: - address = url - if 'params' in kwargs: - query.update(kwargs['params']) - kwargs['params'] = query - resp = self._session.request(method, address, **kwargs) - - except requests.exceptions.Timeout as e: - raise TimeoutError('Connection Timeout. Download failed: {0}'.format(e)) - except requests.exceptions.RequestException as e: - raise ConnectionError('Connection Error. Download failed: {0}'.format(e)) - else: - try: - resp.raise_for_status() - except: - print(resp.json()) - print(resp.headers) - raise - return resp - - def _do_requests_get(self, address, **kwargs): - if 'params' not in kwargs: - kwargs['params'] = {} - # if 'perPage' not in kwargs['params']: - # #kwargs['params']['perPage'] = 100 - # pass - return self._do_request('GET', address, **kwargs) - - def _do_requests_post(self, address, json_data=None, **kwargs): - return self._do_request('POST', address, json=json_data, **kwargs) - - def _do_requests_put(self, address, json_data=None, **kwargs): - return self._do_request('PUT', address, json=json_data, **kwargs) - - def _do_requests_patch(self, address, json_data, **kwargs): - return self._do_request('PATCH', address, json=json_data, **kwargs) - - def _do_requests_delete(self, address, **kwargs): - return self._do_request('DELETE', address, **kwargs) - - def _iter_requests_get(self, address, **kwargs): - if self.return_lists: - return list(self._iter_requests_get_generator(address, **kwargs)) - return self._iter_requests_get_generator(address, **kwargs) - - def _iter_requests_get_generator(self, address, **kwargs): - _next = None - resp = self._do_requests_get(address, **kwargs) - - while True: - if _next: - resp = self._do_requests_get(_next) - # print _next - - resp = resp.json() - - for i in resp['results']: - yield i - - if resp['next']: - _next = resp['next'] - continue - return - - def _api_url(self, path): - return '{0}/{1}/'.format(self.url, path) - - def _get_username(self): - if self.logged_in: - self._username = user_cleaner(self.logged_in_user()['username']) - else: - self._username = None - - # - - def login(self, username=None, password=None, token=None, delete_creds=True): - """Logs into Docker hub and gets a token - - Either username and password or token should be specified - - Args: - username (str, optional): - password (str, optional): - token (str, optional): - delete_creds (bool, optional): - - Returns: - - """ - - self._username = user_cleaner(username) - self._password = password - self._token = token - if token is not None: - # login with token - self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), token=token) - elif username is not None and password is not None: - # login with user/pass - self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), username=username, - password=password) - else: - # don't login - return - - if delete_creds: - self._password = None - - self._token = self._auth.token - - def comments(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{0}/{1}/comments'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def repository(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{0}/{1}'.format(user, repository)) - return self._do_requests_get(url, **kwargs).json() - - def repositories(self, user, **kwargs): - """ - - Args: - user: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{0}'.format(user)) - return self._iter_requests_get(url, **kwargs) - - def repositories_starred(self, user, **kwargs): - """ - - Args: - user: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('users/{0}/repositories/starred'.format(user)) - return self._iter_requests_get(url, **kwargs) - - def tags(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{0}/{1}/tags'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def user(self, user, **kwargs): - """ - - Args: - user: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('users/{0}'.format(user)) - return self._do_requests_get(url, **kwargs).json() - - # ------ Logged In Section - - def logged_in_user(self): - """ - - Returns: - - """ - return self._do_requests_get(self._api_url('user')).json() - - def add_collaborator(self, user, repository, collaborator): - """ - - Args: - user: - repository: - collaborator: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) - return self._do_requests_post(url, { - "user": collaborator.lower() - }).json() - - def build_details(self, user, repository, code): - """ - - Args: - user: - repository: - code: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/buildhistory/{}'.format(user, repository, code)) - return self._do_requests_get(url).json() - - def build_history(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/buildhistory'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def build_links(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/links'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def build_settings(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) - return self._do_requests_get(url).json() - - def build_trigger(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/buildtrigger'.format(user, repository)) - return self._do_requests_get(url).json() - - def build_trigger_history(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/buildtrigger/history'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def collaborators(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def create_build_link(self, user, repository, to_repo): - """ - - Args: - user: - repository: - to_repo: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/links'.format(user, repository)) - return self._do_requests_post(url, { - "to_repo": to_repo - }).json() - - def create_build_tag(self, user, repository, details): - """ - - Args: - user: - repository: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild/tags'.format(user, repository)) - return self._do_requests_post(url, { - 'isNew': True, - 'namespace': user, - 'repoName': repository, - 'name': details['name'] if 'name' in details else 'latest', - 'dockerfile_location': details['dockerfile_location'] if 'dockerfile_location' in details else '/', - 'source_type': details['source_type'] if 'source_type' in details else 'Branch', - 'source_name': details['source_name'] if 'source_name' in details else 'master' - }).json() - - def create_repository(self, user, repository, details): - """ - - Args: - user: - repository: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories') - data = { - 'name': repository, - 'namespace': user, - } - details.update(data) - return self._do_requests_post(url, details).json() - - def create_automated_build(self, user, repository, details): - """ - - Args: - user: - repository: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) - data = { - 'name': repository, - 'namespace': user, - 'active': True, - 'dockerhub_repo_name': "{}/{}".format(user, repository) - } - - details.update(data) - return self._do_requests_post(url, details).json() - - def create_webhook(self, user, repository, webhook_name): - """ - - Args: - user: - repository: - webhook_name: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) - data = { - 'name': webhook_name - } - return self._do_requests_post(url, data).json() - - def create_webhook_hook(self, user, repository, webhook_id, webhook_url): - """ - - Args: - user: - repository: - webhook_id: - webhook_url: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/webhooks/{}/hooks'.format(user, repository, webhook_id)) - data = { - 'hook_url': webhook_url - } - return self._do_requests_post(url, data).json() - - def delete_build_link(self, user, repository, build_id): - """ - - Args: - user: - repository: - build_id: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/links/{}'.format(user, repository, build_id)) - resp = self._do_requests_delete(url) - # print_response(resp) - return resp.status_code == 204 - - def delete_build_tag(self, user, repository, tag_id): - """ - - Args: - user: - repository: - tag_id: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, tag_id)) - resp = self._do_requests_delete(url) - return resp.status_code == 204 - - def delete_tag(self, user, repository, tag): - """ - - Args: - user: - repository: - tag: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/tags/{}'.format(user, repository, tag)) - resp = self._do_requests_delete(url) - return resp.status_code == 204 - - def delete_collaborator(self, user, repository, collaborator): - """ - - Args: - user: - repository: - collaborator: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/collaborators/{}'.format(user, repository, collaborator.lower())) - resp = self._do_requests_delete(url) - return resp.status_code in [200, 201, 202, 203, 204] - - def delete_repository(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}'.format(user, repository)) - resp = self._do_requests_delete(url) - # print_response(resp) - return resp.status_code in [200, 201, 202, 203, 204] - - def delete_webhook(self, user, repository, webhook_id): - """ - - Args: - user: - repository: - webhook_id: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/webhooks/{}'.format(user, repository, webhook_id)) - resp = self._do_requests_delete(url) - # print_response(resp) - return resp.status_code in [200, 201, 202, 203, 204] - - def registry_settings(self): - """ - - Returns: - - """ - url = self._api_url('users/{}/registry-settings'.format(self.username)) - return self._do_requests_get(url).json() - - def set_build_tag(self, user, repository, build_id, details): - """ - - Args: - user: - repository: - build_id: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, build_id)) - data = { - 'id': build_id, - 'name': 'latest', - 'dockerfile_location': '/', - 'source_type': 'Branch', - 'source_name': 'master' - } - data.update(details) - return self._do_requests_put(url, details).json() - - def set_repository_description(self, user, repository, descriptions): - """ - - Args: - user: - repository: - descriptions: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}'.format(user, repository)) - data = {} - if 'full' in descriptions: - data['full_description'] = descriptions['full'] - if 'short' in descriptions: - data['description'] = descriptions['short'] - if not data: - raise ValueError("Need either 'short' or 'full' description specified") - - return self._do_requests_patch(url, data).json() - - def star_repository(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - boolean: returns true if successful - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) - resp = self._do_requests_post(url, {}) - # print_response(resp) - return resp.status_code in [200, 201, 202, 203, 204] - - def unstar_repository(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - boolean: returns true if successful - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) - resp = self._do_requests_delete(url) - # print_response(resp) - return resp.status_code in [200, 201, 202, 203, 204] - - def trigger_build(self, user, repository, details): - """ - - Args: - user: - repository: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild/trigger-build'.format(user, repository)) - data = { - 'dockerfile_location': '/', - 'source_type': 'Branch', - 'source_name': 'master' - } - data.update(details) - return self._do_requests_post(url, data).json() - - def webhooks(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) \ No newline at end of file From c565f1c65dcdd9ffa2ae625ad374e972d4aefc90 Mon Sep 17 00:00:00 2001 From: lamwassi <85893516+lamwassi@users.noreply.github.com> Date: Wed, 5 Oct 2022 12:13:41 -0400 Subject: [PATCH 13/29] Delete load_entities.py Signed-off-by: Divya Sankar --- kg_utils/search_utils/load_entities.py | 152 ------------------------- 1 file changed, 152 deletions(-) delete mode 100644 kg_utils/search_utils/load_entities.py diff --git a/kg_utils/search_utils/load_entities.py b/kg_utils/search_utils/load_entities.py deleted file mode 100644 index b37f17d..0000000 --- a/kg_utils/search_utils/load_entities.py +++ /dev/null @@ -1,152 +0,0 @@ -################################################################################ -# Copyright IBM Corporation 2021, 2022 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -################################################################################ - - -from curses import resetty -from hashlib import new -from openpyxl import load_workbook -from sqlite3 import Error -import sqlite3 - -import configparser -import os -import re -import logging - - -#config file -config = configparser.ConfigParser() -config_data = os.path.join("config/kg.ini") -config.read([config_data]) - - - -def create_db_connection(database_path): - """ - Create connection to database - - Args: - - database_path (str): path to the database - - Returns: - - _type_: sqlite3 connection - - """ - - connection = None - - try: - connection = sqlite3.connect(database_path) - except Error as e: - logging.error(f'{e}: Issue connecting to db. Please check whether the .db file exists.') - - - return connection - - -def filter_entity(entity:str)-> str: - """ - Remove pipes(|) or pipe stars (|*) or entity_prefix pipe (i.e Linux|ubuntu) from entity names - - Args: - entity (str): entity to filter - - Returns: - str: filtered entity - """ - match_pipe_star = re.findall(r'\|\*', entity) - match_less_greater_sign = re.findall(r'\<\>' , entity) - match_abbreviation = re.findall(r'[\)]' , entity) - match_pipe_only = re.findall(r'\|', entity) - - if match_pipe_star : - return entity.split('|*')[0].strip() - - elif match_less_greater_sign: - - if "|" in entity.split("<>")[1]: - return entity.split("<>")[1].split("|")[-1].strip() - return(entity.split("<>")[1].strip()) - - elif match_abbreviation: - if entity.startswith("("): - return entity.strip() - elif ('|') in entity.split("(")[0]: - - n_ent = entity.split("(")[0].split('|')[-1] - return n_ent.strip() - else: - return entity.split("(")[0].strip() - elif match_pipe_only and '|*' not in entity: - - num = entity.count("|") - ent = '' - if num > 1: - ent = entity.split("|")[-1] - else: - ent = entity.split('|')[1] - return ent.strip() - else: - return entity.strip() - -def from_database( entity_names = None, table_name="entities"): - - """ - Load entity names from the main database. - - Returns: - list: A list containing tuple( entity_name , entity_type_id , entity_name_id) - """ - if entity_names == None : - print("No entities selected") - exit() - - db_path = config["database"]["database_path"] - - connection = create_db_connection(db_path) - print("Connection", connection) - - entities = [] - suggest_entities = [] - cursor = connection.cursor() - - cursor.execute("SELECT * FROM {} ".format(table_name)) - for entity in cursor.fetchall(): - - print(entity) - if entity_names == "all": - entity_name = filter_entity(entity[1]) - entities.append( (entity_name.strip(),entity[2] , entity[0]) ) - - else: - - for name in entity_names: - - if entity[1].lower() == name.lower(): - - entity_name = filter_entity(entity[1]) - - entities.append( (entity_name.strip(),entity[2] , entity[0]) ) - - elif name.lower() in entity[1].lower(): - print(entity[1]) - suggest_entities.append(entity[1]) - - else: continue - - return entities , suggest_entities \ No newline at end of file From 879ed2738eb3d24f6b06a4f054d800bb885135ec Mon Sep 17 00:00:00 2001 From: lamwassi <85893516+lamwassi@users.noreply.github.com> Date: Wed, 5 Oct 2022 12:13:53 -0400 Subject: [PATCH 14/29] Delete save_to_csv.py Signed-off-by: Divya Sankar --- kg_utils/search_utils/save_to_csv.py | 311 --------------------------- 1 file changed, 311 deletions(-) delete mode 100644 kg_utils/search_utils/save_to_csv.py diff --git a/kg_utils/search_utils/save_to_csv.py b/kg_utils/search_utils/save_to_csv.py deleted file mode 100644 index 6601484..0000000 --- a/kg_utils/search_utils/save_to_csv.py +++ /dev/null @@ -1,311 +0,0 @@ - -################################################################################ -# Copyright IBM Corporation 2021, 2022 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -################################################################################ - - -import json -import csv - - - -def search_results(): - """ - load results - - Returns: - None: Json file containing search results - """ - - with open("kg_utils/image_search_kg/images.json", "r" , encoding="utf-8") as images: - images_ = json.load(images) - - return images_ - - -def entity_type_mapper( entity_type: int , entity_id : str)-> dict: - """ - Maps entity_types to an integer ranging from 1 to 12 - - Args: - entity_type (int): entity_type id - entity_id (int): entity index from the entity_name table from the database - - Returns: - dict: a mapping of entity_type_name to a unique id - - """ - type_mapper = {"technology": 1, "app": 2 , "vm": 3 , "hw" : 4 , "plugin": 5 , "OS" : 6 , "runlib": 7, \ - "app_server" : 8 , "lang": 9 , "runtime": 10 , "storage": 11 , "lib": 12 - - } - - for ky , val in type_mapper.items(): - if val == entity_type: - return {ky:entity_id} - - -def write_to_csv(data:dict, file_name:str): - """ - Write results to csv file - - Args: - data (list): A list containing data to save. - file_name (str): Name of the file to to save the data as csv. - - """ - - with open("kg_utils/image_search_kg/{}.csv".format(file_name) , "w" , encoding="utf-8") as op_csv: - - if data == []: - print("No {} found".format(file_name)) - return - - columns = list(data[0].keys()) - - writer = csv.DictWriter(op_csv, fieldnames=columns) - writer.writeheader() - - if file_name == "operator_images": - - for row in data: - - writer.writerow({"operator_images":row["operator_images"],'container_name': row["container_name"], 'OS': row["OS"] \ - , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ - ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ - "runlib": row["runlib"] , "runtime": row["runtime"] , \ - "Operator_Correspondent_Image_Url": row["Operator_Correspondent_Image_Url"] ,\ - "Operator_Repository" : row["Operator_Repository"] - }) - - - if file_name == "docker_images": - for row in data: - - writer.writerow({"docker_images":row["docker_images"],'container_name': row["container_name"], 'OS': row["OS"] \ - , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ - ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ - "runlib": row["runlib"] , "runtime": row["runtime"] , \ - "Docker_Url": row["Docker_Url"] ,\ - "Notes": row["Notes"], \ - "CertOfImageAndPublisher": row["CertOfImageAndPublisher"] - - }) - - if file_name =="openshift_images": - - for row in data: - - writer.writerow({"openshift_images":row["openshift_images"],'container_name': row["container_name"], 'OS': row["OS"] \ - , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ - ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ - "runlib": row["runlib"] , "runtime": row["runtime"] , \ - "Openshift_Correspondent_Image_Url": row["Openshift_Correspondent_Image_Url"] ,\ - "DockerImageType": row["DockerImageType"] - - }) - - -def get_exact_images(all_images: dict , catalogue ="operators", index = 2): - """ - Gather exact image names found during the search procedure. - - Args: - all_images (dict): A large dictionary containing all search results - catalogue (str, optional): Catalog's name("operator" , "dockerhub_exact_images" ,or "quay_exact_images" ) . Defaults to "operators". - index (int, optional): _description_. Defaults to 2. - - Returns: - list: A list containing exact image names. - """ - - if catalogue == "dockerhub_exact_images": index = 0 - if catalogue == "quay_exact_images" : index = 1 - - images = [] - - for image in all_images: - image_name = list(image.keys())[0] - - if image[image_name][index][catalogue] != []: - op_data = {image_name: [], "type": image["entity_type"] , "entity_id" : image["entity_id"]} - - op_data[image_name] = image[image_name][index][catalogue] - images.append(op_data) - - return images - - -def csv_columns( table_name:str ): - """ - Build the columns headers for the csv files. - - Args: - table_name (str, optional):The name of the table from the database. - - Returns: - dict: csv header. - """ - - columns = { table_name: "", "container_name":"", "OS": 576, "lang" : None, "lib": None, "app": None, "app_server": None,"plugin": None,"runlib": None,"runtime": None } - - docker_col_extension = {"Docker_Url":"", "Notes": "", "CertOfImageAndPublisher": "" } - - openshift_col_extension = {"Openshift_Correspondent_Image_Url":"", "DockerImageType": ""} - - operator_col_extension ={"Operator_Correspondent_Image_Url":[],"Operator_Repository": ""} - - if table_name == "openshift_images": - columns.update(openshift_col_extension) - - elif table_name == "docker_images": - columns.update(docker_col_extension) - elif table_name == "operator_images": - columns.update(operator_col_extension) - else: - print("Wrong table's name. Enter one of the following table's names: docker_images, operator_images,operator_images ") - - return columns - - -def operator_images_urls(image_links: list ): - """ - Add double quote around urls - - Args: - images_links (list): list of urls - """ - urls = [] - if image_links == []: - return None - else: - for dt in image_links : - links_ = "\'\'" + dt + "\'\'" - urls.append(links_) - return urls - -def operator_images(): - """ - Saves operator images to a operator_images.csv - - """ - row_data = [] - cols = csv_columns(table_name="operator_images") - images_ = search_results() - - op_images = get_exact_images(images_ , catalogue="operators") - - if op_images == None: - return - - for op in op_images: - - op_name = list(op.keys())[0] - - for operator in op[op_name]: - - op_data = cols.copy() - op_data["operator_images"] = "operator_images" - op_data["container_name"] = operator["display_name"] - - - img_data_type = entity_type_mapper(op["type"] , str(op["entity_id"])) - - if list(img_data_type.keys())[0] in list(op_data.keys()): - op_data.update(img_data_type) - row_data.append(op_data) - - op_data["Operator_Correspondent_Image_Url"]= operator_images_urls(operator["container_images"]) - op_data["Operator_Repository"] = operator["git_repos"] - - write_to_csv(row_data ,file_name="operator_images") - - -def docker_images() -> None: - """ - Saves docker images to docker_images.csv - """ - - row_data = [] - cols = csv_columns(table_name="docker_images") - images_ = search_results() - docker_images = get_exact_images(images_, catalogue="dockerhub_exact_images") - - if docker_images == None: - return - - - for exact_images in docker_images: - - if len(exact_images) != 0: - - for ky, val in exact_images.items(): - - if ky not in ["type","entity_id"]: - - img_data = cols.copy() - img_data["docker_images"] = "docker_images" - img_data["container_name"] = val[0]["name"] - img_data["Docker_Url"] = val[0]["Docker_Url"] - img_data["Notes"] = "" - - if val[0]["Official image"]: - img_data["CertOfImageAndPublisher"] = "Official Image" - if val[0]["Verified Publisher"]: - img_data["CertOfImageAndPublisher"] = "Verified Publisher" - - - img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) - img_data.update(img_data_type) - row_data.append(img_data) - - - write_to_csv(row_data , "docker_images") - - -def openshift_images(): - """ - Saves Openshift images to openshift_images.csv. - - """ - - row_data = [] - cols = csv_columns(table_name="openshift_images") - images_ = search_results() - quay_images = get_exact_images(images_, catalogue="quay_exact_images") - - if quay_images == None: - return - - for exact_images in quay_images: - - if len(exact_images) != 0: - for ky, val in exact_images.items(): - - if ky not in ["type","entity_id"]: - img_data = cols.copy() - img_data["openshift_images"] = "openshift_images" - img_data["container_name"] = val[0]["name"] - img_data["Openshift_Correspondent_Image_Url"] = val[0]["url"] - - img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) - if list(img_data_type.keys())[0].title() =='Os': img_data["DockerImageType"] ='OS' - else: img_data["DockerImageType"] = list(img_data_type.keys())[0].title() - if list(img_data_type.keys())[0] in list(img_data.keys()): - img_data.update(img_data_type) - row_data.append(img_data) - - write_to_csv(row_data , "openshift_images") - From adfd1d88dca4eef534856f3685e666cdfec8abda Mon Sep 17 00:00:00 2001 From: lamwassi <85893516+lamwassi@users.noreply.github.com> Date: Wed, 5 Oct 2022 12:14:08 -0400 Subject: [PATCH 15/29] Delete utils.py Signed-off-by: Divya Sankar --- kg_utils/search_utils/utils.py | 166 --------------------------------- 1 file changed, 166 deletions(-) delete mode 100644 kg_utils/search_utils/utils.py diff --git a/kg_utils/search_utils/utils.py b/kg_utils/search_utils/utils.py deleted file mode 100644 index 222a9db..0000000 --- a/kg_utils/search_utils/utils.py +++ /dev/null @@ -1,166 +0,0 @@ -import logging -import re -import json -import requests -from sqlite3 import Error -import sqlite3 -import docker -import os - -# NLP -import pandas as pd -from requests import session -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.metrics.pairwise import cosine_similarity - - - -def clean_string_value(value): - - """ - arguments: - value : str - Return: - str : formated str - """ - if value: - value = str(value).strip() - value = value.replace(u'\u00a0', ' ') - value = re.sub(r'[^\x00-\x7F]+', ' ', ' ' + str(value) + ' ').strip() - else: - value = '' - - return value - - -################################################################################ - ############ DOCKERHUB UTILS ############## -################################################################################# - -def is_exact_match(image_name: str, entity_name: str) -> bool: - """ - get exact match() - - Args: - image_name (str): image_name from dockerhub - entity_name (str): entity from database - - Returns: - bool: True if image_name==entity_name, otherwise False - """ - - - name = image_name - - if not isinstance(image_name, str) or not isinstance(entity_name, str): - logging.error("you can only compare two string") - exit() - - if entity_name.lower() == name.lower(): - return True - else: - return False - - -def line_similarity(linelist: list, query: str): - """ - Take a list of lines, vectorize it and compare the similarity between the query and lines - - - Args: - linelist (list): List of all lines - query (str): Search query - - Raises: - ValueError: _description_ - - Returns: - (list): _description_ - (int): - """ - lines = {} - - for id, line in enumerate(linelist): - parse_line = re.sub("[^A-Za-z0-9]+", " ", str(line)).strip() - if len(parse_line) > 0: - lines[str(id)] = parse_line - - line_vectorizer = TfidfVectorizer() - vectorized_line = line_vectorizer.fit_transform(linelist) - - formatted_query = re.sub("[^A-Za-z0-9]+", " ", str(query)) - - query = formatted_query.lower().strip() - if not query: - raise ValueError("Formatted query string cannot be empty") - - vectorized_query = line_vectorizer.transform([query]) - line_score = cosine_similarity(vectorized_query, vectorized_line) - - line_score = line_score[0] - topscore_lines = line_score.argsort()[-5:][::-1] - - return topscore_lines, line_score - - -def format_images(images:list)-> list: - """ - Create the return structure for all images - - Args: - images (list): All images - - Returns: - (list): Structure - """ - - - images_list = [] - if images == None : return images_list - - for im in images: - - img_dict = {} - img_dict ={"name": " " , 'Official image': False , 'Verified Publisher': False, "Description": '' ,'star_count':'',"Docker_Url": '', 'OS':[] } - - img_dict["name"] = im["name"] - - if "/" in im['name']: img_dict['Verified Publisher'] = True - - else: img_dict['Official image'] = im["is_official"] - img_dict['star_count'] = im['star_count'] - img_dict["Docker_Url"] = docker_href(im['name']) - img_dict['OS']= [] - images_list.append(img_dict) - - return images_list - - -def docker_href( image_name: str) -> str: - """ - image_name url - - Args: - image_name (str): Image entity name - - Returns: - str: href of a DockerHub image. - """ - - href = "" - - if "/" in image_name: - href = "https://hub.docker.com/r/" + image_name - - else: - href = "https://hub.docker.com/_/" + image_name - - return href - - -################################################################################ - ############ QUAY UTILS ################ -################################################################################# - - - \ No newline at end of file From 82dfa9f16998d8439389d0e1042bf5f4092eebe6 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:18:27 -0400 Subject: [PATCH 16/29] dockerhub image search helper script Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_utils/dockerhub_api.py | 917 +++++++++++++++++++++++++ 1 file changed, 917 insertions(+) create mode 100644 kg_utils/search_utils/dockerhub_api.py diff --git a/kg_utils/search_utils/dockerhub_api.py b/kg_utils/search_utils/dockerhub_api.py new file mode 100644 index 0000000..98095ff --- /dev/null +++ b/kg_utils/search_utils/dockerhub_api.py @@ -0,0 +1,917 @@ +# MIT License +# +# Copyright (c) 2017 Daniel Sullivan (mumblepins) +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + + +from __future__ import print_function + +import json + +import requests +from furl import furl +from requests.auth import AuthBase + + +class TimeoutError(Exception): + pass + + +class ConnectionError(Exception): + pass + + +class AuthenticationError(Exception): + pass + + +class DockerHubAuth(AuthBase): + def __init__(self, requests_post, api_url, username=None, password=None, token=None, delete_creds=True): + """ + + Args: + requests_post (:py:meth:`DockerHub._do_requests_post`): + api_url (str): + username (str, optional): + password (str, optional): + token (str, optional): + delete_creds (bool, optional): + """ + + self._api_url = api_url + self._requests_post = requests_post + if token is not None: + self._token = token + return + if username is not None and password is not None: + self._username = username + self._password = password + self._get_authorization_token() + if delete_creds: + self._username = None + self._password = None + return + raise ValueError("Need either username and password or token for authentication") + + @property + def token(self): + return self._token + + def __eq__(self, other): + return self._token == getattr(other, '_token', None) + + def __ne__(self, other): + return not self == other + + def __call__(self, r): + r.headers['Authorization'] = "JWT {}".format(self._token) + return r + + def _get_authorization_token(self): + """Actually gets the authentication token + + Raises: + AuthenticationError: didn't login right + + """ + r = self._requests_post( + self._api_url, + { + "username": self._username, + "password": self._password + }) + if not r.ok: + raise AuthenticationError("Error Status {}:\n{}".format(r.status_code, json.dumps(r.json(), indent=2))) + self._token = r.json()['token'] + + +def parse_url(url): + """Parses a url into the base url and the query params + + Args: + url (str): url with query string, or not + + Returns: + (str, `dict` of `lists`): url, query (dict of values) + """ + f = furl(url) + query = f.args + query = {a[0]: a[1] for a in query.listitems()} + f.remove(query=True).path.normalize() + url = f.url + + return url, query + + +def user_cleaner(user): + """Converts none or _ to library, makes username lowercase + + Args: + user (str): + + Returns: + str: cleaned username + + """ + if user == "_" or user == "": + return "library" + try: + return user.lower() + except AttributeError: + return user + + +class DockerHub(object): + """Actual class for making API calls + + Args: + username (str, optional): + password(str, optional): + token(str, optional): + url(str, optional): Url of api (https://hub.docker.com) + version(str, optional): Api version (v2) + delete_creds (bool, optional): Whether to delete password after logging in (default True) + return_lists (bool, optional): Whether to return a `generator` from calls that return multiple values + (False, default), or to return a simple `list` (True) + """ + + # + def __init__(self, username=None, password=None, token=None, url=None, version='v2', delete_creds=True, + return_lists=False): + + #https://registry.hub.docker.com/ + # 'https://hub.docker.com' + + self._version = version + self._url = '{0}/{1}'.format(url or'https://registry.hub.docker.com' , self.version) + self._session = requests.Session() + self._auth = None + self._token = None + self._username = None + self._password = None + self._return_lists = return_lists + self.login(username, password, token, delete_creds) + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + self.close() + + def close(self): + self._session.close() + + # + + # + @property + def return_lists(self): + """Whether functions should return generators (False) or lists (True) + + Returns: + bool + + """ + return self._return_lists + + @return_lists.setter + def return_lists(self, value): + self._return_lists = value + + @property + def username(self): + if self._username is None and self.logged_in: + self._get_username() + return self._username + + @property + def logged_in(self): + return self.token is not None + + @property + def version(self): + return self._version + + @property + def url(self): + return self._url + + @property + def token(self): + return self._token + + @token.setter + def token(self, value): + self._token = value + self._get_username() + + # + + # + + def _do_request(self, method, address, **kwargs): + try: + if 'timeout' not in kwargs: + kwargs['timeout'] = (5, 15) + + if 'auth' not in kwargs: + kwargs['auth'] = self._auth + + if 'headers' not in kwargs: + kwargs['headers'] = {"Content-Type": "application/json"} + elif 'Content-Type' not in kwargs['headers']: + kwargs['headers']['Content-Type'] = "application/json" + + url, query = parse_url(address) + if query: + address = url + if 'params' in kwargs: + query.update(kwargs['params']) + kwargs['params'] = query + resp = self._session.request(method, address, **kwargs) + + except requests.exceptions.Timeout as e: + raise TimeoutError('Connection Timeout. Download failed: {0}'.format(e)) + except requests.exceptions.RequestException as e: + raise ConnectionError('Connection Error. Download failed: {0}'.format(e)) + else: + try: + resp.raise_for_status() + except: + print(resp.json()) + print(resp.headers) + raise + return resp + + def _do_requests_get(self, address, **kwargs): + if 'params' not in kwargs: + kwargs['params'] = {} + # if 'perPage' not in kwargs['params']: + # #kwargs['params']['perPage'] = 100 + # pass + return self._do_request('GET', address, **kwargs) + + def _do_requests_post(self, address, json_data=None, **kwargs): + return self._do_request('POST', address, json=json_data, **kwargs) + + def _do_requests_put(self, address, json_data=None, **kwargs): + return self._do_request('PUT', address, json=json_data, **kwargs) + + def _do_requests_patch(self, address, json_data, **kwargs): + return self._do_request('PATCH', address, json=json_data, **kwargs) + + def _do_requests_delete(self, address, **kwargs): + return self._do_request('DELETE', address, **kwargs) + + def _iter_requests_get(self, address, **kwargs): + if self.return_lists: + return list(self._iter_requests_get_generator(address, **kwargs)) + return self._iter_requests_get_generator(address, **kwargs) + + def _iter_requests_get_generator(self, address, **kwargs): + _next = None + resp = self._do_requests_get(address, **kwargs) + + while True: + if _next: + resp = self._do_requests_get(_next) + # print _next + + resp = resp.json() + + for i in resp['results']: + yield i + + if resp['next']: + _next = resp['next'] + continue + return + + def _api_url(self, path): + return '{0}/{1}/'.format(self.url, path) + + def _get_username(self): + if self.logged_in: + self._username = user_cleaner(self.logged_in_user()['username']) + else: + self._username = None + + # + + def login(self, username=None, password=None, token=None, delete_creds=True): + """Logs into Docker hub and gets a token + + Either username and password or token should be specified + + Args: + username (str, optional): + password (str, optional): + token (str, optional): + delete_creds (bool, optional): + + Returns: + + """ + + self._username = user_cleaner(username) + self._password = password + self._token = token + if token is not None: + # login with token + self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), token=token) + elif username is not None and password is not None: + # login with user/pass + self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), username=username, + password=password) + else: + # don't login + return + + if delete_creds: + self._password = None + + self._token = self._auth.token + + def comments(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}/{1}/comments'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def repository(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}/{1}'.format(user, repository)) + return self._do_requests_get(url, **kwargs).json() + + def repositories(self, user, **kwargs): + """ + + Args: + user: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}'.format(user)) + return self._iter_requests_get(url, **kwargs) + + def repositories_starred(self, user, **kwargs): + """ + + Args: + user: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('users/{0}/repositories/starred'.format(user)) + return self._iter_requests_get(url, **kwargs) + + def tags(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}/{1}/tags'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def user(self, user, **kwargs): + """ + + Args: + user: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('users/{0}'.format(user)) + return self._do_requests_get(url, **kwargs).json() + + # ------ Logged In Section + + def logged_in_user(self): + """ + + Returns: + + """ + return self._do_requests_get(self._api_url('user')).json() + + def add_collaborator(self, user, repository, collaborator): + """ + + Args: + user: + repository: + collaborator: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) + return self._do_requests_post(url, { + "user": collaborator.lower() + }).json() + + def build_details(self, user, repository, code): + """ + + Args: + user: + repository: + code: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildhistory/{}'.format(user, repository, code)) + return self._do_requests_get(url).json() + + def build_history(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildhistory'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def build_links(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/links'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def build_settings(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) + return self._do_requests_get(url).json() + + def build_trigger(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildtrigger'.format(user, repository)) + return self._do_requests_get(url).json() + + def build_trigger_history(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildtrigger/history'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def collaborators(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def create_build_link(self, user, repository, to_repo): + """ + + Args: + user: + repository: + to_repo: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/links'.format(user, repository)) + return self._do_requests_post(url, { + "to_repo": to_repo + }).json() + + def create_build_tag(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/tags'.format(user, repository)) + return self._do_requests_post(url, { + 'isNew': True, + 'namespace': user, + 'repoName': repository, + 'name': details['name'] if 'name' in details else 'latest', + 'dockerfile_location': details['dockerfile_location'] if 'dockerfile_location' in details else '/', + 'source_type': details['source_type'] if 'source_type' in details else 'Branch', + 'source_name': details['source_name'] if 'source_name' in details else 'master' + }).json() + + def create_repository(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories') + data = { + 'name': repository, + 'namespace': user, + } + details.update(data) + return self._do_requests_post(url, details).json() + + def create_automated_build(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) + data = { + 'name': repository, + 'namespace': user, + 'active': True, + 'dockerhub_repo_name': "{}/{}".format(user, repository) + } + + details.update(data) + return self._do_requests_post(url, details).json() + + def create_webhook(self, user, repository, webhook_name): + """ + + Args: + user: + repository: + webhook_name: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) + data = { + 'name': webhook_name + } + return self._do_requests_post(url, data).json() + + def create_webhook_hook(self, user, repository, webhook_id, webhook_url): + """ + + Args: + user: + repository: + webhook_id: + webhook_url: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks/{}/hooks'.format(user, repository, webhook_id)) + data = { + 'hook_url': webhook_url + } + return self._do_requests_post(url, data).json() + + def delete_build_link(self, user, repository, build_id): + """ + + Args: + user: + repository: + build_id: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/links/{}'.format(user, repository, build_id)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code == 204 + + def delete_build_tag(self, user, repository, tag_id): + """ + + Args: + user: + repository: + tag_id: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, tag_id)) + resp = self._do_requests_delete(url) + return resp.status_code == 204 + + def delete_tag(self, user, repository, tag): + """ + + Args: + user: + repository: + tag: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/tags/{}'.format(user, repository, tag)) + resp = self._do_requests_delete(url) + return resp.status_code == 204 + + def delete_collaborator(self, user, repository, collaborator): + """ + + Args: + user: + repository: + collaborator: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/collaborators/{}'.format(user, repository, collaborator.lower())) + resp = self._do_requests_delete(url) + return resp.status_code in [200, 201, 202, 203, 204] + + def delete_repository(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}'.format(user, repository)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def delete_webhook(self, user, repository, webhook_id): + """ + + Args: + user: + repository: + webhook_id: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks/{}'.format(user, repository, webhook_id)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def registry_settings(self): + """ + + Returns: + + """ + url = self._api_url('users/{}/registry-settings'.format(self.username)) + return self._do_requests_get(url).json() + + def set_build_tag(self, user, repository, build_id, details): + """ + + Args: + user: + repository: + build_id: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, build_id)) + data = { + 'id': build_id, + 'name': 'latest', + 'dockerfile_location': '/', + 'source_type': 'Branch', + 'source_name': 'master' + } + data.update(details) + return self._do_requests_put(url, details).json() + + def set_repository_description(self, user, repository, descriptions): + """ + + Args: + user: + repository: + descriptions: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}'.format(user, repository)) + data = {} + if 'full' in descriptions: + data['full_description'] = descriptions['full'] + if 'short' in descriptions: + data['description'] = descriptions['short'] + if not data: + raise ValueError("Need either 'short' or 'full' description specified") + + return self._do_requests_patch(url, data).json() + + def star_repository(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + boolean: returns true if successful + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) + resp = self._do_requests_post(url, {}) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def unstar_repository(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + boolean: returns true if successful + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def trigger_build(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/trigger-build'.format(user, repository)) + data = { + 'dockerfile_location': '/', + 'source_type': 'Branch', + 'source_name': 'master' + } + data.update(details) + return self._do_requests_post(url, data).json() + + def webhooks(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) \ No newline at end of file From fd3e71ee6e9043b88fe280b8c1cf38b42e9e1f80 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:20:05 -0400 Subject: [PATCH 17/29] Load entries from database Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_utils/load_entities.py | 133 +++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 kg_utils/search_utils/load_entities.py diff --git a/kg_utils/search_utils/load_entities.py b/kg_utils/search_utils/load_entities.py new file mode 100644 index 0000000..6077009 --- /dev/null +++ b/kg_utils/search_utils/load_entities.py @@ -0,0 +1,133 @@ +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + + +from sqlite3 import Error +import sqlite3 + +import configparser +import os +import re +import logging +from . import utils + + + +def filter_entity(entity:str)-> str: + """ + Remove pipes(|) or pipe stars (|*) or entity_prefix pipe (i.e Linux|ubuntu) from entity names + + Args: + entity (str): entity to filter + + Returns: + str: filtered entity + """ + match_pipe_star = re.findall(r'\|\*', entity) + match_less_greater_sign = re.findall(r'\<\>' , entity) + match_abbreviation = re.findall(r'[\)]' , entity) + match_pipe_only = re.findall(r'\|', entity) + + if match_pipe_star : + return entity.split('|*')[0].strip() + + elif match_less_greater_sign: + + if "|" in entity.split("<>")[1]: + return entity.split("<>")[1].split("|")[-1].strip() + return(entity.split("<>")[1].strip()) + + elif match_abbreviation: + if entity.startswith("("): + return entity.strip() + elif ('|') in entity.split("(")[0]: + + n_ent = entity.split("(")[0].split('|')[-1] + return n_ent.strip() + else: + return entity.split("(")[0].strip() + elif match_pipe_only and '|*' not in entity: + + num = entity.count("|") + ent = '' + if num > 1: + ent = entity.split("|")[-1] + else: + ent = entity.split('|')[1] + return ent.strip() + else: + return entity.strip() + + + +def all_OS_from_db(): + """ + Load all entities of type OS + """ + os_cursor = utils.get_table(table_name="entities") + + OS= {} + + for entity in os_cursor.fetchall(): + if entity[2] == 6: + os = filter_entity(entity[1]) + OS[str(entity[0])] = os + + os_cursor.close() + + return OS + + + +def from_database( entity_names = None, table_name="entities"): + + """ + Load entity names from the main database. + + Returns: + list: A list containing tuple( entity_name , entity_type_id , entity_name_id) + """ + if entity_names == None : + print("No entities selected") + exit() + entities = [] + suggest_entities = [] + cursor = utils.get_table(table_name="entities") + + for entity in cursor.fetchall(): + if entity_names == "all": + entity_name = filter_entity(entity[1]) + entities.append( (entity_name.strip(),entity[2] , entity[0]) ) + + else: + + for name in entity_names: + + if entity[1].lower() == name.lower(): + + entity_name = filter_entity(entity[1]) + + entities.append( (entity_name.strip(),entity[2] , entity[0]) ) + + elif name.lower() in entity[1].lower(): + print(entity[1]) + suggest_entities.append(entity[1]) + + else: continue + + cursor.close() + + return entities , suggest_entities \ No newline at end of file From dbdda33e2ca8a7f5e9180bff7fa4ec5fd77ed628 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:21:29 -0400 Subject: [PATCH 18/29] operator image search script Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_utils/operator.py | 148 ++++++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 kg_utils/search_utils/operator.py diff --git a/kg_utils/search_utils/operator.py b/kg_utils/search_utils/operator.py new file mode 100644 index 0000000..4e62280 --- /dev/null +++ b/kg_utils/search_utils/operator.py @@ -0,0 +1,148 @@ + +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + +import requests +import json +class Operators(): + + def __init__(self): + + self.api = "https://artifacthub.io/api/v1/" + self.package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=&limit=60&offset=" + + + def remove_tags(self, image_link:str)-> str: + """ + Remove tags(@) from image_link. + + Args: + image_link (str): URL link + + Returns: + str: URL without tags + """ + if '@' in image_link: + img_link = image_link.split('@')[0] + return img_link + else: return image_link + + def community_op_images_repos(self, operator_name: str) -> list: + """ + + Searches for community operators from https://artifacthub.io/ + + Args: + operator_name (str): entity name + + Returns: + (lst): A list containing all matching operators + """ + + container_images = [] + request_session = requests.session() + search_query = self.api + "packages/olm/community-operators/" + operator_name + response_ = request_session.get(url= search_query) + + try: + + image_urls = json.loads(response_.text)["containers_images"] + + for imgs in image_urls: + + if "quay.io" in imgs['image'] or "docker.io" in imgs['image'] or 'registry.hub.docker' in imgs['image']: + img_link = self.remove_tags(imgs['image']) + container_images.append(img_link) + + except KeyError: + print(" '{}' is not a key. So container images registry found for {} ".format("containers_images", operator_name)) + + + return container_images + + + def community_op_git_repos(self, operator_name: str): + + """ + Search git repositories for an operator. + + Args: + + operator_name (str): entity name + + Returns: + (lst): A list containing all repos for a given operator_name + """ + + operator_repository = None + + request_session = requests.session() + search_query = self.api + "packages/olm/community-operators/" + operator_name + response_ = request_session.get(url= search_query) + + try: + + links = json.loads(response_.text)["links"] # source , GitHub , etc ... + + for link_data in links: + for _ , val in link_data.items(): + + if val == "source" or val == "GitHub" or val == "Documentation": + operator_repository = link_data["url"] + + except KeyError: + + print("No git , source , or Documentation url links found.") + + + + return operator_repository + + def community_operators(self, entity: str): + + """ + Search community operators from https://artifacthub.io/packages/olm/community-operators/ + + Keyword arguments: + entity (str) -- An entity name from from the database + Return: list of all matching operators + + """ + + + api = "https://artifacthub.io/api/v1/" + package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=" + + operators = [] + sess = requests.session() + endpoint = api + package_query+"{}".format(entity) + res = sess.get(url=endpoint) + operator = json.loads(res.text)['packages'] + if len(operator) > 0 : + + for op in operator: + update_dict = {"git_repos": None , "container_images": None} + git_repos = self.community_op_git_repos(op["name"]) + container_images = self.community_op_images_repos(op["name"]) + update_dict["git_repos"] = git_repos + update_dict["container_images"] = container_images + + + op.update(update_dict) + + operators.append(op) + + return operators \ No newline at end of file From 4bd735d27b91638ef1754166a70a91d6fdb2e3df Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:22:51 -0400 Subject: [PATCH 19/29] Quay.io image search Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_utils/quay.py | 191 ++++++++++++++++++++++++++++++++++ 1 file changed, 191 insertions(+) create mode 100644 kg_utils/search_utils/quay.py diff --git a/kg_utils/search_utils/quay.py b/kg_utils/search_utils/quay.py new file mode 100644 index 0000000..ffab7ce --- /dev/null +++ b/kg_utils/search_utils/quay.py @@ -0,0 +1,191 @@ +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + +import requests +import json +import configparser +import os +import logging +import operator +import itertools +from . import utils +#config file +config = configparser.ConfigParser() +config_data = os.path.join("config/kg.ini") +config.read([config_data]) + +#loggger +logger = logging.getLogger('search') +logger.setLevel(logging.INFO) + +class Quay(): + + def __init__(self) -> None: + + self.quay_api = "https://quay.io/api/v1/" + self.session = requests.Session() + + + def popular_images(self, quay_images:dict, top:int): + """ + Get popular Quay images + + Args: + quay_images (dict): List of Quay images + top (int): Threshold = 5 + + Returns: + (list): Popular images + """ + + popular_quay_images = [] + + if len(list(quay_images.keys())) > 0: + sorted_results = dict( + sorted(quay_images.items(), key=operator.itemgetter(1), reverse=True) + ) + + popular_images = dict(itertools.islice(sorted_results.items(), top )) + popular_quay_images.append(popular_images) + + return popular_quay_images + + + def exact_image(self, results:list , entity_name:str)->list: + """ + retrieve exact image + + Args: + results (list): list of all images obtained by searching the search term (entity_name) from Quay.io + entity_name (str):Search term + + Returns: + (list):list of exact matches from Quay.io + """ + + + exact = [] + image_template = {"name": "" , "url": "" , "popularity": 0} + + for img in results: + if ( + utils.is_exact_match(img['name'], entity_name) + ): + + image = image_template.copy() + image["name"] = img["name"] + image["url"] = "https://quay.io"+img['href'] + image["popularity"] = img["popularity"] + exact.append(image) + + return exact + + + def top_images(self,popular_quay_images, results ): + + """ + Select top images based on popularity + + Returns: + (list): list of top images + """ + + + top_image = [] + + image_template = {"name": "" , "url": "" , "popularity": 0} + + if len(popular_quay_images) != 0: + + for img in results: + + if img['href'] in list(popular_quay_images[0].keys()): + image = image_template.copy() + image["name"] = img["name"] + image["url"] = "https://quay.io"+img['href'] + image["popularity"] = img["popularity"] + + top_image.append(image) + + return top_image + + + def recommend_images(self, results:list, quay_images: dict, entity_name:str) -> tuple: + """ + Recommended container images + Args: + results (list): list of all relavent container images from Quay.io + quay_images (dict): Quay image hrefs as keys and popularity as values + entity_name (str): entity name from the database + + Returns: + (tuple): Exact Quay image(s) and top image(s) found + """ + + top = int(config["quay"]["top_popular_images"]) + exact_quay_image = [] + popular_quay_images = [] + top_images = [] + + popular_quay_images = self.popular_images(quay_images, top) + exact_quay_image = self.exact_image( results, entity_name) + top_images = self.top_images(popular_quay_images, results) + + + return (exact_quay_image , top_images) + + + + def search_images(self, entity: str) -> tuple: + """ + + Search container images from Quay.io + + Args: + entity (str): Entity name from the database + + Returns: + tuple: Exact matches and top matches + """ + + if not isinstance(entity, str): + exit() + + max_pages = 2 + images = {} + page_increment = 1 + results = [] + search_endpoint = self.quay_api + "find/repositories" + + for page in range(max_pages): + + url = search_endpoint + "?includeUsage=true&query={}&page={}".format( + entity, page + page_increment + ) + r = self.session.get(url) + data = json.loads(r.text) + result = data["results"] + results += result + + + for repo in results: + + images[repo["href"]] = repo["popularity"] + + + exact = self.recommend_images(results, images, entity)[0] + top = self.recommend_images(results, images, entity)[1] + return (exact , top) \ No newline at end of file From 0361728b0e568e1c327514f3ce8af83ff4a52e39 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:25:06 -0400 Subject: [PATCH 20/29] Save search results to csv Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_utils/save_to_csv.py | 411 +++++++++++++++++++++++++++ 1 file changed, 411 insertions(+) create mode 100644 kg_utils/search_utils/save_to_csv.py diff --git a/kg_utils/search_utils/save_to_csv.py b/kg_utils/search_utils/save_to_csv.py new file mode 100644 index 0000000..b22639a --- /dev/null +++ b/kg_utils/search_utils/save_to_csv.py @@ -0,0 +1,411 @@ + +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + +import json +import logging +import csv +from .load_entities import all_OS_from_db +from .utils import get_column , remove_tags_url + + +#List of all OS +all_os_entities = all_OS_from_db() + +#Assign default OS as linux +default_os_id = [_id for _id , val in all_os_entities.items() if val.lower()=="linux"] + + +def search_results(): + """ + load results + + Returns: + None: Json file containing search results + """ + + with open("kg_utils/image_search_kg/images.json", "r" , encoding="utf-8") as images: + images_ = json.load(images) + + return images_ + + +def entity_type_mapper( entity_type: int , entity_id : str)-> dict: + """ + Maps entity_types to an integer ranging from 1 to 12 + + Args: + entity_type (int): entity_type id + entity_id (int): entity index from the entity_name table from the database + + Returns: + dict: a mapping of entity_type_name to a unique id + + """ + type_mapper = {"technology": 1, "app": 2 , "vm": 3 , "hw" : 4 , "plugin": 5 , "OS" : 6 , "runlib": 7, \ + "app_server" : 8 , "lang": 9 , "runtime": 10 , "storage": 11 , "lib": 12 + + } + + for ky , val in type_mapper.items(): + if val == entity_type: + return {ky:entity_id} + + +def write_to_csv(data:list, file_name:str): + """ + Write results to csv file + + Args: + data (list): A list containing data to save. + file_name (str): Name of the file to to save the data as csv. + + """ + + with open("kg_utils/image_search_kg/{}.csv".format(file_name) , "w" , encoding="utf-8") as op_csv: + + if data == []: + print("No {} found".format(file_name)) + return + + columns = list(data[0].keys()) + writer = csv.DictWriter(op_csv, fieldnames=columns) + writer.writeheader() + + if file_name == "operator_images": + + for row in data: + writer.writerow({"operator_images":row["operator_images"],'container_name': row["container_name"], 'OS': row["OS"] \ + , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ + ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ + "runlib": row["runlib"] , "runtime": row["runtime"] , \ + "Operator_Correspondent_Image_Url": row["Operator_Correspondent_Image_Url"] ,\ + "Operator_Repository" : row["Operator_Repository"] + }) + if file_name == "docker_images": + for row in data: + + writer.writerow({"docker_images":row["docker_images"],'container_name': row["container_name"], 'OS': row["OS"] \ + , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ + ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ + "runlib": row["runlib"] , "runtime": row["runtime"] , \ + "Docker_Url": row["Docker_Url"] ,\ + "Notes": row["Notes"], \ + "CertOfImageAndPublisher": row["CertOfImageAndPublisher"] + + }) + + if file_name =="openshift_images": + for row in data: + + writer.writerow({"openshift_images":row["openshift_images"],'container_name': row["container_name"], 'OS': row["OS"] \ + , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ + ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ + "runlib": row["runlib"] , "runtime": row["runtime"] , \ + "Openshift_Correspondent_Image_Url": row["Openshift_Correspondent_Image_Url"] ,\ + "DockerImageType": row["DockerImageType"] + + }) + + +def get_exact_images(all_images: dict , catalogue ="operators", index = 2): + """ + Gather exact image names. + + Args: + all_images (dict): A large dictionary containing all search results + catalogue (str, optional): Catalog's name("operator" , "dockerhub_exact_images" ,or "quay_exact_images" ) . Defaults to "operators". + index (int, optional): _description_. Defaults to 2. + + Returns: + list: A list containing exact image names. + """ + + if all_images == []: + logging.error("All_images list is empty. ") + exit() + + if catalogue == "dockerhub_exact_images": index = 0 + if catalogue == "quay_exact_images" : index = 1 + + exact_images_lst = [] + + for id_ , image in enumerate(all_images): + + + image_name = list(image.keys())[0] + + + + + if image[image_name][index][catalogue] != []: + + + + exact_images= {image_name: [], "type": image["entity_type"] , "entity_id" : image["entity_id"]} + exact_images[image_name] = image[image_name][index][catalogue] + exact_images_lst.append(exact_images) + else: + exact_images_lst.append({image_name: [], "type": image["entity_type"] , "entity_id" : image["entity_id"]}) + + return exact_images_lst + +def csv_columns( table_name:str ): + """ + Build the columns headers for the csv files. + + Args: + table_name (str, optional):The name of the table from the database. + + Returns: + dict: csv header. + """ + + columns = { table_name: "", "container_name":"", "OS": None, "lang" : None, "lib": None, "app": None, "app_server": None,"plugin": None,"runlib": None,"runtime": None } + + docker_col_extension = {"Docker_Url":"", "Notes": "", "CertOfImageAndPublisher": "" } + + openshift_col_extension = {"Openshift_Correspondent_Image_Url":"", "DockerImageType": ""} + + operator_col_extension ={"Operator_Correspondent_Image_Url":[],"Operator_Repository": ""} + + if table_name == "openshift_images": + columns.update(openshift_col_extension) + + elif table_name == "docker_images": + columns.update(docker_col_extension) + elif table_name == "operator_images": + columns.update(operator_col_extension) + else: + logging.debug("Wrong table's name. Enter one of the following table's names: docker_images, operator_images,operator_images") + exit() + + return columns + +def operator_images(): + """ + Saves operator images to a operator_images.csv + + """ + row_data = [] + cols = csv_columns(table_name="operator_images") + images_ = search_results() + operator_images = get_column("operator_images", column_index=1) + + operator_exact_images = get_exact_images(images_ , catalogue="operators") #All exact images from the three catalogs. + + for operator_image in operator_exact_images: + image_name = list(operator_image.keys())[0] + + if operator_image[image_name] == []: + logging.info("No exact Operator images were found for {}.".format(image_name)) + + for op in operator_image[image_name]: + + op_data = cols.copy() + op_data["operator_images"] = "operator_images" + op_data["container_name"] = op["display_name"].lower().strip() + + if op_data["container_name"] in operator_images: + print("{} is already present".format(op_data["container_name"])) + continue + + op_data["OS"] = default_os_id[0] + img_data_type = entity_type_mapper( operator_image["type"] , str( operator_image["entity_id"])) + + if list(img_data_type.keys())[0] in list(op_data.keys()): + op_data.update(img_data_type) + row_data.append(op_data) + + if len(op["container_images"]) >=1: + Operator_Correspondent_Image_Url = remove_tags_url(op["container_images"][0]) + print("{} ==> {}".format(op["container_images"][0], Operator_Correspondent_Image_Url)) + op_data["Operator_Correspondent_Image_Url"] = Operator_Correspondent_Image_Url + else: + op_data["Operator_Correspondent_Image_Url"] = None + op_data["Operator_Repository"] = op["git_repos"] + + write_to_csv(row_data ,file_name="operator_images") + +def docker_os_type_id(os_types:list ) -> dict: + """ + Get OS ids. + Args: + os_types (list): List of OS names + + Returns: + dict: A dict containing OS name as key and id as value. + """ + os_type_ids = {} + + for os_type in os_types: + for entity_id , os_name in all_os_entities.items(): + if os_name.lower() == os_type: + os_type_ids[os_name.lower()] = entity_id + return os_type_ids + +def docker_os_types(exact_image:dict)-> list: + """ + Get the OS type ( Linux , Centos , Ubuntu etc ..) of an image. + Args: + exact_image (dict): An image from dockerhub + Returns: + list: list of OS types this particular image runs on. + """ + + os_types = exact_image["OS"] + os_types = list(set(os_types)) + os_type_ids = docker_os_type_id(os_types) + + if not os_type_ids: + logging.info("No OS info was found for this image. So the OS type_id will default to {}".format(default_os_id)) + return {"linux":default_os_id[0]} + else: + return os_type_ids + +def containers_with_multiple_os(container_names: list) -> list: + """_summary_ + + Args: + container_names (list): _description_ + + Returns: + list: _description_ + """ + pass + + +def docker_images() -> None: + """ + Saves docker images to docker_images.csv + """ + + row_data = [] + cols = csv_columns(table_name="docker_images") + images_ = search_results() + docker_exact_images = get_exact_images(images_, catalogue= "dockerhub_exact_images") + docker_images = get_column("docker_images", column_index=1) + + for idx , exact_image in enumerate(docker_exact_images): + + image_name_ = list(exact_image.keys())[0] + + if exact_image[image_name_] == []: + logging.info("No exact Docker images were found for {} ".format(image_name_)) + continue + + for image in exact_image[image_name_]: + + img_data = cols.copy() + img_data["docker_images"] = "docker_images" + img_data["container_name"] = image["name"].lower().strip() + + #get OS types + os_types = docker_os_types(image) + os_names = list(os_types.keys()) + + #check for container_name_os_name + if img_data["container_name"] + "_" + os_names[0] in docker_images: + print("{} : {} is already present".format(idx, img_data["container_name"] + "_" + os_names[0])) + continue + + if img_data["container_name"] in docker_images: + print("{} : {} is already present".format(idx ,img_data["container_name"])) + continue + + img_data["Docker_Url"] = image["Docker_Url"] + img_data["Notes"] = "" + + #image certification status + if image["Official image"]: + img_data["CertOfImageAndPublisher"] = "Official Image" + if image["Verified Publisher"]: + img_data["CertOfImageAndPublisher"] = "Verified Publisher" + + #map entity to type + img_data_type = entity_type_mapper(exact_image["type"] , str(exact_image["entity_id"])) + img_data.update(img_data_type) + + + #Assign OS name + if len(list(os_types.keys()))== 1 and list(os_types.keys())[0] =="linux": + img_data["OS"] = default_os_id[0] + row_data.append(img_data) + + else: + for OS_name , os_id in os_types.items(): + new_row_data = img_data.copy() + new_row_data["container_name"] = img_data["container_name"] + "_" + OS_name.lower() + new_row_data["OS"] = os_id + row_data.append(new_row_data) + + write_to_csv(row_data , "docker_images") + + +def openshift_images(): + """ + Saves Openshift images to openshift_images.csv. + + """ + + row_data = [] + cols = csv_columns(table_name="openshift_images") + images_ = search_results() + quay_exact_images = get_exact_images(images_, catalogue="quay_exact_images") + openshift_images = get_column("openshift_images", column_index=1) + + for quay_image in quay_exact_images: + + image_name = list(quay_image.keys())[0] + + if quay_image[image_name] == []: + logging.info("No exact Quay images were found for {}".format(image_name)) + + + for image in quay_image[image_name]: + + img_data = cols.copy() + img_data["openshift_images"] = "openshift_images" + img_data["container_name"] = '' + img_data["container_name"] = image["url"].split("/repository/")[-1].lower().strip() + + if "/application/" in image["url"]: + img_data["container_name"] = image["url"].split("/application/")[-1].lower().strip() + + if img_data["container_name"] in openshift_images : + print("{} is already present".format(img_data["container_name"])) + continue + + #check duplicate names + if "/" in img_data["container_name"]: + split_name = img_data["container_name"].split("/") + if split_name[0]==split_name[1] and split_name[0] in openshift_images: + print("{} is already present".format(img_data["container_name"])) + continue + + img_data["OS"] = default_os_id[0] + + img_data["Openshift_Correspondent_Image_Url"] = image["url"] + + img_data_type = entity_type_mapper(quay_image["type"] , str(quay_image["entity_id"])) + if list(img_data_type.keys())[0].title() =='Os': img_data["DockerImageType"] ='OS' + else: img_data["DockerImageType"] = list(img_data_type.keys())[0].title() + + if list(img_data_type.keys())[0] in list(img_data.keys()): + img_data.update(img_data_type) + row_data.append(img_data) + write_to_csv(row_data , "openshift_images") + From f4995d8be76c438f6fe8a1cef8d8c15234c0f519 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:28:09 -0400 Subject: [PATCH 21/29] Automatic update of dockerhub verified publisher using selenium Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_utils/driver.py | 16 ++ kg_utils/search_utils/selenium_driver.py | 155 ++++++++++++++ kg_utils/search_utils/update_publishers.MD | 15 ++ kg_utils/search_utils/url_detector.py | 224 +++++++++++++++++++++ 4 files changed, 410 insertions(+) create mode 100644 kg_utils/search_utils/driver.py create mode 100644 kg_utils/search_utils/selenium_driver.py create mode 100644 kg_utils/search_utils/update_publishers.MD create mode 100644 kg_utils/search_utils/url_detector.py diff --git a/kg_utils/search_utils/driver.py b/kg_utils/search_utils/driver.py new file mode 100644 index 0000000..5608600 --- /dev/null +++ b/kg_utils/search_utils/driver.py @@ -0,0 +1,16 @@ + +""" +Module for web scraping +""" +from selenium import webdriver + + +def get_driver(remote_ip="localhost"): + + print("Waiting for selenium webdriver to load a session...") + driver = webdriver.Remote(desired_capabilities=webdriver.DesiredCapabilities.FIREFOX, command_executor="http://{}:4444".format(remote_ip)) + + return driver + + + diff --git a/kg_utils/search_utils/selenium_driver.py b/kg_utils/search_utils/selenium_driver.py new file mode 100644 index 0000000..704362f --- /dev/null +++ b/kg_utils/search_utils/selenium_driver.py @@ -0,0 +1,155 @@ + +#selenium driver +#import chromedriver_binary +from time import sleep +from selenium.webdriver.common.by import By +from selenium import webdriver +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support import expected_conditions +from selenium.webdriver.common.keys import Keys +from selenium.webdriver.support import expected_conditions as EC +from driver import get_driver + +class SeleniumDriver(): + + def __init__(self, remote_ip_addr) -> None: + + self.remote_ip_addr = remote_ip_addr + self.driver = get_driver(self.remote_ip_addr) + + def open_driver(self, url:str): + """ + Args: + url: str + Returns: + open the selenium driver + """ + self.driver.get(url) + + def close_driver(self): + """ + Args: + + Returns: + close the Selenium driver + """ + self.driver.quit() + + def get_containers(self, url, catalogue_name ="DockerHub" ,default_container = "mysql"): + self.driver.switch_to("tab") + + + """ + Args: + url: str + new_driver: Selenium Class instance + all: boolean + default_container: str + + Returns: + + containers: list + + """ + self.open_driver(url) + search_url = self.all_containers_url(catalogue_name , default_container) + return search_url + + + + def get_all_xpath(self): + """ + Args: + + Returns: + xpath_element: + """ + return self.driver.find_elements(By.XPATH ,".//*" ) + + def all_containers_url(self, catalogue_name, entity:str) -> str: + + """ + Args: + entity: name entity + Returns: + str: search results url + + """ + search_url = "" + if catalogue_name == "DockerHub": + search_element = self.driver.find_element(By.CSS_SELECTOR ,".autocompleteInput") + search_element.send_keys(entity) + search_element.send_keys(Keys.ENTER) + search_url = self.driver.current_url + + elif catalogue_name == "OpenShift": + search_element = self.driver.find_element(By.CSS_SELECTOR ,"#searchBar") + search_element.send_keys(entity) + search_element.send_keys(Keys.ENTER) + search_url = self.driver.current_url + + else: + search_element = self.driver.find_element(By.CSS_SELECTOR ,"#search-input-main") + search_element.send_keys(entity) + search_element.send_keys(Keys.ENTER) + search_url = self.driver.current_url + print(search_url) + + return search_url + + def search_body(self, empty_body_element_class_name = "pf-c-empty-state__body"): + + element_body = '' + + try: + element_body = WebDriverWait(self.driver,8).until(EC.presence_of_element_located((By.CLASS_NAME, empty_body_element_class_name ))).text + + finally: + return element_body + + + def find_element_by_css_selector(self, selector:str): + + elements = None + try: + elements = self.driver.find_element(By.CSS_SELECTOR , selector) + except Exception as e: + print(e) + return elements + + + def find_element_by_class_name(self): + """ + Args: + + Returns: + elements containing search results + """ + + #no result found class + no_result_class = "MuiTypography-root MuiTypography-h3 css-dubhfy" + + #result found class + result_wrapper_class = "styles__resultsWrapper___38JCx" + + elements = None + + try: + if "No results" in self.driver.find_element(By.CLASS_NAME, no_result_class).text: + elements = None + except Exception as e: + print("Relevant images found.") + + try: + elements = WebDriverWait(self.driver, 5).until( + EC.presence_of_element_located((By.CLASS_NAME, result_wrapper_class)) + ) + + except Exception as e: + print("There are no results for this search in Docker Hub. ") + + return elements + + + \ No newline at end of file diff --git a/kg_utils/search_utils/update_publishers.MD b/kg_utils/search_utils/update_publishers.MD new file mode 100644 index 0000000..14c9dd9 --- /dev/null +++ b/kg_utils/search_utils/update_publishers.MD @@ -0,0 +1,15 @@ +# Steps to update the verified publishers list. + +## 1) Run Selenium/firefox-standalone image + +```docker run -d -e SE_EVENT_BUS_HOST=selenium-hub -e SE_EVENT_BUS_PUBLISH_PORT=4442 -e SE_EVENT_BUS_SUBSCRIBE_PORT=4443 -e SE_START_XVFB=false --shm-size="2g" selenium/standalone-firefox ``` + +## 2) List running containers +```docker ps``` +## 3) Get Selenium/firefox-standalone ip address + +```docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' ``` + +## 4) Run + +```python kg_utils/search_utils/url_detector.py selenium-remote-ip-address``` \ No newline at end of file diff --git a/kg_utils/search_utils/url_detector.py b/kg_utils/search_utils/url_detector.py new file mode 100644 index 0000000..e3abb14 --- /dev/null +++ b/kg_utils/search_utils/url_detector.py @@ -0,0 +1,224 @@ +import json +from selenium_driver import SeleniumDriver +import sys +from selenium.webdriver.common.by import By +from datetime import date + + +import warnings +if not sys.warnoptions: + warnings.simplefilter("ignore") + + +#Explore Dockerhub base url +search_url = "https://hub.docker.com/search?q=" + +#Filter for Verified publishers +filter_verified = "&image_filter=store" + + +#Filter for official images +filter_official = "&image_filter=official" + +#Filter for official product and verified publisher +filter_both = "&image_filter=official%2Cstore" + +#Filter for OS +filter_wind_os = "&operating_system=windows" +filter_linux_os = "&operating_system=linux" + + +################################################################################################ +##################### DOCKERHUB CONTAINER PLATFORM ############################################ +################################################################################################ +class DockerHub(SeleniumDriver): + + def __init__(self, url ,selenium_remote_driver_ip="localhost"): + SeleniumDriver.__init__(self, remote_ip_addr= selenium_remote_driver_ip) + self.url = url + + def get_image_href(self, url): + """ + + """ + self.open_driver(url) + container_elems = self.find_element_by_class_name() + + + if container_elems == None: + return "NA" + + else: + container_elements =container_elems.find_elements(By.TAG_NAME, "a") + container_images = [] + + for cont in container_elements: + container_images.append(cont.get_attribute("href")) + return container_images + + def windows_base_os(self, entity:str)-> dict: + """ + Find relevant images that run on windows + Args: + entity (str): An entity + + Returns: + dict: A dict of relevant images with a windows based OS + """ + url = search_url + entity + filter_both + filter_wind_os + hrefs = self.get_image_href(url) + return hrefs + + + + def linux_base_os(self, entity: str)-> dict: + """ + Find relevant images that run on linux + + Args: + entity (str): An entity + + Returns: + dict: A dict of relevant images with a linux based OS + """ + + url = search_url + entity + filter_both + filter_linux_os + hrefs = self.get_image_href(url) + return hrefs + + + + def base_os(self, entity:str)-> tuple: + """ + Find windows and linux based OS for an entity + Args: + entity (str): An entity + + Returns: + tuple: Contains base OS for an entity + """ + + if entity =="" or not isinstance(entity , str): + print("Cannot find base OS for an empty String. Entity must be a string") + exit() + linux_base_os = self.linux_base_os(entity) + windows_base_os = self.windows_base_os(entity) + + return(linux_base_os,windows_base_os) + + + + def official_image_name(self, url:str)-> str: + """ + Given an official image url, get the namespace of the repository + + Args: + url (str): image url + + Returns: + str: name of the image + """ + name = url.split("/r/")[-1] + return name + + def verified_publisher_name(self,url:str)-> str: + """ + Given a verified publisher url, get the name of the publisher + + Args: + url (str): image url + + Returns: + str: name of the publisher + + """ + name = url.split("/r/")[-1].split("/")[0] + + return name + + def verified_publishers(self): + """ + Get the list of all verified publishers + + """ + max_page =100 + url = search_url + filter_verified + verified_lst = [] + + for page in range(max_page): + url = search_url + filter_verified + "&page=" + str(page+1) + images_urls = self.get_image_href(url) + for url in images_urls: + name = self.verified_publisher_name(url) + if name not in verified_lst: + verified_lst.append(name) + print("page: {} ".format(page)) + return verified_lst + + + + def update_verified_publisher_lst(self,verified_publisher_name): + """ + + """ + + with open("kg_utils/image_search_kg/verified_publisher_names.json", "r" , encoding="utf-8") as latest_file: + verified_pub_latest= json.load(latest_file) + + + for publisher in verified_publisher_name: + if publisher not in verified_pub_latest["verified_publishers"]: + verified_pub_latest["verified_publishers"].append(publisher) + + + verified_pub_latest["last updated"] = input("Enter today's date") + + + with open("kg_utils/image_search_kg/verified_publisher_names.json", "w" , encoding="utf-8") as lat_file: + lat_file.write(json.dumps(verified_pub_latest , indent=4)) + + + + def search_base_os(self,entities: list) -> list: + """ + Given a list of exact entities , get the base OS for each image + + Args: + entities (list): list of entities + + Returns: + dict: A dict containing images along with the base OS(Linux , Windows) + """ + + search_results = [] + base_os = {"linux":[] , "windows": []} + + for entity in entities: + for _ , image in entity.items(): + + image_dict = {image: base_os.copy()} + linux_base_os , windows_base_os = self.base_os(image) + image_dict[image]["linux"] = linux_base_os + image_dict[image]["windows"] = windows_base_os + search_results.append(image_dict) + + return search_results + + +if __name__ == "__main__": + + docker = DockerHub("https://hub.docker.com/",selenium_remote_driver_ip=sys.argv[1]) + verified_publisher_names = docker.verified_publishers() + docker.update_verified_publisher_lst(verified_publisher_names) + + + + + + + + + + + + \ No newline at end of file From 19b7807b6db90e4dced74e8cfa9df51b24f3c674 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:31:39 -0400 Subject: [PATCH 22/29] utils for image search Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_utils/utils.py | 263 +++++++++++++++++++++++++++++++++ 1 file changed, 263 insertions(+) create mode 100644 kg_utils/search_utils/utils.py diff --git a/kg_utils/search_utils/utils.py b/kg_utils/search_utils/utils.py new file mode 100644 index 0000000..1e0030e --- /dev/null +++ b/kg_utils/search_utils/utils.py @@ -0,0 +1,263 @@ +import logging +import re +import json +import requests +from sqlite3 import Error +import sqlite3 +import docker +import os +import configparser + +# NLP +import pandas as pd +from requests import session +from sklearn.feature_extraction.text import TfidfVectorizer +from sklearn.metrics.pairwise import cosine_similarity + + + +#config file +config = configparser.ConfigParser() +config_data = os.path.join("config/kg.ini") +config.read([config_data]) + +#path to DB +db_path = config["database"]["database_path"] + +def create_db_connection(): + """ + Create connection to database + + Args: + + database_path (str): path to the database + + Returns: + + _type_: sqlite3 connection + + """ + + connection = None + + try: + connection = sqlite3.connect(db_path) + except Error as e: + logging.error(f'{e}: Issue connecting to db. Please check whether the .db file exists.') + return connection + + + +def clean_string_value(value): + + """ + arguments: + value : str + Return: + str : formated str + """ + if value: + value = str(value).strip() + value = value.replace(u'\u00a0', ' ') + value = re.sub(r'[^\x00-\x7F]+', ' ', ' ' + str(value) + ' ').strip() + else: + value = '' + + return value + + +def get_table(table_name="entities"): + """ + Connect to a table + """ + + connection = create_db_connection() + cursor = connection.cursor() + cursor.execute("SELECT * FROM {} ".format(table_name)) + return cursor + +def remove_tags_url(url:str)-> str: + """ + Remove tag from url links + Args: + url (str): input url + + Raises: + ValueError: _description_ + + Returns: + str: A url with no tag + """ + + image_url ="" + + if "https" in url or "http" in url: + url_splt = url.split(":") + image_url = url_splt[0]+":"+url_splt[1] + else: + image_url = url.split(":")[0] + + print(image_url) + return image_url + +################################################################################ + ############ DOCKERHUB UTILS ############## +################################################################################# + + +def get_column(table_name:str, column_index:int) -> list: + """_summary_ + + Args: + table_name (str): table_name from database. + column_index (int): index of a column from table_name + + Returns: + list: list of data from column + """ + cur = get_table(table_name=table_name) + container_names= [] + + for entity in cur.fetchall(): + container_names.append(entity[column_index]) + return container_names + + +def container_urls(): + """ + Retrieve all docker container urls from docker_images table + """ + url_cur = get_table(table_name="docker_images") + urls =[] + for row in url_cur.fetchall(): + urls.append(row[10]) + return urls + + + + +def is_exact_match(image_name: str, entity_name: str) -> bool: + """ + get exact match() + + Args: + image_name (str): image_name from dockerhub + entity_name (str): entity from database + + Returns: + bool: True if image_name==entity_name, otherwise False + """ + + + name = image_name + + if not isinstance(image_name, str) or not isinstance(entity_name, str): + logging.error("you can only compare two string") + exit() + + if entity_name.lower() == name.lower(): + return True + else: + return False + + +def line_similarity(linelist: list, query: str): + """ + Take a list of lines, vectorize it and compare the similarity between the query and lines + + + Args: + linelist (list): List of all lines + query (str): Search query + + Raises: + ValueError: _description_ + + Returns: + (list): _description_ + (int): + """ + lines = {} + + for id, line in enumerate(linelist): + parse_line = re.sub("[^A-Za-z0-9]+", " ", str(line)).strip() + if len(parse_line) > 0: + lines[str(id)] = parse_line + + line_vectorizer = TfidfVectorizer() + vectorized_line = line_vectorizer.fit_transform(linelist) + + formatted_query = re.sub("[^A-Za-z0-9]+", " ", str(query)) + + query = formatted_query.lower().strip() + if not query: + raise ValueError("Formatted query string cannot be empty") + + vectorized_query = line_vectorizer.transform([query]) + line_score = cosine_similarity(vectorized_query, vectorized_line) + + line_score = line_score[0] + topscore_lines = line_score.argsort()[-5:][::-1] + + return topscore_lines, line_score + + +def format_images(images:list)-> list: + """ + Create the return structure for all images + + Args: + images (list): All images + + Returns: + (list): Structure + """ + + + images_list = [] + if images == None : return images_list + + for im in images: + + img_dict = {} + img_dict ={"name": " " , 'Official image': False , 'Verified Publisher': False, "Description": '' ,'star_count':'',"Docker_Url": '', 'OS':[] } + + img_dict["name"] = im["name"] + + if "/" in im['name']: img_dict['Verified Publisher'] = True + + else: img_dict['Official image'] = im["is_official"] + img_dict['star_count'] = im['star_count'] + img_dict["Docker_Url"] = docker_href(im['name']) + img_dict['OS']= [] + images_list.append(img_dict) + + return images_list + + +def docker_href( image_name: str) -> str: + """ + image_name url + + Args: + image_name (str): Image entity name + + Returns: + str: href of a DockerHub image. + """ + + href = "" + + if "/" in image_name: + href = "https://hub.docker.com/r/" + image_name + + else: + href = "https://hub.docker.com/_/" + image_name + + return href + + +################################################################################ + ############ QUAY UTILS ################ +################################################################################# + From e0e142f652b4d86e1ec7b8c6a520aa23b1e87f24 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 12:56:28 -0400 Subject: [PATCH 23/29] latest sql. Tags removed from operator urls Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- db/1.0.4.sql | 179 ++++++++++++++++++++++++++------------------------- 1 file changed, 92 insertions(+), 87 deletions(-) diff --git a/db/1.0.4.sql b/db/1.0.4.sql index 5a57543..8df52d9 100644 --- a/db/1.0.4.sql +++ b/db/1.0.4.sql @@ -1,3 +1,8 @@ +-- +-- File generated with SQLiteStudio v3.3.3 on Wed Oct 5 11:23:19 2022 +-- +-- Text encoding used: UTF-8 +-- PRAGMA foreign_keys = off; BEGIN TRANSACTION; @@ -13441,120 +13446,120 @@ CREATE TABLE operator_images ( FOREIGN KEY (runlib) REFERENCES entities (id), FOREIGN KEY (runtime) REFERENCES entities (id) ); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (1, 'Apache Spark Operator', 426, 331, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (1, 'Apache Spark Operator', 426, 331, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator', 'https://github.com/radanalyticsio/spark-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (2, 'Banzai Cloud Kafka Operator', 426, 323, NULL, 9, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/banzaicloud/kafka-operator', 'https://github.com/banzaicloud/kafka-operator/tree/master'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (3, 'Camel K Operator', 426, 323, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.3.0', 'https://github.com/apache/camel-k'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (3, 'Camel K Operator', 426, 323, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k', 'https://github.com/apache/camel-k'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (4, 'GrdsCloud MySQL for Kubernetes', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/grds/mysql-operator', 'https://github.com/GrdsCloud'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (5, 'Hive for Red Hat OpenShift', 426, 323, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive:v1.0.17', 'https://github.com/openshift/hive'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (6, 'IBM Spectrum Scale CSI Plugin Operator', 426, 323, NULL, 74, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0', 'https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (5, 'Hive for Red Hat OpenShift', 426, 323, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive', 'https://github.com/openshift/hive'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (6, 'IBM Spectrum Scale CSI Plugin Operator', 426, 323, NULL, 74, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator', 'https://github.com/IBM/ibm-spectrum-scale-csi/'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (7, 'Jenkins Operator', 426, 323, NULL, 90, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/virtuslab/jenkins-operator', 'https://github.com/jenkinsci/kubernetes-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (8, 'Postgresql Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (9, 'Redis Operator', 426, 323, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.3.0', 'https://github.com/ot-container-kit/redis-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (10, 'WildFly', 426, 323, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator:0.3.0', 'https://github.com/wildfly/wildfly-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (11, 'MongoDB Enterprise Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (9, 'Redis Operator', 426, 323, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator', 'https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (10, 'WildFly', 426, 323, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator', 'https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (11, 'MongoDB Enterprise Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (23, 'Instana Agent Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'https://hub.docker.com/r/instana/instana-agent-operator', 'https://github.com/instana/instana-agent-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (24, 'credstash-operator', 426, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'quay.io/ouzi/credstash-operator:v1.13.0', 'https://github.com/ouzi-dev/credstash-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (25, 'Snyk Operator', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator:1.59.3', 'https://github.com/snyk/kubernetes-monitor'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (26, 'Akka Cluster Operator', 426, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0', 'https://github.com/lightbend/akka-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (24, 'credstash-operator', 426, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'quay.io/ouzi/credstash-operator', 'https://github.com/ouzi-dev/credstash-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (25, 'Snyk Operator', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator', 'https://github.com/snyk/kubernetes-monitor'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (26, 'Akka Cluster Operator', 426, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator', 'https://github.com/lightbend/akka-cluster-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (27, 'Varnish Operator', 426, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/varnish-operator', 'https://github.com/IBM/varnish-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (28, 'Datadog Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://hub.docker.com/r/datadog/operator', 'https://github.com/DataDog/datadog-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (29, 'Hazelcast Enterprise Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://hub.docker.com/r/hazelcast/hazelcast-enterprise-operator', 'https://github.com/hazelcast/hazelcast-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (30, 'infinispan', 426, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'docker.io/jboss/infinispan-operator:0.3.0', 'https://github.com/infinispan/infinispan-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (31, 'Nuxeo Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'docker.io/appzygy/nuxeo-operator:0.7.1', 'https://github.com/aceeric/nuxeo-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (30, 'infinispan', 426, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'docker.io/jboss/infinispan-operator', 'https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (31, 'Nuxeo Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'docker.io/appzygy/nuxeo-operator', 'https://github.com/aceeric/nuxeo-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (32, 'ArangoDB', 426, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/arangodb/kube-arangodb', 'https://github.com/arangodb/kube-arangodb'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (33, 'Eclipse Che', 426, NULL, NULL, 622, NULL, NULL, NULL, NULL, 'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f', 'https://github.com/eclipse-che/che-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (34, 'AWS S3 Operator', 426, NULL, NULL, 623, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner:v1.0.0', 'https://github.com/yard-turkey/aws-s3-provisioner'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (33, 'Eclipse Che', 426, NULL, NULL, 622, NULL, NULL, NULL, NULL, 'quay.io/eclipse/che-operator', 'https://github.com/eclipse-che/che-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (34, 'AWS S3 Operator', 426, NULL, NULL, 623, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner', 'https://github.com/yard-turkey/aws-s3-provisioner'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (35, 'Altinity ClickHouse Operator', 426, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/altinity/clickhouse-operator', 'https://github.com/altinity/clickhouse-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (36, 'MinIO Operator', 426, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/minio/k8s-operator', 'https://github.com/minio/minio-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (37, 'Elastic Cloud on Kubernetes', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'docker.elastic.co/eck/eck-operator:1.0.0-beta1', 'https://github.com/elastic/cloud-on-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (37, 'Elastic Cloud on Kubernetes', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'docker.elastic.co/eck/eck-operator', 'https://github.com/elastic/cloud-on-k8s'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (38, 'Percona XtraDB Cluster Operator', 426, NULL, NULL, 627, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/percona/percona-xtradb-cluster-operator', 'https://github.com/percona/percona-xtradb-cluster-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (39, 'Keycloak Operator', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator:9.0.2', 'https://github.com/keycloak/keycloak-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (40, 'Grafana Operator', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'quay.io/integreatly/grafana-operator:v3.10.1', 'https://github.com/integr8ly/grafana-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (41, 'Mattermost Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator:v0.5.0', 'https://github.com/mattermost/mattermost-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (42, 'synapse-helm', 426, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'quay.io/mgoerens/synapse-helm:v0.0.11', 'https://github.com/opdev/synapse-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (39, 'Keycloak Operator', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator', 'https://github.com/keycloak/keycloak-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (40, 'Grafana Operator', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'quay.io/integreatly/grafana-operator', 'https://github.com/integr8ly/grafana-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (41, 'Mattermost Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator', 'https://github.com/mattermost/mattermost-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (42, 'synapse-helm', 426, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'quay.io/mgoerens/synapse-helm', 'https://github.com/opdev/synapse-helm'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (43, 'IBM Cloud IAM Operator', 426, NULL, NULL, 632, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cloudoperators/ibmcloud-iam-operator', 'https://github.com/IBM/ibmcloud-iam-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (44, 'Knative Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0', 'https://github.com/knative/operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (45, 'Cassandra', 426, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'gcr.io/cassandra-operator/cassandra-operator:v2.0.0', 'https://github.com/instaclustr/cassandra-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (44, 'Knative Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'gcr.io/knative-releases/knative.dev/operator/cmd/operator', 'https://github.com/knative/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (45, 'Cassandra', 426, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'gcr.io/cassandra-operator/cassandra-operator', 'https://github.com/instaclustr/cassandra-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (46, 'Kubeflow', 426, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'https://hub.docker.com/r/aipipeline/kubeflow-operator', 'https://github.com/kubeflow/kfctl'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (47, 'Openshift Qiskit Operator', 426, NULL, NULL, 636, NULL, NULL, NULL, NULL, 'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (48, 'Azure Service Operator', 426, NULL, NULL, 637, NULL, NULL, NULL, NULL, 'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207', 'https://github.com/Azure/azure-service-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (49, 'Strimzi', 426, NULL, NULL, NULL, NULL, NULL, NULL, 638, 'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6', 'https://github.com/strimzi/strimzi-kafka-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (50, 'Sematext Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator:1.0.33', 'https://github.com/sematext/sematext-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (51, 'Eclipse Hawkbit', 426, NULL, NULL, 640, NULL, NULL, NULL, NULL, 'docker.io/ctron/hawkbit-operator:0.1.4', 'https://github.com/ctron/hawkbit-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (52, 'Eclipse Ditto', 426, NULL, NULL, 641, NULL, NULL, NULL, NULL, 'docker.io/ctron/ditto-operator:0.1.0', 'https://github.com/ctron/ditto-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (53, 'Mariadb Operator', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator:v0.0.1', 'https://github.com/abalki001/mariadb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (48, 'Azure Service Operator', 426, NULL, NULL, 637, NULL, NULL, NULL, NULL, 'mcr.microsoft.com/k8s/azureserviceoperator', 'https://github.com/Azure/azure-service-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (49, 'Strimzi', 426, NULL, NULL, NULL, NULL, NULL, NULL, 638, 'docker.io/strimzi/operator', 'https://github.com/strimzi/strimzi-kafka-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (50, 'Sematext Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator', 'https://github.com/sematext/sematext-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (51, 'Eclipse Hawkbit', 426, NULL, NULL, 640, NULL, NULL, NULL, NULL, 'docker.io/ctron/hawkbit-operator', 'https://github.com/ctron/hawkbit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (52, 'Eclipse Ditto', 426, NULL, NULL, 641, NULL, NULL, NULL, NULL, 'docker.io/ctron/ditto-operator', 'https://github.com/ctron/ditto-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (53, 'Mariadb Operator', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator', 'https://github.com/abalki001/mariadb-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (54, 'Zadara Operator', 426, NULL, NULL, 643, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/zadara/zoperator', 'https://github.com/zadarastorage/zadara-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (55, 'Istio', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/banzaicloud/istio-operator', 'https://github.com/banzaicloud/istio-operator/tree/release-1.1'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (56, 'Vault Helm', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm:0.0.1', 'https://github.com/SDBrett/vault-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (56, 'Vault Helm', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm', 'https://github.com/SDBrett/vault-helm'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (57, 'druid-operator', 426, NULL, NULL, 646, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/druidio/druid-operator', 'https://github.com/druid-io/druid-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (58, 'etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b', 'https://github.com/coreos/etcd-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (58, 'etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'quay.io/coreos/etcd-operator', 'https://github.com/coreos/etcd-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (59, 'Traefikee Operator', 426, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://hub.docker.com/r/containous/traefikee-operator', 'https://github.com/containous/traefikee-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (60, 'IBM Cloud Operator', 426, NULL, NULL, 649, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cloudoperators/ibmcloud-operator', 'https://github.com/IBM/cloud-operators'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (61, 'Yugabyte Operator', 426, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'quay.io/yugabyte/yugabytedb-operator', 'https://github.com/yugabyte/yugabyte-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (62, 'CockroachDB', 426, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb:v3.0.7', 'https://github.com/dmesser/cockroachdb-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (63, 'Community Jaeger Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'docker.io/jaegertracing/jaeger-operator:1.11.1', 'https://github.com/jaegertracing/jaeger-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (62, 'CockroachDB', 426, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb', 'https://github.com/dmesser/cockroachdb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (63, 'Community Jaeger Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'docker.io/jaegertracing/jaeger-operator', 'https://github.com/jaegertracing/jaeger-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (64, 'strimzi', 576, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'quay.io/strimzi/operator', 'https://github.com/strimzi/strimzi-kafka-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (65, 'eclipse ditto', 576, NULL, NULL, 46, NULL, NULL, NULL, NULL, '', 'https://github.com/ctron/ditto-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (66, 'eclipse hawkbit', 576, NULL, NULL, 46, NULL, NULL, NULL, NULL, '', 'https://github.com/ctron/hawkbit-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (67, 'iot simulator', 576, NULL, NULL, 46, NULL, NULL, NULL, NULL, '', 'https://github.com/ctron/iot-simulator-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (68, 'elasticsearch (eck) operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/elastic/cloud-on-k8s'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (69, 'elasticsearch phenix operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/Carrefour-Group/elastic-phenix-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (70, 'nuxeo operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'docker.io/appzygy/nuxeo-operator:0.7.1', 'https://github.com/aceeric/nuxeo-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (71, 'logging operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'quay.io/opstree/logging-operator:v0.4.0', 'https://github.com/ot-container-kit/logging-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (70, 'nuxeo operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'docker.io/appzygy/nuxeo-operator', 'https://github.com/aceeric/nuxeo-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (71, 'logging operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'quay.io/opstree/logging-operator', 'https://github.com/ot-container-kit/logging-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (72, 'aws controllers for kubernetes - amazon elasticache', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (73, 'elasticsearch index operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/esindex-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (74, 'prometheus exporter operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'quay.io/3scale/prometheus-exporter-operator:v0.2.4', 'https://github.com/3scale/prometheus-exporter-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (74, 'prometheus exporter operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'quay.io/3scale/prometheus-exporter-operator', 'https://github.com/3scale/prometheus-exporter-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (75, 'kong operator', 576, NULL, NULL, 88, NULL, NULL, NULL, NULL, '', 'https://github.com/kong/kong-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (76, 'kong gateway operator', 576, NULL, NULL, 88, NULL, NULL, NULL, NULL, '', 'https://kong.github.io/gateway-operator-docs'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (77, 'jenkins operator', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, '', 'https://github.com/jenkinsci/kubernetes-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (78, 'mongodb enterprise operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator-ubi:1.17.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (79, 'mongodb operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/opstree/mongodb-operator:v0.3.0', 'https://github.com/ot-container-kit/mongodb-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (80, 'mongodb atlas operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.3.0', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (78, 'mongodb enterprise operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator-ubi', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (79, 'mongodb operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/opstree/mongodb-operator', 'https://github.com/ot-container-kit/mongodb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (80, 'mongodb atlas operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-atlas-kubernetes-operator', ''); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (81, 'percona distribution for mongodb operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, '', 'https://github.com/percona/percona-server-mongodb-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (82, 'grdscloud mysql for kubernetes', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, '', 'https://github.com/GrdsCloud'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (83, 'percona distribution for mysql operator', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, '', 'https://github.com/percona/percona-xtradb-cluster-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (84, 'planetscale operator for vitess', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, '', ''); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (85, 'postgresql operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (86, 'percona operator for postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'docker.io/percona/percona-postgresql-operator:1.3.0-postgres-operator', 'https://github.com/percona/percona-postgresql-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (87, 'postgresql operator by dev4ddevs.com', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/dev4devs-com/postgresql-operator:0.1.1', 'https://github.com/dev4devs-com/postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (86, 'percona operator for postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'docker.io/percona/percona-postgresql-operator', 'https://github.com/percona/percona-postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (87, 'postgresql operator by dev4ddevs.com', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/dev4devs-com/postgresql-operator', 'https://github.com/dev4devs-com/postgresql-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (88, 'crunchy postgres for kubernetes', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/CrunchyData/postgres-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (89, 'edb postgres for kubernetes', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/enterprisedb/cloud-native-postgresql', 'https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (90, 'postgres-operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/zalando/postgres-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (91, 'ext postgres operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/movetokube/postgres-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (92, 'robin cloud native storage', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (93, 'rabbitmq-cluster-operator', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'docker.io/rabbitmqoperator/cluster-operator:2.0.0', 'https://github.com/rabbitmq/cluster-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (94, 'rabbitmq-messaging-topology-operator', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'docker.io/rabbitmqoperator/messaging-topology-operator:1.8.0', 'https://github.com/rabbitmq/messaging-topology-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (95, 'rabbitmq-single-active-consumer-operator', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'docker.io/rabbitmqoperator/single-active-consumer-operator:0.2.2', 'https://github.com/rabbitmq/single-active-consumer-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (96, 'redis operator', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.11.0', 'https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (93, 'rabbitmq-cluster-operator', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'docker.io/rabbitmqoperator/cluster-operator', 'https://github.com/rabbitmq/cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (94, 'rabbitmq-messaging-topology-operator', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'docker.io/rabbitmqoperator/messaging-topology-operator', 'https://github.com/rabbitmq/messaging-topology-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (95, 'rabbitmq-single-active-consumer-operator', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'docker.io/rabbitmqoperator/single-active-consumer-operator', 'https://github.com/rabbitmq/single-active-consumer-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (96, 'redis operator', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator', 'https://github.com/ot-container-kit/redis-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (97, 'redis enterprise', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, '', 'https://github.com/RedisLabs/redis-enterprise-k8s-docs'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (98, 'splunk operator', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'docker.io/splunk/splunk-operator', 'https://github.com/splunk/splunk-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (99, 'encrypted images key syncer helm operator', 576, NULL, NULL, 209, NULL, NULL, NULL, NULL, 'docker.io/lumjjb/enc-key-sync-operator:v0.0.1', 'https://github.com/IBM/k8s-enc-image-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (99, 'encrypted images key syncer helm operator', 576, NULL, NULL, 209, NULL, NULL, NULL, NULL, 'docker.io/lumjjb/enc-key-sync-operator', 'https://github.com/IBM/k8s-enc-image-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (100, 'joget dx on apache tomcat', 576, NULL, NULL, NULL, 260, NULL, NULL, NULL, '', 'https://github.com/jogetworkflow/'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (101, 'apicast', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'quay.io/3scale/apicast-operator:v0.6.0', 'https://github.com/3scale/apicast-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (101, 'apicast', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'quay.io/3scale/apicast-operator', 'https://github.com/3scale/apicast-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (102, 'spark operator', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, '', 'https://github.com/GoogleCloudPlatform/spark-on-k8s-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (103, 'apache spark operator', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (103, 'apache spark operator', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator', 'https://github.com/radanalyticsio/spark-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (104, 'kubestone', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, '', 'https://github.com/xridge/kubestone'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (105, 'flink kubernetes operator', 576, 301, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/apache/flink-kubernetes-operator:1.0.1', 'https://github.com/apache/flink-kubernetes-operator.git'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (105, 'flink kubernetes operator', 576, 301, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/apache/flink-kubernetes-operator', 'https://github.com/apache/flink-kubernetes-operator.git'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (106, 'alvearie imaging ingestion operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/Alvearie/imaging-ingestion'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (107, 'datastax kubernetes operator for apache cassandra', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/k8ssandra/cass-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (108, 'qserv operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/lsst/qserv-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (109, 'keycloak operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator:19.0.2', 'https://github.com/keycloak/keycloak'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (110, 'prometheus operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/prometheus-operator/prometheus-operator:v0.47.0', 'https://github.com/prometheus-operator/prometheus-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (109, 'keycloak operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator', 'https://github.com/keycloak/keycloak'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (110, 'prometheus operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/prometheus-operator/prometheus-operator', 'https://github.com/prometheus-operator/prometheus-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (111, 'knative operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/knative/operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (112, 'rook-ceph', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/rook/rook'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (113, 'starboard operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/aquasec/starboard-operator:0.15.6', 'https://github.com/aquasecurity/starboard'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (113, 'starboard operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/aquasec/starboard-operator', 'https://github.com/aquasecurity/starboard'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (114, 'tidb operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/pingcap/tidb-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (115, 'argo cd', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/argoprojlabs/argocd-operator', 'https://github.com/argoproj-labs/argocd-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (116, 'altinity operator for clickhouse', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/altinity/clickhouse-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (117, 'grafana operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/grafana-operator/grafana-operator:v4.6.0', 'https://github.com/grafana-operator/grafana-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (117, 'grafana operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/grafana-operator/grafana-operator', 'https://github.com/grafana-operator/grafana-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (118, 'kubeflow', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/kubeflow/kfctl'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (119, 'rocketmq operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/apache/rocketmq-operator:0.3.0', 'https://github.com/apache/rocketmq-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (119, 'rocketmq operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/apache/rocketmq-operator', 'https://github.com/apache/rocketmq-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (120, 'storageos', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/storageos/operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (121, 'flux', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://fluxcd.io/docs/'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (122, 'lightbend console operator', 576, 306, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/lightbend/console-charts/tree/master/operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (123, 'external secrets operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/external-secrets/external-secrets-helm-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (124, 'intel device plugins operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/intel/intel-device-plugins-for-kubernetes'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (125, 'silicom-sts-operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/silicom/sts-operator:v0.0.1', 'github.com/silicomdk/sts-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (125, 'silicom-sts-operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/silicom/sts-operator', 'github.com/silicomdk/sts-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (126, 'api operator for kubernetes', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/wso2/k8s-api-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (127, 'azure service operator', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/Azure/azure-service-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (128, 'keda', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/kedacore/keda-olm-operator'); @@ -13574,76 +13579,76 @@ INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (142, 'aws controllers for kubernetes - amazon prometheus', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (143, 'aws controllers for kubernetes - amazon rds', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (144, 'aws controllers for kubernetes - amazon s3', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (145, 'falco operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/falcosecurity/falco-operator-helm:0.7.6', 'https://github.com/falcosecurity/falco-operator/tree/helm-based-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (146, 'kubemq enterprise operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/kubemq/kubemq-operator:latest', 'https://github.com/kubemq-io/kubemq-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (147, 'aws s3 operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner:v1.0.0', 'https://github.com/yard-turkey/aws-s3-provisioner'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (145, 'falco operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/falcosecurity/falco-operator-helm', 'https://github.com/falcosecurity/falco-operator/tree/helm-based-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (146, 'kubemq enterprise operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/kubemq/kubemq-operator', 'https://github.com/kubemq-io/kubemq-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (147, 'aws s3 operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner', 'https://github.com/yard-turkey/aws-s3-provisioner'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (148, 'arangodb', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/arangodb/kube-arangodb'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (149, 'gitlab', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://gitlab.com/gitlab-org/cloud-native/gitlab-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (150, 'gitlab runner', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (151, 'nfd-operator', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/kubernetes-sigs/node-feature-discovery-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (152, 'appsody operator', 576, 364, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/appsody/appsody-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (153, 'runtime component operator', 576, 364, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/application-stacks/runtime-component-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (154, 'camel k operator', 576, NULL, 378, NULL, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.10.0', 'https://github.com/apache/camel-k'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (154, 'camel k operator', 576, NULL, 378, NULL, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k', 'https://github.com/apache/camel-k'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (155, 'open liberty operator', 576, NULL, 398, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/OpenLiberty/open-liberty-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (156, 'kogito', 576, NULL, 398, NULL, NULL, NULL, NULL, NULL, 'quay.io/kiegroup/kogito-operator:1.27.0', 'https://github.com/kiegroup/kogito-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (156, 'kogito', 576, NULL, 398, NULL, NULL, NULL, NULL, NULL, 'quay.io/kiegroup/kogito-operator', 'https://github.com/kiegroup/kogito-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (157, 'varnish operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/varnish-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (158, 'composable', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/composable'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (159, 'ibm cos bucket operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/cos-bucket-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (160, 'event streams topic', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/event-streams-topic'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (161, 'hybrid application model operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/hybridappio/ham-deploy:0.1.0', 'https://github.com/hybridapp-io/ham-deploy'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (161, 'hybrid application model operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/hybridappio/ham-deploy', 'https://github.com/hybridapp-io/ham-deploy'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (162, 'ibm application gateway operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM-Security/ibm-application-gateway-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (163, 'ibm block storage csi driver operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/ibmcom/ibm-block-csi-operator:1.10.0', 'https://github.com/IBM/ibm-block-csi-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (163, 'ibm block storage csi driver operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/ibmcom/ibm-block-csi-operator', 'https://github.com/IBM/ibm-block-csi-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (164, 'ibm cloud iam operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/ibmcloud-iam-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (165, 'ibm cloud operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/cloud-operators'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (166, 'ibm quantum operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/application/husky_parul/ibm-quantum-operator', 'https://github.com/redhat-et/ibm-quantum-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (167, 'ibm security verify access operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM-Security/verify-access-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (168, 'ibm spectrum scale csi plugin operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator', 'https://github.com/IBM/ibm-spectrum-scale-csi/'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (169, 'qiskitplayground', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/qiskit/operator:0.1', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (170, 'wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'quay.io/wildfly/wildfly-operator:0.5.6', 'https://github.com/wildfly/wildfly-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (171, 'submariner', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/submariner/submariner-operator:0.11.0', 'https://github.com/submariner-io/submariner-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (169, 'qiskitplayground', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'docker.io/qiskit/operator', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (170, 'wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'quay.io/wildfly/wildfly-operator', 'https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (171, 'submariner', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/submariner/submariner-operator', 'https://github.com/submariner-io/submariner-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (172, 'traefikee operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://docs.containo.us'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (173, 'upbound universal crossplane (uxp)', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/upbound/universal-crossplane'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (174, 'beegfs csi driver', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'docker.io/netapp/beegfs-csi-driver-operator:v1.3.0', 'https://github.com/netapp/beegfs-csi-driver'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (175, 'cluster-impairment-operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/redhat-performance/cluster-impairment-operator:1.0.4', 'https://github.com/redhat-performance/cluster-impairment-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (174, 'beegfs csi driver', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'docker.io/netapp/beegfs-csi-driver-operator', 'https://github.com/netapp/beegfs-csi-driver'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (175, 'cluster-impairment-operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/redhat-performance/cluster-impairment-operator', 'https://github.com/redhat-performance/cluster-impairment-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (176, 'kogito knative eventing source', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/knative-sandbox/eventing-kogito'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (177, 'k8gb', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/k8gb-io/k8gb'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (178, 'kubernetes nmstate operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0', 'https://github.com/nmstate/kubernetes-nmstate'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (179, 'external load-balancer configuration operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'docker.io/carlosedp/lbconfig-operator:v0.4.0', 'https://github.com/carlosedp/lbconfig-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (178, 'kubernetes nmstate operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/nmstate/kubernetes-nmstate-operator', 'https://github.com/nmstate/kubernetes-nmstate'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (179, 'external load-balancer configuration operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'docker.io/carlosedp/lbconfig-operator', 'https://github.com/carlosedp/lbconfig-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (180, 'marin3r', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/3scale/marin3r', 'https://github.com/3scale-ops/marin3r'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (181, 'metallb operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/metallb/metallb-operator', 'https://github.com/metallb/metallb-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (182, 'multi-nic-cni-operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (183, 'netobserv operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/netobserv/network-observability-operator:0.1.4', 'https://github.com/netobserv/network-observability-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (183, 'netobserv operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/netobserv/network-observability-operator', 'https://github.com/netobserv/network-observability-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (184, 'neuvector operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/neuvector/neuvector-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (185, 'network service mesh operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/acmenezes/nsm-operator:v0.0.1', 'https://github.com/acmenezes/nsm-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (185, 'network service mesh operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/acmenezes/nsm-operator', 'https://github.com/acmenezes/nsm-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (186, 'prisma cloud compute operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'quay.io/prismacloud/pcc-operator', 'https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (187, 'nexus operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'quay.io/m88i/nexus-operator:0.6.0', 'https://github.com/m88i/nexus-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (188, 'anchore engine operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'docker.io/anchore/engine-operator:v0.1.3', 'https://github.com/anchore/engine-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (189, 'carbonetes operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'docker.io/carbonetes/operator:1.0.4', 'https://github.com/carbonetes/carbonetes-analyzer'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (190, 'atlasmap operator', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/atlasmap/atlasmap-operator:0.4.1', 'https://github.com/atlasmap/atlasmap-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (191, 'cryostat operator', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/cryostat/cryostat-operator:2.1.1', 'github.com/cryostatio/cryostat-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (187, 'nexus operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'quay.io/m88i/nexus-operator', 'https://github.com/m88i/nexus-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (188, 'anchore engine operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'docker.io/anchore/engine-operator', 'https://github.com/anchore/engine-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (189, 'carbonetes operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'docker.io/carbonetes/operator', 'https://github.com/carbonetes/carbonetes-analyzer'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (190, 'atlasmap operator', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/atlasmap/atlasmap-operator', 'https://github.com/atlasmap/atlasmap-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (191, 'cryostat operator', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'quay.io/cryostat/cryostat-operator', 'github.com/cryostatio/cryostat-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (192, 'instana agent operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 611, '', 'https://github.com/instana/instana-agent-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (193, 'snyk operator', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator:1.92.0', 'https://github.com/snyk/kubernetes-monitor'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (193, 'snyk operator', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator', 'https://github.com/snyk/kubernetes-monitor'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (194, 'akka cluster operator', 576, NULL, NULL, 614, NULL, NULL, NULL, NULL, '', 'https://github.com/lightbend/akka-cluster-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (195, 'datadog operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 616, '', 'https://github.com/DataDog/datadog-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (196, 'hazelcast platform operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'docker.io/hazelcast/hazelcast-platform-operator:5.4', 'https://docs.hazelcast.com/operator/latest/'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (197, 'infinispan operator', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'quay.io/infinispan/operator:2.2.5.Final', 'https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (196, 'hazelcast platform operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'docker.io/hazelcast/hazelcast-platform-operator', 'https://docs.hazelcast.com/operator/latest/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (197, 'infinispan operator', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'quay.io/infinispan/operator', 'https://github.com/infinispan/infinispan-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (198, 'minio operator', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'quay.io/minio/operator', 'https://github.com/minio/operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (199, 'mattermost operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator:v0.5.0', 'https://github.com/mattermost/mattermost-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (200, 'yaks operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'docker.io/citrusframework/yaks:0.11.0', 'https://github.com/citrusframework/yaks'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (201, 'sematext operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator:1.0.46', 'https://github.com/sematext/sematext-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (202, 'mariadb operator', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator:v0.0.4', 'https://github.com/abalki001/mariadb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (199, 'mattermost operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator', 'https://github.com/mattermost/mattermost-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (200, 'yaks operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'docker.io/citrusframework/yaks', 'https://github.com/citrusframework/yaks'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (201, 'sematext operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator', 'https://github.com/sematext/sematext-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (202, 'mariadb operator', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator', 'https://github.com/abalki001/mariadb-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (203, 'zadara operator', 576, NULL, NULL, 643, NULL, NULL, NULL, NULL, '', 'https://github.com/zadarastorage/zadara-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (204, 'istio', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, '', 'https://github.com/banzaicloud/istio-operator/tree/release-1.1'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (205, 'istio workspace', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'quay.io/maistra/istio-workspace:v0.5.2', 'https://github.com/maistra/istio-workspace'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (206, 'kiali operator', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'quay.io/kiali/kiali-operator:v1.56.0', 'https://github.com/kiali/kiali'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (205, 'istio workspace', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'quay.io/maistra/istio-workspace', 'https://github.com/maistra/istio-workspace'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (206, 'kiali operator', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'quay.io/kiali/kiali-operator', 'https://github.com/kiali/kiali'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (207, 'vault operator', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, '', 'https://github.com/banzaicloud/bank-vaults/tree/master/operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (208, 'vault helm', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm:0.0.2', 'https://github.com/SDBrett/vault-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (208, 'vault helm', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm', 'https://github.com/SDBrett/vault-helm'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (209, 'yugabyte operator', 576, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'quay.io/yugabyte/yugabytedb-operator', 'https://github.com/yugabyte/yugabyte-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (210, 'cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb:v5.0.4', 'https://github.com/dmesser/cockroachdb-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (211, 'community jaeger operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'quay.io/jaegertracing/jaeger-operator:1.38.0', 'https://github.com/jaegertracing/jaeger-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (210, 'cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb', 'https://github.com/dmesser/cockroachdb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (211, 'community jaeger operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'quay.io/jaegertracing/jaeger-operator', 'https://github.com/jaegertracing/jaeger-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (212, 'ks-releaser', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, '', 'https://github.com/kubesphere-sigs/ks-releaser-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (213, 'argo cd operator (helm)', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'quay.io/disposab1e/argocd-operator-helm', 'https://github.com/disposab1e/argocd-operator-helm.git'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (214, 'multicluster subscription operator', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0', 'https://github.com/open-cluster-management/multicloud-operators-subscription'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (214, 'multicluster subscription operator', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'quay.io/open-cluster-management/multicluster-operators-subscription', 'https://github.com/open-cluster-management/multicloud-operators-subscription'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (215, 'weave gitops terraform controller', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, '', 'https://weaveworks.github.io/tf-controller/'); COMMIT TRANSACTION; From 924914416d27d5b8adbd3a111fa8d8d7e76e5cad Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 13:14:32 -0400 Subject: [PATCH 24/29] updated config Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- config/kg.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/kg.ini b/config/kg.ini index b0e65a1..38d720c 100644 --- a/config/kg.ini +++ b/config/kg.ini @@ -26,7 +26,7 @@ compatibilityKG = compatibilityKG.json compatibilityOSKG = compatibilityOSKG.json [database] -database_path = /app/db/1.0.4.db +database_path = /app/db/1.0.4.db [quay] max_pages = 2 @@ -38,5 +38,6 @@ top_popular_images = 5 [dockerhub] top_relevant = 40 +tags_num_pages = 3 [operators] \ No newline at end of file From 921d4f0094e7c099e3def7fbd1fdfb33a02f5aa3 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 13:16:57 -0400 Subject: [PATCH 25/29] search path Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_images.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kg_utils/search_images.py b/kg_utils/search_images.py index 2d2c2bb..0b6e300 100644 --- a/kg_utils/search_images.py +++ b/kg_utils/search_images.py @@ -16,7 +16,7 @@ import sys -#sys.path.append("./kg_utils") +sys.path.append("./kg_utils") import json import logging import os @@ -26,7 +26,7 @@ from textwrap import indent from dotenv import load_dotenv ,find_dotenv -from kg_utils.search_utils import load_entities , utils , save_to_csv , dockerhub , quay , operator +from search_utils import load_entities , utils , save_to_csv , dockerhub , quay , operator def save_to_kb(results: list) -> None: From fc9d681ca1c322083aff4b271e05c948a21fbf64 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 15:43:03 -0400 Subject: [PATCH 26/29] changed import path Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- kg_utils/search_utils/dockerhub.py | 2 +- test/unit/test_search_image.py | 16 +++++----------- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/kg_utils/search_utils/dockerhub.py b/kg_utils/search_utils/dockerhub.py index 0f7aa79..9f4f770 100644 --- a/kg_utils/search_utils/dockerhub.py +++ b/kg_utils/search_utils/dockerhub.py @@ -18,7 +18,7 @@ import docker import json import os -from search_utils import utils , dockerhub_api +from . import utils , dockerhub_api from dotenv import load_dotenv ,find_dotenv import configparser diff --git a/test/unit/test_search_image.py b/test/unit/test_search_image.py index 13d04bd..30dff9d 100644 --- a/test/unit/test_search_image.py +++ b/test/unit/test_search_image.py @@ -1,6 +1,6 @@ import unittest -from kg_utils.search_images import Quay , DockerHubSearch ,Operators +from kg_utils.search_utils import dockerhub , quay , operator from kg_utils.search_utils.save_to_csv import csv_columns from kg_utils.search_utils.load_entities import filter_entity @@ -9,9 +9,9 @@ class test_search(unittest.TestCase): def setUp(self) -> None: - self.operator = Operators() - self.quay = Quay() - self.docker = DockerHubSearch() + self.operator = operator.Operators() + self.quay = quay.Quay() + self.docker = dockerhub.DockerHubSearch() def tearDown(self) -> None: @@ -40,20 +40,14 @@ def test_search_images(self): def test_csv_columns(self): table_name = "operator_images" - cols = csv_columns(table_name) - - expected = {'operator_images': '', 'container_name': '', 'OS': 576, 'lang': None, 'lib': None, 'app': None, 'app_server': None, 'plugin': None, 'runlib': None, 'runtime': None, 'Operator_Correspondent_Image_Url': [], 'Operator_Repository': ''} - + expected = {'operator_images': '', 'container_name': '', 'OS': None, 'lang': None, 'lib': None, 'app': None, 'app_server': None, 'plugin': None, 'runlib': None, 'runtime': None, 'Operator_Correspondent_Image_Url': [], 'Operator_Repository': ''} self.assertEqual(cols , expected) def test_filter_entity(self): - - entity = "MS SQL Server|SQL Server Analysis Services (SSAS)" expected = "SQL Server Analysis Services" - fil_entity = filter_entity(entity) self.assertEqual(fil_entity , expected) From 4b376c88f3166fcd259c5dd5a0a3061b4f3aa64d Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 5 Oct 2022 16:25:46 -0400 Subject: [PATCH 27/29] changed db path Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- config/kg.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/kg.ini b/config/kg.ini index 38d720c..5706207 100644 --- a/config/kg.ini +++ b/config/kg.ini @@ -26,7 +26,7 @@ compatibilityKG = compatibilityKG.json compatibilityOSKG = compatibilityOSKG.json [database] -database_path = /app/db/1.0.4.db +database_path = db/1.0.4.db [quay] max_pages = 2 From 576f986a2a4627841a6ecb95ed3db799e4722e03 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Fri, 7 Oct 2022 16:15:18 -0400 Subject: [PATCH 28/29] Removed tag from expected output Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- test/unit/test_planning.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unit/test_planning.py b/test/unit/test_planning.py index 2be5d74..25d9b86 100644 --- a/test/unit/test_planning.py +++ b/test/unit/test_planning.py @@ -346,7 +346,7 @@ def test_map_to_docker_operator(self): 'Linux': {'Lang': [], 'App': ['MongoDB'], 'App Server': [], 'Runtime': []}, 'Windows': {'Lang': [], 'App': [], 'App Server': [], 'Runtime': []}, 'RepackageOS': ['Linux'], 'valid_assessment': True, 'valid_planning': True, 'planning_reason': '', 'scope_images': { - 'MongoDB Enterprise Operator': {'Docker_URL': 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0', + 'MongoDB Enterprise Operator': {'Docker_URL': 'quay.io/mongodb/mongodb-enterprise-operator', 'Status': None}}, 'scope_images_confidence': {'mapping': {'MongoDB': 'MongoDB Enterprise Operator'}, 'image_confidence': 1.0, 'images_score': 60, 'cum_scores': 60, @@ -367,7 +367,9 @@ def test_map_to_docker_operator(self): expected[0]['scope_images_confidence']['mapping'] = dict([(key, new_value_assign.get(value)) for key, value in expected[0]['scope_images_confidence'][ 'mapping'].items()]) + print("appL: \n", appL) + print("Expected: \n", expected) self.assertTrue(appL == expected) def test_output_to_ui_planning_operator(self): From 051d409f96334ad6690b43b7135fa4e4f6d4a089 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Fri, 7 Oct 2022 16:17:19 -0400 Subject: [PATCH 29/29] Proper entity id Signed-off-by: lamwassi Signed-off-by: Divya Sankar --- db/1.0.4.sql | 104 +++++++++++++++++++++++++-------------------------- 1 file changed, 52 insertions(+), 52 deletions(-) diff --git a/db/1.0.4.sql b/db/1.0.4.sql index 8df52d9..21fb7a6 100644 --- a/db/1.0.4.sql +++ b/db/1.0.4.sql @@ -13446,58 +13446,58 @@ CREATE TABLE operator_images ( FOREIGN KEY (runlib) REFERENCES entities (id), FOREIGN KEY (runtime) REFERENCES entities (id) ); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (1, 'Apache Spark Operator', 426, 331, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator', 'https://github.com/radanalyticsio/spark-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (2, 'Banzai Cloud Kafka Operator', 426, 323, NULL, 9, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/banzaicloud/kafka-operator', 'https://github.com/banzaicloud/kafka-operator/tree/master'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (3, 'Camel K Operator', 426, 323, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k', 'https://github.com/apache/camel-k'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (4, 'GrdsCloud MySQL for Kubernetes', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/grds/mysql-operator', 'https://github.com/GrdsCloud'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (5, 'Hive for Red Hat OpenShift', 426, 323, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive', 'https://github.com/openshift/hive'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (6, 'IBM Spectrum Scale CSI Plugin Operator', 426, 323, NULL, 74, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator', 'https://github.com/IBM/ibm-spectrum-scale-csi/'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (7, 'Jenkins Operator', 426, 323, NULL, 90, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/virtuslab/jenkins-operator', 'https://github.com/jenkinsci/kubernetes-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (8, 'Postgresql Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (9, 'Redis Operator', 426, 323, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator', 'https://github.com/ot-container-kit/redis-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (10, 'WildFly', 426, 323, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator', 'https://github.com/wildfly/wildfly-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (11, 'MongoDB Enterprise Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (23, 'Instana Agent Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'https://hub.docker.com/r/instana/instana-agent-operator', 'https://github.com/instana/instana-agent-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (24, 'credstash-operator', 426, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'quay.io/ouzi/credstash-operator', 'https://github.com/ouzi-dev/credstash-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (25, 'Snyk Operator', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator', 'https://github.com/snyk/kubernetes-monitor'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (26, 'Akka Cluster Operator', 426, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator', 'https://github.com/lightbend/akka-cluster-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (27, 'Varnish Operator', 426, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/varnish-operator', 'https://github.com/IBM/varnish-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (28, 'Datadog Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://hub.docker.com/r/datadog/operator', 'https://github.com/DataDog/datadog-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (29, 'Hazelcast Enterprise Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://hub.docker.com/r/hazelcast/hazelcast-enterprise-operator', 'https://github.com/hazelcast/hazelcast-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (30, 'infinispan', 426, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'docker.io/jboss/infinispan-operator', 'https://github.com/infinispan/infinispan-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (31, 'Nuxeo Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'docker.io/appzygy/nuxeo-operator', 'https://github.com/aceeric/nuxeo-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (32, 'ArangoDB', 426, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/arangodb/kube-arangodb', 'https://github.com/arangodb/kube-arangodb'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (33, 'Eclipse Che', 426, NULL, NULL, 622, NULL, NULL, NULL, NULL, 'quay.io/eclipse/che-operator', 'https://github.com/eclipse-che/che-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (34, 'AWS S3 Operator', 426, NULL, NULL, 623, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner', 'https://github.com/yard-turkey/aws-s3-provisioner'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (35, 'Altinity ClickHouse Operator', 426, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/altinity/clickhouse-operator', 'https://github.com/altinity/clickhouse-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (36, 'MinIO Operator', 426, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/minio/k8s-operator', 'https://github.com/minio/minio-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (37, 'Elastic Cloud on Kubernetes', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'docker.elastic.co/eck/eck-operator', 'https://github.com/elastic/cloud-on-k8s'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (38, 'Percona XtraDB Cluster Operator', 426, NULL, NULL, 627, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/percona/percona-xtradb-cluster-operator', 'https://github.com/percona/percona-xtradb-cluster-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (39, 'Keycloak Operator', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator', 'https://github.com/keycloak/keycloak-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (40, 'Grafana Operator', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'quay.io/integreatly/grafana-operator', 'https://github.com/integr8ly/grafana-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (41, 'Mattermost Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator', 'https://github.com/mattermost/mattermost-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (42, 'synapse-helm', 426, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'quay.io/mgoerens/synapse-helm', 'https://github.com/opdev/synapse-helm'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (43, 'IBM Cloud IAM Operator', 426, NULL, NULL, 632, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cloudoperators/ibmcloud-iam-operator', 'https://github.com/IBM/ibmcloud-iam-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (44, 'Knative Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'gcr.io/knative-releases/knative.dev/operator/cmd/operator', 'https://github.com/knative/operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (45, 'Cassandra', 426, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'gcr.io/cassandra-operator/cassandra-operator', 'https://github.com/instaclustr/cassandra-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (46, 'Kubeflow', 426, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'https://hub.docker.com/r/aipipeline/kubeflow-operator', 'https://github.com/kubeflow/kfctl'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (47, 'Openshift Qiskit Operator', 426, NULL, NULL, 636, NULL, NULL, NULL, NULL, 'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (48, 'Azure Service Operator', 426, NULL, NULL, 637, NULL, NULL, NULL, NULL, 'mcr.microsoft.com/k8s/azureserviceoperator', 'https://github.com/Azure/azure-service-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (49, 'Strimzi', 426, NULL, NULL, NULL, NULL, NULL, NULL, 638, 'docker.io/strimzi/operator', 'https://github.com/strimzi/strimzi-kafka-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (50, 'Sematext Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator', 'https://github.com/sematext/sematext-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (51, 'Eclipse Hawkbit', 426, NULL, NULL, 640, NULL, NULL, NULL, NULL, 'docker.io/ctron/hawkbit-operator', 'https://github.com/ctron/hawkbit-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (52, 'Eclipse Ditto', 426, NULL, NULL, 641, NULL, NULL, NULL, NULL, 'docker.io/ctron/ditto-operator', 'https://github.com/ctron/ditto-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (53, 'Mariadb Operator', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator', 'https://github.com/abalki001/mariadb-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (54, 'Zadara Operator', 426, NULL, NULL, 643, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/zadara/zoperator', 'https://github.com/zadarastorage/zadara-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (55, 'Istio', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/banzaicloud/istio-operator', 'https://github.com/banzaicloud/istio-operator/tree/release-1.1'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (56, 'Vault Helm', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm', 'https://github.com/SDBrett/vault-helm'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (57, 'druid-operator', 426, NULL, NULL, 646, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/druidio/druid-operator', 'https://github.com/druid-io/druid-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (58, 'etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'quay.io/coreos/etcd-operator', 'https://github.com/coreos/etcd-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (59, 'Traefikee Operator', 426, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://hub.docker.com/r/containous/traefikee-operator', 'https://github.com/containous/traefikee-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (60, 'IBM Cloud Operator', 426, NULL, NULL, 649, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cloudoperators/ibmcloud-operator', 'https://github.com/IBM/cloud-operators'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (61, 'Yugabyte Operator', 426, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'quay.io/yugabyte/yugabytedb-operator', 'https://github.com/yugabyte/yugabyte-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (62, 'CockroachDB', 426, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb', 'https://github.com/dmesser/cockroachdb-operator'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (63, 'Community Jaeger Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'docker.io/jaegertracing/jaeger-operator', 'https://github.com/jaegertracing/jaeger-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (1, 'Apache Spark Operator', 576, 584, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator', 'https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (2, 'Banzai Cloud Kafka Operator', 576, 323, NULL, 9, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/banzaicloud/kafka-operator', 'https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (3, 'Camel K Operator', 576, 323, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k', 'https://github.com/apache/camel-k'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (4, 'GrdsCloud MySQL for Kubernetes', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/grds/mysql-operator', 'https://github.com/GrdsCloud'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (5, 'Hive for Red Hat OpenShift', 576, 323, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive', 'https://github.com/openshift/hive'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (6, 'IBM Spectrum Scale CSI Plugin Operator', 576, 323, NULL, 605, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator', 'https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (7, 'Jenkins Operator', 576, 323, NULL, 90, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/virtuslab/jenkins-operator', 'https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (8, 'Postgresql Operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (9, 'Redis Operator', 576, 323, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator', 'https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (10, 'WildFly', 576, 323, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator', 'https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (11, 'MongoDB Enterprise Operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (23, 'Instana Agent Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'https://hub.docker.com/r/instana/instana-agent-operator', 'https://github.com/instana/instana-agent-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (24, 'credstash-operator', 576, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'quay.io/ouzi/credstash-operator', 'https://github.com/ouzi-dev/credstash-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (25, 'Snyk Operator', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator', 'https://github.com/snyk/kubernetes-monitor'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (26, 'Akka Cluster Operator', 576, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator', 'https://github.com/lightbend/akka-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (27, 'Varnish Operator', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/varnish-operator', 'https://github.com/IBM/varnish-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (28, 'Datadog Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://hub.docker.com/r/datadog/operator', 'https://github.com/DataDog/datadog-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (29, 'Hazelcast Enterprise Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://hub.docker.com/r/hazelcast/hazelcast-enterprise-operator', 'https://github.com/hazelcast/hazelcast-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (30, 'infinispan', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'docker.io/jboss/infinispan-operator', 'https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (31, 'Nuxeo Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'docker.io/appzygy/nuxeo-operator', 'https://github.com/aceeric/nuxeo-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (32, 'ArangoDB', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/arangodb/kube-arangodb', 'https://github.com/arangodb/kube-arangodb'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (33, 'Eclipse Che', 576, NULL, NULL, 622, NULL, NULL, NULL, NULL, 'quay.io/eclipse/che-operator', 'https://github.com/eclipse-che/che-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (34, 'AWS S3 Operator', 576, NULL, NULL, 623, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner', 'https://github.com/yard-turkey/aws-s3-provisioner'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (35, 'Altinity ClickHouse Operator', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/altinity/clickhouse-operator', 'https://github.com/altinity/clickhouse-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (36, 'MinIO Operator', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/minio/k8s-operator', 'https://github.com/minio/minio-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (37, 'Elastic Cloud on Kubernetes', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'docker.elastic.co/eck/eck-operator', 'https://github.com/elastic/cloud-on-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (38, 'Percona XtraDB Cluster Operator', 576, NULL, NULL, 627, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/percona/percona-xtradb-cluster-operator', 'https://github.com/percona/percona-xtradb-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (39, 'Keycloak Operator', 576, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator', 'https://github.com/keycloak/keycloak-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (40, 'Grafana Operator', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'quay.io/integreatly/grafana-operator', 'https://github.com/integr8ly/grafana-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (41, 'Mattermost Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator', 'https://github.com/mattermost/mattermost-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (42, 'synapse-helm', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'quay.io/mgoerens/synapse-helm', 'https://github.com/opdev/synapse-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (43, 'IBM Cloud IAM Operator', 576, NULL, NULL, 632, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cloudoperators/ibmcloud-iam-operator', 'https://github.com/IBM/ibmcloud-iam-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (44, 'Knative Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'gcr.io/knative-releases/knative.dev/operator/cmd/operator', 'https://github.com/knative/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (45, 'Cassandra', 576, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'gcr.io/cassandra-operator/cassandra-operator', 'https://github.com/instaclustr/cassandra-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (46, 'Kubeflow', 576, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'https://hub.docker.com/r/aipipeline/kubeflow-operator', 'https://github.com/kubeflow/kfctl'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (47, 'Openshift Qiskit Operator', 576, NULL, NULL, 636, NULL, NULL, NULL, NULL, 'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (48, 'Azure Service Operator', 576, NULL, NULL, 637, NULL, NULL, NULL, NULL, 'mcr.microsoft.com/k8s/azureserviceoperator', 'https://github.com/Azure/azure-service-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (49, 'Strimzi', 576, NULL, NULL, NULL, NULL, NULL, NULL, 638, 'docker.io/strimzi/operator', 'https://github.com/strimzi/strimzi-kafka-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (50, 'Sematext Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator', 'https://github.com/sematext/sematext-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (51, 'Eclipse Hawkbit', 576, NULL, NULL, 640, NULL, NULL, NULL, NULL, 'docker.io/ctron/hawkbit-operator', 'https://github.com/ctron/hawkbit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (52, 'Eclipse Ditto', 576, NULL, NULL, 641, NULL, NULL, NULL, NULL, 'docker.io/ctron/ditto-operator', 'https://github.com/ctron/ditto-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (53, 'Mariadb Operator', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator', 'https://github.com/abalki001/mariadb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (54, 'Zadara Operator', 576, NULL, NULL, 643, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/zadara/zoperator', 'https://github.com/zadarastorage/zadara-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (55, 'Istio', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/banzaicloud/istio-operator', 'https://github.com/banzaicloud/istio-operator/tree/release-1.1'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (56, 'Vault Helm', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm', 'https://github.com/SDBrett/vault-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (57, 'druid-operator', 576, NULL, NULL, 646, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/druidio/druid-operator', 'https://github.com/druid-io/druid-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (58, 'etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'quay.io/coreos/etcd-operator', 'https://github.com/coreos/etcd-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (59, 'Traefikee Operator', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://hub.docker.com/r/containous/traefikee-operator', 'https://github.com/containous/traefikee-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (60, 'IBM Cloud Operator', 576, NULL, NULL, 649, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cloudoperators/ibmcloud-operator', 'https://github.com/IBM/cloud-operators'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (61, 'Yugabyte Operator', 576, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'quay.io/yugabyte/yugabytedb-operator', 'https://github.com/yugabyte/yugabyte-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (62, 'CockroachDB', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb', 'https://github.com/dmesser/cockroachdb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (63, 'Community Jaeger Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'docker.io/jaegertracing/jaeger-operator', 'https://github.com/jaegertracing/jaeger-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (64, 'strimzi', 576, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'quay.io/strimzi/operator', 'https://github.com/strimzi/strimzi-kafka-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (65, 'eclipse ditto', 576, NULL, NULL, 46, NULL, NULL, NULL, NULL, '', 'https://github.com/ctron/ditto-operator'); INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (66, 'eclipse hawkbit', 576, NULL, NULL, 46, NULL, NULL, NULL, NULL, '', 'https://github.com/ctron/hawkbit-operator');